elastic search 常用查询

Posted zhengwenqiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elastic search 常用查询相关的知识,希望对你有一定的参考价值。

1.查询mapping

curl -X GET "10.0.38.111:1200/metric_data_bus_2018-08-07/_mapping/data_bus?pretty"

2.filter查询

curl -X GET "10.0.38.111:1200/metric_d_2018-08-07/_search?pretty&size=1" -H Content-Type: application/json -d{
"query": {
"bool": {
"must": { "match_all": {} },
"filter": [{
"range": {
"data.store_latency": {
"gte": 200
}
}
},{
"range": {
"data.parser_latency": {
"gte": 60000
}
}
}]
}
}
}

 

以上是关于elastic search 常用查询的主要内容,如果未能解决你的问题,请参考以下文章

Elastic Search之布尔查询

search- elastic4s-search-query模式

是否可以使用特征向量查询 Elastic Search?

使用 Elastic Search 查询 CouchDB 中的数组内部

Elassandra / Elastic Search中的聚合,日期范围查询

elastic search6.2.2 实现用户搜索记录查询(去重排序)