我有一个映射为的索引 -
GET /sampledesc/desc/_mapping
{
"sampledesc": {
"mappings": {
"desc": {
"properties": {
"labels": {
"type": "string",
"index": "not_analyzed"
},
"tags": {
"type": "string",
"index": "not_analyzed"
},
"user_id": {
"type": "long"
}
}
}
}
}
}
我在其中添加了一些数据-
PUT /sampledesc/desc/1
{
"user_id": 1,
"tags": ["tag1", "tag2", "tag3"],
"labels": ["label1","label2"]
}
PUT /sampledesc/desc/2
{
"user_id": 2,
"tags": ["tag2","tag3",],
"labels": ["label2","label4"]
}
PUT /sampledesc/desc/3
{
"user_id": 3,
"tags": ["tag7"],
"labels": ["label1","label4"]
}
我想用这些规则查询这些数据:
- 查找所有给出标签列表的用户。
- 对于这些用户,按计数对标签进行分组。
例如,我想查询同时拥有 tag2 和 tag3 的用户,并将标签与他们的计数按排序顺序分组。在三个用户的给定样本数据中,我的结果是label2 = 2; label1 = 1, label4 = 1
.