elasticsearch + Kibana BulkAPI를 사용해보기
1940 단어 Elasticsearch키바나
색인
※2018/8/11 추가
동일_id의 문서 유무에 의해, Insert or update가 되기 때문에 주의를.
kibana
POST/product/default/_bulk
{ "index":{ "_id": "100"} }
{ "price": 100}
{ "index":{ "_id": "101"} }
{ "price": 101}
Curl
curl -XPOST "http://localhost:9200/product/default/_bulk "-H 'Content-Type: application/json' -d'
{ "index":{ "_id": "100"} }
{ "price": 100}
{ "index":{ "_id": "101"} }
{ "price": 101}
'
Update&Delete
kibana
POST/product/default/_bulk
{"update":{"_id": "100"}}
{"doc":{"price": "1000"}}
{"delete":{"_id": "101"}}
Curl
curl -XPOST "http://localhost:9200/product/default/_bulk "-H 'Content-Type: application/json' -d'
{"update":{"_id": "100"}}
{"doc":{"price": "1000"}}
{"delete":{"_id": "101"}}
'
JSON 데이터를 Curl로 등록
미리 json 형식의 파일을 curl 실행할 디렉토리에 넣습니다.
실행
$ curl -H "Content-Type: application/json" -XPOST "http://localhost:9200/product/default/_bulk?pretty" --data-binary "@products-bulk.json"
Reference
이 문제에 관하여(elasticsearch + Kibana BulkAPI를 사용해보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Hitoshi5858/items/07c4d13008900b262fe2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)