我们使用Java API从Elasticsearch获取数据,我们无法排除Elasticsearch的默认字段(即:“_ index”,“_ type”,“_ id”)
"hits": [
{
"_index": "IndexTest",
"_type": "typeTest",
"_id": "AVkerYWpSOWHD5ykzT4i",
"_score": 1,
"_source": {
"id": "1",
"name": "Toto", ...
}
]
我们正在尝试使用Kibana consol上的path_filter:
GET IndexTest / typeTest / _search filter_path = hits.hits._source&安培; _source = ID,名字
它运行良好,但现在我们想用Java API,任何想法
来做谢谢