栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在Elasticsearch上查询每种类型的最新文档

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在Elasticsearch上查询每种类型的最新文档

首先,请注意,我必须将您对该

headline
字段的映射更改为
string
,因为在示例文档中,标题为,
string
而不是
object

因此,类似以下查询的查询将检索您期望的结果:

curl -XPOST "$ELASTICSEARCH_ENDPOINT/news/_search" -d '{  "size": 0,  "query": {    "filtered": {      "filter": {        "term": {          "user": "John"<--- filter for user=John        }      }    }  },  "aggs": {    "sources": {      "terms": {        "field": "source"          <--- aggregate by source      },      "aggs": {        "latest": {          "top_hits": { "size": 1,  <--- only take the first... "_source": [<--- only the date and headline    "headline",    "timestamp" ], "sort": {   "timestamp": "desc"  <--- ...and only the latest hit }          }        }      }    }  }}'

这将产生如下内容:

{  ...  "aggregations" : {    "sources" : {      "doc_count_error_upper_bound" : 0,      "sum_other_doc_count" : 0,      "buckets" : [ {        "key" : "CNN",        "doc_count" : 2,        "latest" : {          "hits" : { "total" : 2, "max_score" : null, "hits" : [ {   "_index" : "news",   "_type" : "news",   "_id" : "AU7Sh3VDGDddn2ZNuDVl",   "_score" : null,   "_source":{       "headline": "More great news",        "timestamp": "2015-07-28T00:08:23.000"   },   "sort" : [ 1438042103000 ] } ]          }        }      }, {        "key" : "ESPN",        "doc_count" : 2,        "latest" : {          "hits" : { "total" : 2, "max_score" : null, "hits" : [ {   "_index" : "news",   "_type" : "news",   "_id" : "AU7Sh3VDGDddn2ZNuDVn",   "_score" : null,   "_source":{        "headline": "More sports news",         "timestamp": "2015-07-28T00:10:35.000"   },   "sort" : [ 1438042235000 ] } ]          }        }      } ]    }  }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/401399.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号