가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

Elasticsearch 면접 질문과 답변

Ques 6. Explain the purpose of the 'Percolator' in Elasticsearch.

The 'Percolator' in Elasticsearch is used for reverse searching. Instead of searching for documents, it allows you to register queries and match them against incoming documents.

Example:

PUT /my_index/_doc/my_percolator_query
{
  "query": {
    "match": {
      "field": "value"
    }
  }
}

도움이 되었나요? Add Comment View Comments
 

Ques 7. How can you limit the number of results in an Elasticsearch query?

You can use the 'size' parameter in your query to limit the number of results returned. For example, 'size': 10 will return only 10 documents.

Example:

GET /my_index/_search
{
  "query": {
    "match_all": {}
  },
  "size": 10
}

도움이 되었나요? Add Comment View Comments
 

Ques 8. What is the purpose of the 'Script' query in Elasticsearch?

The 'Script' query allows you to execute custom scripts during the search process. It is useful for complex calculations or custom scoring logic.

Example:

GET /my_index/_search
{
  "query": {
    "script": {
      "script": {
        "source": "doc['field'].value > 10"
      }
    }
  }
}

도움이 되었나요? Add Comment View Comments
 

Ques 9. Explain the concept of 'Field Data' in Elasticsearch.

Field Data in Elasticsearch is used to cache field values in memory for better performance. It is essential for aggregations and sorting operations.

Example:

GET /my_index/_search
{
  "aggs": {
    "sum_prices": {
      "sum": {
        "field": "price",
        "format": "doc_values"
      }
    }
  }
}

도움이 되었나요? Add Comment View Comments
 

Ques 10. What is Elasticsearch?

Elasticsearch is a distributed search and analytics engine built on top of Apache Lucene.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.