親のクエリがある

指定されたクエリに一致する親ドキュメントを持つ子ドキュメントを返します。同じインデックス内のドキュメント間で親子関係を作成するには、joinフィールドマッピングを使用します。

結合を行うため、has_parentクエリは他のクエリに比べて遅くなります。一致する親ドキュメントの数が増えるにつれて、そのパフォーマンスは低下します。検索内の各has_parentクエリは、クエリ時間を大幅に増加させる可能性があります。

例のリクエスト

インデックス設定

  1. #### Python
  2. ``````python
  3. resp = client.indices.create(
  4. index="my-index-000001",
  5. mappings={
  6. "properties": {
  7. "my-join-field": {
  8. "type": "join",
  9. "relations": {
  10. "parent": "child"
  11. }
  12. },
  13. "tag": {
  14. "type": "keyword"
  15. }
  16. }
  17. },
  18. )
  19. print(resp)
  20. `

Ruby

  1. response = client.indices.create(
  2. index: 'my-index-000001',
  3. body: {
  4. mappings: {
  5. properties: {
  6. "my-join-field": {
  7. type: 'join',
  8. relations: {
  9. parent: 'child'
  10. }
  11. },
  12. tag: {
  13. type: 'keyword'
  14. }
  15. }
  16. }
  17. }
  18. )
  19. puts response

Js

  1. const response = await client.indices.create({
  2. index: "my-index-000001",
  3. mappings: {
  4. properties: {
  5. "my-join-field": {
  6. type: "join",
  7. relations: {
  8. parent: "child",
  9. },
  10. },
  11. tag: {
  12. type: "keyword",
  13. },
  14. },
  15. },
  16. });
  17. console.log(response);

コンソール

  1. PUT /my-index-000001
  2. {
  3. "mappings": {
  4. "properties": {
  5. "my-join-field": {
  6. "type": "join",
  7. "relations": {
  8. "parent": "child"
  9. }
  10. },
  11. "tag": {
  12. "type": "keyword"
  13. }
  14. }
  15. }
  16. }

例のクエリ

Python

  1. resp = client.search(
  2. index="my-index-000001",
  3. query={
  4. "has_parent": {
  5. "parent_type": "parent",
  6. "query": {
  7. "term": {
  8. "tag": {
  9. "value": "Elasticsearch"
  10. }
  11. }
  12. }
  13. }
  14. },
  15. )
  16. print(resp)

Js

  1. const response = await client.search({
  2. index: "my-index-000001",
  3. query: {
  4. has_parent: {
  5. parent_type: "parent",
  6. query: {
  7. term: {
  8. tag: {
  9. value: "Elasticsearch",
  10. },
  11. },
  12. },
  13. },
  14. },
  15. });
  16. console.log(response);

コンソール

  1. GET /my-index-000001/_search
  2. {
  3. "query": {
  4. "has_parent": {
  5. "parent_type": "parent",
  6. "query": {
  7. "term": {
  8. "tag": {
  9. "value": "Elasticsearch"
  10. }
  11. }
  12. }
  13. }
  14. }
  15. }

has_parentのトップレベルパラメータ

  • parent_type
  • (必須、文字列) joinフィールドにマッピングされた親関係の名前。
  • query
  • (必須、クエリオブジェクト) parent_typeフィールドの親ドキュメントに対して実行したいクエリ。親ドキュメントが検索に一致する場合、クエリはその子ドキュメントを返します。
  • score
  • (オプション、Boolean) 一致する親ドキュメントの関連スコアがその子ドキュメントに集約されるかどうかを示します。デフォルトはfalseです。
    falseの場合、Elasticsearchは親ドキュメントの関連スコアを無視します。Elasticsearchはまた、各子ドキュメントにqueryboostに等しい関連スコアを割り当て、デフォルトは1です。
    trueの場合、一致する親ドキュメントの関連スコアはその子ドキュメントの関連スコアに集約されます。
  • ignore_unmapped
  • (オプション、Boolean) マッピングされていないparent_typeを無視し、エラーの代わりにドキュメントを返さないかどうかを示します。デフォルトはfalseです。
    falseの場合、Elasticsearchはparent_typeがマッピングされていない場合にエラーを返します。
    このパラメータを使用して、parent_typeを含まない可能性のある複数のインデックスをクエリできます。

ノート

ソート

  1. 親ドキュメントのフィールドで返されたドキュメントをソートする必要がある場合は、`````function_score`````クエリを使用し、`````_score`````でソートします。例えば、次のクエリは、親ドキュメントの`````view_count`````フィールドで返されたドキュメントをソートします。
  2. #### Python
  3. ``````python
  4. resp = client.search(
  5. query={
  6. "has_parent": {
  7. "parent_type": "parent",
  8. "score": True,
  9. "query": {
  10. "function_score": {
  11. "script_score": {
  12. "script": "_score * doc['view_count'].value"
  13. }
  14. }
  15. }
  16. }
  17. },
  18. )
  19. print(resp)
  20. `

Js

  1. const response = await client.search({
  2. query: {
  3. has_parent: {
  4. parent_type: "parent",
  5. score: true,
  6. query: {
  7. function_score: {
  8. script_score: {
  9. script: "_score * doc['view_count'].value",
  10. },
  11. },
  12. },
  13. },
  14. },
  15. });
  16. console.log(response);

コンソール

  1. GET /_search
  2. {
  3. "query": {
  4. "has_parent": {
  5. "parent_type": "parent",
  6. "score": true,
  7. "query": {
  8. "function_score": {
  9. "script_score": {
  10. "script": "_score * doc['view_count'].value"
  11. }
  12. }
  13. }
  14. }
  15. }
  16. }