본 내용은 윈도우에 설치된 Elasticsearch 7.10.2 버전으로 기준으로 작성되었습니다. 1. Index 생성하기 PUT http://localhost:9200/test_index Header: Content-Type: application/json Body: { "settings": { "index": { "number_of_shards": 1, "number_of_replicas": 0 } }, "mappings": { "properties": { "field1": { "type": "text" }, "field2": { "type": "text" }, "field3": { "type": "text" }, "field4": { "type": "text" } } } } 응답: { "acknow..