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

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

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

Prepare Interview

Elasticsearch 면접 질문과 답변

Ques 31. What is a shard in Elasticsearch?

A shard is a basic unit of storage and search in Elasticsearch. Indexes are divided into shards to distribute data across multiple nodes for scalability.

Example:

PUT /my_index/_settings
{
  "number_of_shards": 5
}

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

Ques 32. How does Elasticsearch handle security?

Elasticsearch provides security features like role-based access control, SSL/TLS encryption, and authentication mechanisms.

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

Ques 33. Explain the purpose of the term 'mapping' in Elasticsearch.

Mapping in Elasticsearch is the process of defining how a document and its fields are stored and indexed. It helps in defining the data type, analysis, and other properties.

Example:

PUT /my_index
{
  "mappings": {
    "properties": {
      "title": { "type": "text" }
    }
  }
}

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

Ques 34. Explain the term 'Bulk API' in Elasticsearch.

The Bulk API allows for the efficient indexing and deletion of multiple documents in a single request.

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

Ques 35. What is the role of a filter in Elasticsearch?

Filters in Elasticsearch are used to narrow down the search results based on specific criteria. They are applied to queries to exclude or include documents in the search.

Example:

GET /my_index/_search
{
  "query": {
    "bool": {
      "filter": {
        "range": {
          "price": { "gte": 20 }
        }
      }
    }
  }
}

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

Most helpful rated by users:

Copyright © 2026, WithoutBook.