Elasticsearch - 如何返回某些字段的不同文档

标签 elasticsearch

我有下一个 Elasticsearch 查询,我需要知道如何仅获取某些字段的不同结果。 (就像一个 sql 不同的: SELECT DISTINCT column1 , column2, ... FROM 表名:眨眼:

这是我的查询

{
  "_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"
    }
  }

如果记录包含相同的部件和制造商,则该记录被视为重复。我需要为这些字段获取不同的值。

非常感谢您的帮助。

最佳答案

我相信您需要在查询中使用聚合来获得不同的配对行为。请参阅this有关不同值查询的示例。

链接问题和您的案例之间的主要区别在于您有两个字段,并且您需要所有不同的对,而不是两个字段的不同值。

编辑: 刚刚测试了这个,它的行为似乎与您想要做的一样。您可以通过删除/禁用术语聚合的 doc_count 计数并使用 _source 来优化它,就像您在问题中所做的那样。您还可以添加查询和匹配子句来过滤给定的零件/制造商。

编辑2:将查询/匹配添加到问题中的请求中。

GET YOURINDEX/_search
{
"query": {
    "match": {
      "part.keyword": "2n2222"
    }
  }, 
  "size": 0,
  "aggs": {
    "actions": {
      "terms": {
        "field": "part.keyword"
      },
      "aggs": {
        "emails": {
          "terms": {
            "field": "manufacturer.keyword"
          }
        }
      }
    }
  }
}

关于Elasticsearch - 如何返回某些字段的不同文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57715032/

相关文章:

elasticsearch - 无法通过kubernetes入口调用外部资源

elasticsearch - 未创建Elasticsearch映射

curl - 如何隐藏curl elasticsearch命令的输出消息?

elasticsearch - NEST版本1.3.1支持的Elasticsearch版本

elasticsearch - 验证Logstash配置

mapping - 检索数组Elasticsearch内的一个对象

elasticsearch - 如何跟踪被拒绝和丢弃事件的总数

elasticsearch - 在 Elasticsearch 中按精确顺序搜索多个值

javascript - 使用 Firebase 函数将数据索引到 ElasticSearch,并非所有字段都被索引

lucene - 在 ElasticSearch 中匹配缺失的空格