Package org.opensearch.action.bulk
Class BulkRequestBuilder
java.lang.Object
org.opensearch.action.ActionRequestBuilder<BulkRequest,BulkResponse>
org.opensearch.action.bulk.BulkRequestBuilder
- All Implemented Interfaces:
WriteRequestBuilder<BulkRequestBuilder>
@PublicApi(since="1.0.0")
public class BulkRequestBuilder
extends ActionRequestBuilder<BulkRequest,BulkResponse>
implements WriteRequestBuilder<BulkRequestBuilder>
A bulk request holds an ordered
IndexRequest
s and DeleteRequest
s and allows to executes
it in a single batch.- Opensearch.api:
-
Field Summary
Fields inherited from class org.opensearch.action.ActionRequestBuilder
action, client, request
-
Constructor Summary
ConstructorDescriptionBulkRequestBuilder
(OpenSearchClient client, BulkAction action) BulkRequestBuilder
(OpenSearchClient client, BulkAction action, String globalIndex) -
Method Summary
Modifier and TypeMethodDescriptionadd
(byte[] data, int from, int length, String defaultIndex, org.opensearch.core.xcontent.MediaType mediaType) Adds a framed data in binary formatadd
(byte[] data, int from, int length, org.opensearch.common.xcontent.XContentType xContentType) Adds a framed data in binary formatadd
(DeleteRequest request) Adds anDeleteRequest
to the list of actions to execute.add
(DeleteRequestBuilder request) Adds anDeleteRequest
to the list of actions to execute.add
(IndexRequest request) Adds anIndexRequest
to the list of actions to execute.add
(IndexRequestBuilder request) Adds anIndexRequest
to the list of actions to execute.add
(UpdateRequest request) Adds anUpdateRequest
to the list of actions to execute.add
(UpdateRequestBuilder request) Adds anUpdateRequest
to the list of actions to execute.int
The number of actions currently in the bulk.final BulkRequestBuilder
setTimeout
(String timeout) A timeout to wait if the index operation can't be performed immediately.final BulkRequestBuilder
setTimeout
(org.opensearch.common.unit.TimeValue timeout) A timeout to wait if the index operation can't be performed immediately.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.setWaitForActiveShards
(ActiveShardCount waitForActiveShards) Sets the number of shard copies that must be active before proceeding with the write.Methods inherited from class org.opensearch.action.ActionRequestBuilder
execute, execute, get, get, get, request
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opensearch.action.support.WriteRequestBuilder
request, setRefreshPolicy, setRefreshPolicy
-
Constructor Details
-
BulkRequestBuilder
-
BulkRequestBuilder
-
-
Method Details
-
add
Adds anIndexRequest
to the list of actions to execute. Follows the same behavior ofIndexRequest
(for example, if no id is provided, one will be generated, or usage of the create flag). -
add
Adds anIndexRequest
to the list of actions to execute. Follows the same behavior ofIndexRequest
(for example, if no id is provided, one will be generated, or usage of the create flag). -
add
Adds anDeleteRequest
to the list of actions to execute. -
add
Adds anDeleteRequest
to the list of actions to execute. -
add
Adds anUpdateRequest
to the list of actions to execute. -
add
Adds anUpdateRequest
to the list of actions to execute. -
add
public BulkRequestBuilder add(byte[] data, int from, int length, org.opensearch.common.xcontent.XContentType xContentType) throws Exception Adds a framed data in binary format- Throws:
Exception
-
add
public BulkRequestBuilder add(byte[] data, int from, int length, @Nullable String defaultIndex, org.opensearch.core.xcontent.MediaType mediaType) throws Exception Adds a framed data in binary format- Throws:
Exception
-
setWaitForActiveShards
Sets the number of shard copies that must be active before proceeding with the write. SeeReplicationRequest.waitForActiveShards(ActiveShardCount)
for details. -
setWaitForActiveShards
A shortcut forsetWaitForActiveShards(ActiveShardCount)
where the numerical shard count is passed in, instead of having to first callActiveShardCount.from(int)
to get the ActiveShardCount. -
setTimeout
A timeout to wait if the index operation can't be performed immediately. Defaults to1m
. -
setTimeout
A timeout to wait if the index operation can't be performed immediately. Defaults to1m
. -
numberOfActions
public int numberOfActions()The number of actions currently in the bulk. -
pipeline
-
routing
-