【发布时间】:2019-06-01 14:33:01
【问题描述】:
我收到一个错误。
错误:
"{"error":{"root_cause":[{"type":"parse_exception","reason":"无法将内容解析到映射"}],"type":"parse_exception","reason" :"无法将内容解析为映射","caused_by":{"type":"json_parse_exception","reason":"意外字符 ('s' (代码 115)): 期望用双引号来开始字段名称\ n 在 [来源:org.elasticsearch.transport.netty4.ByteBufStreamInput@38a4cd00; line: 2, column: 3]"}},"status":400}" 尝试创建索引时出错
代码:
{
"settings" : {
"number_of_shards" : 1,
"number_of_replicas" : 1
},
"mappings": {
"properties": {
"anonymous": {"type": "boolean"},
"content_text_form": {"type": "text"},
"details": {"type": "text"},
"language": {"type": "keyword"},
"no_of_comments": {"type": "long"},
"up_votes": {"type": "long"},
"down_votes": {"type": "long"},
"no_of_views": {"type": "long"},
"no_of_impressions": {"type": "long"},
"short_id": {"type": "keyword"},
"no_of_reposts": {"type": "long"},
"createdAt": {"type": "date"},
"updatedAt": {"type": "date"},
"re_post_date": {"type": "date"},
"media_urls": {
"properties": {
"url": {"type": "keyword"},
"type": {"type": "keyword"},
"uploadedOn": {"type": "date"},
"description": {"type": "text"},
"thumbnail": {"type": "text"},
"file_type": {"type": "keyword"},
"dimensions": {
"properties": {
"type": {
"properties": {
"height": {"type": "long"},
"width": {"type": "long"},
"aspect_ratio":{"type":"long"}
},
"required": {"type": "boolean"}
}
}}
}
},
"tags": {"type": "keyword"},
"tag_positions": {
"properties": {
"tag": {"type": "keyword"},
"tag_start": {"type": "long"},
"tag_end": {"type": "long"}}},
"source": {
"properties": {
"title" : {"type": "text"},
"description": {"type": "text"},
"media_type": {"type": "text"},
"url": {"type": "text"}
}
},
"moderation": {
"properties": {
"done": {"type":"boolean"}
}
}
}
}
}
【问题讨论】:
标签: elasticsearch