【发布时间】:2019-03-19 07:06:16
【问题描述】:
在将一个字段的映射从文本类型更改为geo_point 类型后,我正在尝试重新索引。
源索引中的现有数据如下所示:
"location" : {
"lat_long" : [
"49.266498",
"-122.998938"
],
如何在_reindex api 调用中遇到以下故障:
"cause": {
"type": "mapper_parsing_exception",
"reason": "failed to parse field [location.lat_long] of type [geo_point]",
"caused_by": {
"type": "parse_exception",
"reason": "unsupported symbol [.] in geohash [49.228065]",
"caused_by": {
"type": "illegal_argument_exception",
"reason": "unsupported symbol [.] in geohash [49.228065]"
}
}
},
【问题讨论】:
标签: elasticsearch