#Elasticsearch容许给文档创建父子关系,这篇博客介绍文档的父子关系是如何映射的(Parent-Child Mapping)、如何索引父子文档(Indexing Parents and Children)、如何经过子文档查询父文档
(Finding Parents by Their Children)、如何经过父文档查询子文档(Finding Children by Their Parents)。json
创建文档的父子关系最重要的一步是在建立索引的时候在mapping中声明哪一个是父文档哪一个是子文档。官网文档给了一个公司在不少城市的分支(branch)和每一个分支有相关员工(employee)的例子,若是想把员工和他们工做的分公司关联起来,咱们须要告诉Elasticsearch文档之间的父子关系,这里employee是child type,branch是parent type,在mapping中声明:app
curl -XPUT "http://192.168.0.224:9200/company" -d ' { "mappings": { "branch": {}, "employee": { "_parent": { "type": "branch" } } } } '
这样咱们建立了一个索引,并制定了2个type和它们之间的父子关系.curl
索引父文档和索引通常的文档没有任何区别。
准备几条公司的数据,存在company.json文件中:url
{ "index": { "_id": "london" }} { "name": "London Westminster", "city": "London", "country": "UK" } { "index": { "_id": "liverpool" }} { "name": "Liverpool Central", "city": "Liverpool", "country": "UK" } { "index": { "_id": "paris" }} { "name": "Champs Élysées", "city": "Paris", "country": "France" }
使用Bulk端点批量导入:spa
curl -XPOST "http://192.168.0.224:9200/company/branch/_bulk?pretty" --data-binary @company.json
索引子文档须要制定子文档的父ID,给子文档的每条文档设置parent属性的value为父文档id便可:code
curl -XPUT "http://192.168.0.224:9200/company/employee/1?parent=london&pretty" -d ' { "name": "Alice Smith", "dob": "1970-10-24", "hobby": "hiking" } '
执行bulk命令:索引
curl -XPOST "http://192.168.0.224:9200/company/employee/_bulk?pretty" --data-binary @employee.json
搜索含有1980年之后出生的employee的branch:ci
curl -XGET "http://192.168.0.224:9200/company/branch/_search?pretty" -d ' { "query": { "has_child": { "type": "employee", "query": { "range": { "dob": { "gte": "1980-01-01" } } } } } } ' { "took" : 19, "timed_out" : false, "_shards" : { "total" : 5, "successful" : 5, "failed" : 0 }, "hits" : { "total" : 2, "max_score" : 1.0, "hits" : [ { "_index" : "company", "_type" : "branch", "_id" : "paris", "_score" : 1.0, "_source" : { "name" : "Champs Élysées", "city" : "Paris", "country" : "France" } }, { "_index" : "company", "_type" : "branch", "_id" : "london", "_score" : 1.0, "_source" : { "name" : "London Westminster", "city" : "London", "country" : "UK" } } ] } }
查询name中含有“Alice Smith”的branch:文档
curl -XGET "http://192.168.0.224:9200/company/branch/_search?pretty" -d ' { "query": { "has_child": { "type": "employee", "score_mode": "max", "query": { "match": { "name": "Alice Smith" } } } } }' { "took" : 20, "timed_out" : false, "_shards" : { "total" : 5, "successful" : 5, "failed" : 0 }, "hits" : { "total" : 2, "max_score" : 1.2422675, "hits" : [ { "_index" : "company", "_type" : "branch", "_id" : "london", "_score" : 1.2422675, "_source" : { "name" : "London Westminster", "city" : "London", "country" : "UK" } }, { "_index" : "company", "_type" : "branch", "_id" : "liverpool", "_score" : 0.30617762, "_source" : { "name" : "Liverpool Central", "city" : "Liverpool", "country" : "UK" } } ] } }
搜索最少含有2个employee的branch:博客
curl -XGET "http://192.168.0.224:9200/company/branch/_search?pretty" -d '{ "query": { "has_child": { "type": "employee", "min_children": 2, "query": { "match_all": {} } } } } ' { "took" : 17, "timed_out" : false, "_shards" : { "total" : 5, "successful" : 5, "failed" : 0 }, "hits" : { "total" : 1, "max_score" : 1.0, "hits" : [ { "_index" : "company", "_type" : "branch", "_id" : "london", "_score" : 1.0, "_source" : { "name" : "London Westminster", "city" : "London", "country" : "UK" } } ] } }
搜搜工做在UK的employee:
curl -XGET "http://192.168.0.224:9200/company/employee/_search?pretty" -d '{ "query": { "has_parent": { "type": "branch", "query": { "match": { "country": "UK" } } } } }' { "took" : 15, "timed_out" : false, "_shards" : { "total" : 5, "successful" : 5, "failed" : 0 }, "hits" : { "total" : 3, "max_score" : 1.0, "hits" : [ { "_index" : "company", "_type" : "employee", "_id" : "3", "_score" : 1.0, "_parent" : "liverpool", "_routing" : "liverpool", "_source" : { "name" : "Barry Smith", "dob" : "1979-04-01", "hobby" : "hiking" } }, { "_index" : "company", "_type" : "employee", "_id" : "1", "_score" : 1.0, "_parent" : "london", "_routing" : "london", "_source" : { "name" : "Alice Smith", "dob" : "1970-10-24", "hobby" : "hiking" } }, { "_index" : "company", "_type" : "employee", "_id" : "2", "_score" : 1.0, "_parent" : "london", "_routing" : "london", "_source" : { "name" : "Mark Thomas", "dob" : "1982-05-16", "hobby" : "diving" } } ] } }