ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Nested Query
    BackEnd/Elasticsearch API 2025. 3. 23. 06:00
    반응형

      Nested Query는 중첩된 객체 배열 내의 필드를 정확하게 필터링할 수 있는 기능입니다. 일반적인 Object 타입과 달리 중첩된 객체 배열을 색인하고 검색하는데 사용됩니다.

     

    Nested Query 특징

    • 중첩된 객체 배열 내 각 객체를 독립적인 문서로 취급하여 검색합니다.
    • 중첩된 객체 내의 필드 간의 관계를 유지하여, 특정 조건을 만족하는 문서만 검색할 수 있습니다.
    • 일반적인 쿼리보다 느릴 수 있기에 대량의 데이터 처리 시 성능에 영향을 줄 수 있습니다.
    • Nested Query는 반드시 nested 타입으로 매핑된 필드에서만 사용할 수 있습니다.
    • must_not 쿼리는 Nested Query 내에서 제대로 작동하지 않을 수 있으므로, 긍정문으로 작성한 뒤 bool 쿼리를 사용하는 것이 좋습니다.

     

      다음은 nested index가 아닌 케이스입니다. 인덱스를 생성하고 문서를 인덱싱합니다.

    PUT /nested_index
    {
      "mappings": {
        "properties": {
          "products": {
            "properties": {
              "name": { "type": "text" },
              "price": { "type": "float" }
            }
          }
        }
      }
    }
    
    POST /nested_index/_doc/1
    {
      "products": [
        { "name": "Laptop", "price": 999.99 },
        { "name": "Smartphone", "price": 499.99 },
        { "name": "Tablet", "price": 299.99 }
      ]
    }
    
    POST /nested_index/_doc/2
    {
      "products": [
        { "name": "Laptop", "price": 1099.99 },
        { "name": "Smartphone", "price": 299.99 },
        { "name": "Tablet", "price": 399.99 }
      ]
    }

     

      다음 쿼리를 실행하면 1번과 2번 문서가 모두 조회됩니다. 이는 nested index가 아니기 때문입니다. 즉, nested index가 아니면 필드 간의 관계를 유지하지 않기 때문에 상품명이 Smartphone이거나 가격이 300이하인 모든 문서가 검색되는 것입니다.

    GET /nested_index/_search
    {
      "query": {
        "bool": {
          "must": [
            { "match": { "products.name": "Smartphone" } },
            { "range": { "products.price": { "lt": 300 } } }
          ]
        }   
      }
    }

     

    Nested Query

    # 매핑 설정
    PUT /nested_index
    {
      "mappings": {
        "properties": {
          "products": {
            "type": "nested",  // Define the nested field
            "properties": {
              "name": { "type": "text" },
              "price": { "type": "float" }
            }
          }
        }
      }
    }
    
    # 쿼리 작성
    GET /nested_index/_search
    {
      "query": {
        "nested": {
          "path": "products",  // Path to the nested field
          "query": {
            "bool": {
              "must": [
                { "match": { "products.name": "Smartphone" } },
                { "range": { "products.price": { "lt": 600 } } }
              ]
            }
          }
        }
      }
    }

     

    Inner Hits

      Nested, Parent-Child 관계의 문서에서 특정 조건을 만족하는 하위 문서(예: 중첩된 객체 또는 자식 문서)를 함께 반환하는 기능입니다.

    • Nested Documents: Nested Query에서 특정 조건을 만족하는 중첩된 객체를 반환합니다.
    • Parent-Child Documents: Parent-Child 관계에서 특정 조건을 만족하는 자식 문서를 함께 반환합니다.
    PUT /products
    {
      "mappings": {
        "properties": {
          "name": {
            "type": "text"
          },
          "reviews": {
            "type": "nested",
            "properties": {
              "reviewer": { "type": "text" },
              "comment": { "type": "text" },
              "rating": { "type": "integer" }
            }
          }
        }
      }
    }
    
    POST /products/_doc/1
    {
      "name": "Smartphone XYZ",
      "reviews": [
        { "reviewer": "Jane", "comment": "Good value for money.", "rating": 4 },
        { "reviewer": "John", "comment": "This phone is excellent!", "rating": 5 }
      ]
    }
    
    POST /products/_doc/2
    {
      "name": "Laptop ABC",
      "reviews": [
        { "reviewer": "Alice", "comment": "Excellent performance.", "rating": 5 },
        { "reviewer": "Bob", "comment": "Battery life could be better.", "rating": 3 }
      ]
    }
    
    GET /products/_search
    {
      "query": {
        "nested": {
          "path": "reviews",
          "query": {
            "match": {
              "reviews.comment": "excellent"
            }
          },
          "inner_hits": {}  // Add inner hits to retrieve matching nested documents
        }
      }
    }

     

     

    [참고자료]

    반응형

    'BackEnd > Elasticsearch API' 카테고리의 다른 글

    Aggregation  (0) 2025.03.30
    Join Query  (0) 2025.03.29
    Boosting  (0) 2025.03.23
    Full Text Search  (0) 2025.03.22
    Search  (0) 2025.03.20

    댓글

Designed by Tistory.