elasticsearch
-
[Python] Insert bulk from pandas dataframe to elasticsearchElasticsearch 2020. 2. 15. 22:40
Python을 이용하여 Elasticsearch로 Bulk insert import pandas as pd from elasticsearch import Elasticsearch from elasticsearch.helpers import bulk # Datetime, String, Interger Example Dataframe listDate = ['2020-01-01 00:00:00','2020-01-01 00:01:00','2020-01-01 00:02:00', '2020-01-01 00:03:00'] listStrings = ['a','b','c','d'] listInterger = [1, 2, 3, 4 ] df = pd.DataFrame([ x for x in zip(listDate,listS..
-
Elasticsearch 설치 -Windows 2012Elasticsearch 2018. 6. 24. 21:30
1. Elasticsearch 오픈소스 다운로드 : https://www.elastic.co/downloads/elasticsearch-oss 2. 실행할 폴더에 압축을 푼다 3. config폴더에서 elasticsearch.yml 자신의 환경에 맞춰 파일수정 - node.name: 엘라스틱 노드 이름 - data, log 경로수정 - 네트워크로 연결하려면 network.host에 알맞은 IP입력. 로컬용은 localhost로 둔다. 4. elasticsearch.bat 실행