bulk

Batch document operation

/ bulk, / index

Batch document operation # Provides a efficient way to perform multiple index, create, delete, and update operations in a single request. Examples # POST /_bulk { "index" : { "_index" : "test", "_id" : "1" } } { "field1" : "value1" } { "delete" : { "_index" : "test", "_id" : "2" } } { "create" : { "_index" : "test", "_id" : "3" } } { "field1" : "value3" } { "update" : {"_id" : "1", "_index" : "test"} } { "doc" : {"field2" : "value2"} } The API returns the following result: ...