您可以通过2种方式来做到这一点:
1)在一个方面中使用多个字段:
单个字段facet的示例:
curl -X GET "http://localhost:9200/sales/order/_search?pretty=true" -d '{ "query": { "query_string": { "query": "shohi*", "fields": [ "billing_name" ] } }, "facets": { "facet_result": { "terms": { "fields": [ "status" ], "order": "term", "size": 15 } } }}'单面结果中多个字段的示例:
curl -X GET "http://localhost:9200/sales/order/_search?pretty=true" -d '{ "query": { "query_string": { "query": "shohi*", "fields": [ "billing_name" ] } }, "facets": { "facet_result": { "terms": { "fields": [ "status", "customer_gender", "state" ], "order": "term", "size": 15 } } }}'2)使用多方面结果集:
curl -X GET "http://localhost:9200/sales/order/_search?pretty=true" -d '{ "query": { "query_string": { "query": "*", "fields": [ "increment_id" ] } }, "facets": { "status_facets": { "terms": { "fields": [ "status" ], "size": 50, "order": "term" } }, "gender_facets": { "terms": { "fields": [ "customer_gender" ] } }, "state_facets": { "terms": { "fields": [ "state" ], , "order": "term" } } }}'参考链接:http :
//www.elasticsearch.org/guide/reference/api/search/facets/terms-
facet.html



