elasticsearch 인덱스 생성1 Python(파이썬)으로 Elasticsearch Index 생성하기 index body로 인덱스 생성 from elasticsearch import Elasticsearch es = Elasticsearch() index_name = "my_index" index_body = { "settings": { "number_of_shards": 1, "number_of_replicas": 0 }, "mappings": { "properties": { "title": {"type": "text"}, "content": {"type": "text"} } } } response = es.indices.create(index=index_name, body=index_body) print(response) 위 코드에서 index_name 변수에 새로운 인덱스의 이름을 지정하고, ind.. 2023. 4. 16. 이전 1 다음