栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Elasticsearch中的多个分组依据

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Elasticsearch中的多个分组依据

您可以通过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



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/388198.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号