Data/Elasticsearch2 Elasticsearch MacOS 로컬 설치 및 환경설정 방법 Elastic Search를 Mac 환경에서 로컬 설치해보자. 설치 방법은 크게 두가지 있다. Elasticsearch 공식 홈페이지에서 tar.gz 다운로드 받아 설치 mac OS brew command로 설치 1. 파일 다운로드 Elasticsearch 공식 홈페이지에서 제공하는 다운로드 페이지 접속해서 choose platform macOS 선택하고 다운로드 받는다. 다운로드 페이지 Download Elasticsearch Download Elasticsearch or the complete Elastic Stack (formerly ELK stack) for free and start searching and analyzing in minutes with Elastic. www.elastic.co.. 2023. 4. 17. 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 다음