Bulk1 bulk를 이용한 indexing bulk를 이용해 update를 진행해보던 과정에 발견한 내용이다. 인덱스 생성 PUT sspark-testindex { "settings": { "number_of_shards": 5, "number_of_replicas": 1 } } bulk_index POST _bulk { "index" : { "_index" : "sspark-testindex", "_id" : "1" } } { "k001" : "doc1" } { "index" : { "_index" : "sspark-testindex", "_id" : "2" } } { "k001" : "doc2" } { "index" : { "_index" : "sspark-testindex", "_id" : "3" } } { "k001" : "doc3" } .. 2022. 4. 25. 이전 1 다음