Elasticsearch-获取距离最近的所有文档

时间:2019-01-20 13:04:52

标签: elasticsearch geolocation

我有以下索引:

"item_recommendation": {
    "mappings": {
        "item_type": {
                "description": {
                    "type": "text",
                    "analyzer": "my_html_analyzer"
                },
                "location": {
                    "type": "geo_point"
                },
                "name": {
                    "type": "text",
                    "fields": {
                        "keyword": {
                            "type": "keyword",
                            "ignore_above": 256
                        }
                    }
                }

            }
        }
    }
}

我想知道有多少(和哪些)物品具有相同的地理位置(最好不超过K米的空白)。

我知道如何做到这一点,并且想知道我所有的物品。

0 个答案:

没有答案