-
Introduction
- 入门
- 分布式集群
- 数据
- 分布式增删改查
- 搜索
- 映射和分析
- 结构化查询
- 排序
- 分布式搜索
- 索引管理
- 深入分片
- 结构化搜索
- 全文搜索
- 多字段搜索
- 模糊匹配
- Partial_Matching
- Relevance
- Language intro
- Identifying words
- Token normalization
- Stemming
- Stopwords
- Synonyms
- Fuzzy matching
-
Aggregations
-
overview
-
circuit breaker fd settings
-
filtering
-
facets
-
docvalues
-
eager
-
breadth vs depth
-
Conclusion
-
concepts buckets
-
basic example
-
add metric
-
nested bucket
-
extra metrics
-
bucket metric list
-
histogram
-
date histogram
-
scope
-
filtering
-
sorting ordering
-
approx intro
-
cardinality
-
percentiles
-
sigterms intro
-
sigterms
-
fielddata
-
analyzed vs not
-
overview
- 地理坐标点
- Geohashe
- 地理位置聚合
- 地理形状
- 关系
- 嵌套
- Parent Child
- Scaling
- Cluster Admin
- Deployment
- Post Deployment
嵌套-查询
查询嵌套对象
因嵌套对象(nested objects)会被索引为分离的隐藏文档,我们不能直接查询它们。而是使用 nested
查询或 nested
过滤器来存取它们:
GET /my_index/blogpost/_search
{
"query": {
"bool": {
"must": [
{ "match": { "title": "eggs" }}, <1>
{
"nested": {
"path": "comments", <2>
"query": {
"bool": {
"must": [ <3>
{ "match": { "comments.name": "john" }},
{ "match": { "comments.age": 28 }}
]
}}}}
]
}}}
copy
<1> title
条件运作在根文档上
<2> nested
条件深入
嵌套的comments
栏位。它不会在存取根文档的栏位,或是其他嵌套文档的栏位。
<3> comments.name
以及comments.age
运作在相同的嵌套文档。
TIP
一个
nested
栏位可以包含其他nested
栏位。 相同的,一个nested
查询可以包含其他nested
查询。 嵌套阶层会如同你预期的运作。
当然,一个nested
查询可以匹配多个嵌套文档。
每个文档的匹配会有各自的关联分数,但多个分数必须减少至单一分数才能应用至根文档。
在预设中,它会平均所有嵌套文档匹配的分数。这可以藉由设定score_mode
参数为avg
, max
, sum
或甚至none
(为了防止根文档永远获得1.0
的匹配分数时)来控制。
GET /my_index/blogpost/_search
{
"query": {
"bool": {
"must": [
{ "match": { "title": "eggs" }},
{
"nested": {
"path": "comments",
"score_mode": "max", <1>
"query": {
"bool": {
"must": [
{ "match": { "comments.name": "john" }},
{ "match": { "comments.age": 28 }}
]
}}}}
]
}}}
copy
<1> 从最匹配的嵌套文档中给予根文档的_score
值。
注意
nested
过滤器类似於nested
查询,除了无法使用score_mode
参数。 只能使用在filter context—例如在filtered
查询中--其作用类似其他的过滤器: 包含或不包含,但不评分。
nested
过滤器的结果本身不会缓存,通常缓存规则会被应用於nested
过滤器_之中_的过滤器。