Mapping configuration Elastic Search에서 index를 생성하는 단계에서 indexer에 들어올 document의 데이터 구조(schema)를 미리 정의할 수 있다. mapping 설정을 통해 각 필드의 데이터 타입이나 검색 시 해당 필드가 어떻게 처리되어야 하는지 등을 정의할 수 있다. mapping에서 자주 사용하는 설정 값에는 다음과 같은 것들이 있다. { "mappings": { "properties": { "title": { "type": "text", "analyzer": "standard" }, "description": { "type": text", "analyzer": "standard" } } } } properties 필드에 대한 configuation을 수행한다는 의미의 key이다. type 필드의 데이터 타입을 지정한다. text, keyword, integer, long, date, float, double, boolean 등이 있...