ElasticSearch术语聚合

ElasticSearch术语聚合,第1张

ElasticSearch术语聚合

实际上,您应该像这样更改映射

"os_name": {  "type": "string",  "fields": {     "raw": {        "type": "string",        "index": "not_analyzed"     }  }},

并且您的aggs应该更改为

GET /temp/example/_search{  "size": 0,  "aggs": {     "OS": {       "terms": {"field": "os_name.raw"       }     }  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4959991.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存