如您所引用的第一个链接中所述,可以通过响应过滤来实现此功能,它不是插件,而是ES的标准功能:
GET /index/type/_search?filter_path=hits.hits._source
如果要摆脱,
hits.hits._source可以使用
jq
curl -XGET localhost:9200/index/type/_search?filter_path=hits.hits._source | jq '.hits.hits[]._source'

如您所引用的第一个链接中所述,可以通过响应过滤来实现此功能,它不是插件,而是ES的标准功能:
GET /index/type/_search?filter_path=hits.hits._source
如果要摆脱,
hits.hits._source可以使用
jq
curl -XGET localhost:9200/index/type/_search?filter_path=hits.hits._source | jq '.hits.hits[]._source'