作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有大量包含关键字值数组的文档(数百万):
对应:
{
"my_index": {
"mappings": {
"properties": {
"id": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"keywords": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}
{
"id": "abc",
"keywords": ["cat", "dog", "person"]
}
{
"id": "def",
"keywords": ["tree", "person"]
}
{
"id": "ghi",
"keywords": ["person", "human"]
}
...
/GET /my_index/_search
{
"size": 0,
"track_total_hits": true,
"aggs": {
"keyword_buckets": {
"terms": {
"field": "keywords.keyword",
"size": 3
}
}
}
}
{
"took": 256,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 2232121,
"relation": "eq"
},
"max_score": null,
"hits": []
},
"aggregations": {
"keyword_buckets": {
"doc_count_error_upper_bound": 0,
"sum_other_doc_count": 6250132,
"buckets": [
{
"key": "person",
"doc_count": 326552
},
{
"key": "human",
"doc_count": 326529
},
{
"key": "photograph",
"doc_count": 222190
}
]
}
}
}
DISTINCT
文档计数。
最佳答案
Elasticsearch没有提供确切的doc_count。文档计数始终是近似值。这是因为按设计的Elasticsearch查询会查看每个碎片的热门词汇并将其合并。您可以阅读有关它的更多信息here。
关于elasticsearch - 获取 HitTest 门命中数组聚合的唯一文档数sum_other_doc_count,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60488536/
我是一名优秀的程序员,十分优秀!