ElasticSearch 动态桶聚合
ElasticSearch dynamic bucket aggregations
目前我有以下映射:
array(
'index' => 'my_index',
'body' => array(
'mappings' => array(
'products' => array(
'_source' => array('enabled' => false),
'properties' => array(
'id' => array('type' => 'integer'),
'active' => array('type' => 'boolean'),
'specs' => array(
'type' => 'nested',
'properties' => array(
'id' => array('type' => 'integer'),
'value' => array('type' => 'text'),
'visible' => array('type' => 'boolean')
)
)
)
)
)
)
);
我想查询产品。
并让 ElasticSearch return 汇总规范。但是对于每个 specs.id 一个包含所有值的桶。
并且仅当 visible 为真时。
"aggregations": {
"specs_2": {
"buckets": [
{
"key": "Yes",
"doc_count": 90
},
{
"key": "No",
"doc_count": 80
},
]
},
"specs_4": {
"buckets": [
{
"key": "Yes",
"doc_count": 190
},
{
"key": "No",
"doc_count": 180
},
]
}
}
不知道数据集中的规范 ID。
这可能吗?
您是否尝试过对路径规范和字段 properties.id 进行嵌套术语聚合?这应该创建具有不同 ID 的存储桶,具有相同 ID 的规范文档将落入相同的存储桶中。对可见性进行过滤器聚合将过滤掉所有可见性为 false 的文档。现在您可以对值进行术语聚合作为过滤器聚合的子聚合以获得所需的输出。
目前我有以下映射:
array(
'index' => 'my_index',
'body' => array(
'mappings' => array(
'products' => array(
'_source' => array('enabled' => false),
'properties' => array(
'id' => array('type' => 'integer'),
'active' => array('type' => 'boolean'),
'specs' => array(
'type' => 'nested',
'properties' => array(
'id' => array('type' => 'integer'),
'value' => array('type' => 'text'),
'visible' => array('type' => 'boolean')
)
)
)
)
)
)
);
我想查询产品。 并让 ElasticSearch return 汇总规范。但是对于每个 specs.id 一个包含所有值的桶。 并且仅当 visible 为真时。
"aggregations": {
"specs_2": {
"buckets": [
{
"key": "Yes",
"doc_count": 90
},
{
"key": "No",
"doc_count": 80
},
]
},
"specs_4": {
"buckets": [
{
"key": "Yes",
"doc_count": 190
},
{
"key": "No",
"doc_count": 180
},
]
}
}
不知道数据集中的规范 ID。
这可能吗?
您是否尝试过对路径规范和字段 properties.id 进行嵌套术语聚合?这应该创建具有不同 ID 的存储桶,具有相同 ID 的规范文档将落入相同的存储桶中。对可见性进行过滤器聚合将过滤掉所有可见性为 false 的文档。现在您可以对值进行术语聚合作为过滤器聚合的子聚合以获得所需的输出。