【发布时间】:2019-08-29 17:14:43
【问题描述】:
我有下一个 elasticsearch 查询,我需要知道如何只获得某些字段的不同结果。 (就像一个 sql distinct:SELECT DISTINCT column1 , column2, ... FROM table_name :wink:
这是我的查询
{
"_source": ["part", "manufacturer", "shortdesc"],
"query": {
"match": {
"part": "2n2222"
}
}
}
这是我得到的结果:
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "13921",
"_score" : 207.16005,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "13923",
"_score" : 207.16005,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "811202",
"_score" : 202.03964,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "534059",
"_score" : 202.03964,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "534062",
"_score" : 202.03964,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "144303",
"_score" : 202.03964,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "557240",
"_score" : 202.03964,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Infineon"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "13924",
"_score" : 201.24086,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "557235",
"_score" : 201.24086,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "55566",
"_score" : 201.24086,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "50873",
"_score" : 201.24086,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "13915",
"_score" : 199.76857,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "591924",
"_score" : 199.76857,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "526043",
"_score" : 199.76857,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "423282",
"_score" : 198.89282,
"_source" : {
"part" : "2N2222A",
"manufacturer" : "Microsemi Corporation"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "565951",
"_score" : 193.51782,
"_source" : {
"part" : "P2N2222A",
"manufacturer" : "ON Semiconductor"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "13920",
"_score" : 192.1505,
"_source" : {
"part" : "P2N2222A",
"manufacturer" : "ON Semiconductor"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "2885944",
"_score" : 191.28773,
"_source" : {
"part" : "Q2N2222A",
"manufacturer" : "Freescale Semiconductor"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "765656",
"_score" : 191.28773,
"_source" : {
"part" : "2N2222AL",
"manufacturer" : "Microsemi"
}
},
{
"_index" : "my_index",
"_type" : "_doc",
"_id" : "491090",
"_score" : 190.78474,
"_source" : {
"part" : "2N2222AUB",
"manufacturer" : "Microsemi Corporation"
}
}
如果记录包含相同的部件和制造商,则该记录被视为重复。我需要为这些字段获取不同的值。
非常感谢您的帮助。
【问题讨论】:
标签: elasticsearch