Uses of Class
org.elasticsearch.action.bulk.BulkRequestBuilder
-
Packages that use BulkRequestBuilder Package Description org.elasticsearch.action.bulk org.elasticsearch.client org.elasticsearch.client.support -
-
Uses of BulkRequestBuilder in org.elasticsearch.action.bulk
Methods in org.elasticsearch.action.bulk that return BulkRequestBuilder Modifier and Type Method Description BulkRequestBuilderBulkRequestBuilder. add(byte[] data, int from, int length, String defaultIndex, String defaultType, XContentType xContentType)Deprecated.useadd(byte[], int, int, String, XContentType)insteadBulkRequestBuilderBulkRequestBuilder. add(byte[] data, int from, int length, String defaultIndex, XContentType xContentType)Adds a framed data in binary formatBulkRequestBuilderBulkRequestBuilder. add(byte[] data, int from, int length, XContentType xContentType)Adds a framed data in binary formatBulkRequestBuilderBulkRequestBuilder. add(DeleteRequest request)Adds anDeleteRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. add(DeleteRequestBuilder request)Adds anDeleteRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. add(IndexRequest request)Adds anIndexRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. add(IndexRequestBuilder request)Adds anIndexRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. add(UpdateRequest request)Adds anUpdateRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. add(UpdateRequestBuilder request)Adds anUpdateRequestto the list of actions to execute.BulkRequestBuilderBulkRequestBuilder. pipeline(String globalPipeline)BulkRequestBuilderBulkRequestBuilder. routing(String globalRouting)BulkRequestBuilderBulkRequestBuilder. setTimeout(String timeout)A timeout to wait if the index operation can't be performed immediately.BulkRequestBuilderBulkRequestBuilder. setTimeout(TimeValue timeout)A timeout to wait if the index operation can't be performed immediately.BulkRequestBuilderBulkRequestBuilder. setWaitForActiveShards(int waitForActiveShards)A shortcut forsetWaitForActiveShards(ActiveShardCount)where the numerical shard count is passed in, instead of having to first callActiveShardCount.from(int)to get the ActiveShardCount.BulkRequestBuilderBulkRequestBuilder. setWaitForActiveShards(ActiveShardCount waitForActiveShards)Sets the number of shard copies that must be active before proceeding with the write. -
Uses of BulkRequestBuilder in org.elasticsearch.client
Methods in org.elasticsearch.client that return BulkRequestBuilder Modifier and Type Method Description BulkRequestBuilderClient. prepareBulk()Executes a bulk of index / delete operations.BulkRequestBuilderClient. prepareBulk(String globalIndex, String globalType)Executes a bulk of index / delete operations with default index and/or type -
Uses of BulkRequestBuilder in org.elasticsearch.client.support
Methods in org.elasticsearch.client.support that return BulkRequestBuilder Modifier and Type Method Description BulkRequestBuilderAbstractClient. prepareBulk()BulkRequestBuilderAbstractClient. prepareBulk(String globalIndex, String globalType)
-