ELASTIC SEARCH 벌크
여러개의 Document를 한번에 Elastic search에 넣는 법
curl 6버전이상에선 -H "Content-Type:application/json"
을 넣는 것을 기억하자
xxxxxxxxxx
curl -XPOST localhost:9200/_bulk?pretty --data-binary @classes.json
벌크 작업. 아래의 구조
xxxxxxxxxx
POST /customer/external/_bulk?pretty
{"index":{"_id":"1"}}
{"name": "John Doe" }
{"index":{"_id":"2"}}
{"name": "Jane Doe" }
http://host:port/(index)/(type)/(action|id)
복습
index : RDBMS의 DB파일
type : 테이블
'Back-end' 카테고리의 다른 글
ElasticSearch Search 데이터 조회하기 (0) | 2018.08.30 |
---|---|
ElasticSearch Mapping (0) | 2018.08.30 |
Elastic Search 자료구조 / GET POST PUT DELETE / UPDATE방법 (0) | 2018.08.29 |
데이터베이스 JOIN 역할 (0) | 2018.07.19 |
Flask 익히기 (0) | 2018.07.07 |
댓글