我创建了一个索引如下:
POST /cabtrails
{
"settings" :
{
"number_of_shards" : 3,
"number_of_replicas" : 1
},
"mappings" : {
"cabtrail" :{
"properties" : {
"location": {
"type": "geo_point",
"geohash_prefix": true,
"geohash_precision": "5m"
},
"capture_time": {
"type" : "long"
},
"client_id": {
"type" : "long"
}
}
}
}
}
工作正常,并创建索引。
我输入了一个示例文档:
POST cabtrails/cabtrail
{
"capture_time": 1431849367077,
"client_id": 865527029812357,
"location": "13.0009316,77.5947316"
}
这也很好。 在这里,我期待ElasticSearch将生成一个我可以使用的geohash字段/条目。
但是,当我查询时,我得到了这个:
GET cabtrails/_search
{
"took": 2,
"timed_out": false,
"_shards": {
"total": 3,
"successful": 3,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "cabtrails",
"_type": "cabtrail",
"_id": "AU2LrEaze2aqxPjHm-UI",
"_score": 1,
"_source": {
"capture_time": 1431849367077,
"client_id": 865527029812357,
"location": "13.0009316,77.5947316"
}
}
]
}
}
我期待在查询结果中的某个地方使用u10hbp
这样的地理哈希字符串,我可以用它来查询未来的位置点。或者我的geohash + ES概念搞砸了?帮助!
答案 0 :(得分:1)
根据geo_point中的document启用 geohash 标记索引 geohash 值。
索引内容与响应的 _source 字段之间存在差异。
响应中的 _source 字段是传递用于索引到elasticsearch的原始json文档。
启用geohash标志时,geo_point类型使用geohash表示索引,但实际源文档不会更改
要了解geohash标志如何补充geo_point类型的索引方式,您可以使用fielddata_fields api:
对于上面的例子,它看起来就像这些一样:
**Query**
POST cabtrails/_search
{
"fielddata_fields" :["location","location.geohash"]
}
<强>响应:强>
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "cabtrails",
"_type": "cabtrail",
"_id": "AU2NRn_OsXnJTKeurUsn",
"_score": 1,
"_source": {
"capture_time": 1431849367077,
"client_id": 865527029812357,
"location": "13.0009316,77.5947316"
},
"fields": {
"location": [
{
"lat": 13.0009316,
"lon": 77.5947316
}
],
"location.geohash": [
"t",
"td",
"tdr",
"tdr1",
"tdr1v",
"tdr1vw",
"tdr1vww",
"tdr1vwwz",
"tdr1vwwzb",
"tdr1vwwzbm"
]
}
}
]
}