Package org.elasticsearch.action.bulk
Class BulkProcessor
- java.lang.Object
-
- org.elasticsearch.action.bulk.BulkProcessor
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class BulkProcessor extends java.lang.Object implements java.io.CloseableA bulk processor is a thread safe bulk processing class, allowing to easily set when to "flush" a new bulk request (either based on number of actions, based on the size, or time), and to easily control the number of concurrent bulk requests allowed to be executed in parallel.In order to create a new bulk processor, use the
BulkProcessor.Builder.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBulkProcessor.BuilderA builder used to create a build an instance of a bulk processor.static interfaceBulkProcessor.ListenerA listener for the execution.
-
Method Summary
Modifier and Type Method Description BulkProcessoradd(DeleteRequest request)Adds anDeleteRequestto the list of actions to execute.BulkProcessoradd(DocWriteRequest<?> request)Adds either a delete or an index request.BulkProcessoradd(IndexRequest request)Adds anIndexRequestto the list of actions to execute.BulkProcessoradd(BytesReference data, java.lang.String defaultIndex, java.lang.String defaultType, java.lang.String defaultPipeline, XContentType xContentType)Adds the data from the bytes to be processed by the bulk processorBulkProcessoradd(BytesReference data, java.lang.String defaultIndex, java.lang.String defaultType, XContentType xContentType)Adds the data from the bytes to be processed by the bulk processorbooleanawaitClose(long timeout, java.util.concurrent.TimeUnit unit)Closes the processor.static BulkProcessor.Builderbuilder(java.util.function.BiConsumer<BulkRequest,ActionListener<BulkResponse>> consumer, BulkProcessor.Listener listener)static BulkProcessor.Builderbuilder(Client client, BulkProcessor.Listener listener)voidclose()Closes the processor.protected voidensureOpen()voidflush()Flush pending delete or index requests.
-
-
-
Method Detail
-
builder
public static BulkProcessor.Builder builder(Client client, BulkProcessor.Listener listener)
-
builder
public static BulkProcessor.Builder builder(java.util.function.BiConsumer<BulkRequest,ActionListener<BulkResponse>> consumer, BulkProcessor.Listener listener)
-
close
public void close()
Closes the processor. If flushing by time is enabled, then it's shutdown. Any remaining bulk actions are flushed.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable
-
awaitClose
public boolean awaitClose(long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedExceptionCloses the processor. If flushing by time is enabled, then it's shutdown. Any remaining bulk actions are flushed.If concurrent requests are not enabled, returns
trueimmediately. If concurrent requests are enabled, waits for up to the specified timeout for all bulk requests to complete then returnstrueIf the specified waiting time elapses before all bulk requests complete,falseis returned.- Parameters:
timeout- The maximum time to wait for the bulk requests to completeunit- The time unit of thetimeoutargument- Returns:
trueif all bulk requests completed andfalseif the waiting time elapsed before all the bulk requests completed- Throws:
java.lang.InterruptedException- If the current thread is interrupted
-
add
public BulkProcessor add(IndexRequest request)
Adds anIndexRequestto 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
public BulkProcessor add(DeleteRequest request)
Adds anDeleteRequestto the list of actions to execute.
-
add
public BulkProcessor add(DocWriteRequest<?> request)
Adds either a delete or an index request.
-
ensureOpen
protected void ensureOpen()
-
add
public BulkProcessor add(BytesReference data, @Nullable java.lang.String defaultIndex, @Nullable java.lang.String defaultType, XContentType xContentType) throws java.lang.Exception
Adds the data from the bytes to be processed by the bulk processor- Throws:
java.lang.Exception
-
add
public BulkProcessor add(BytesReference data, @Nullable java.lang.String defaultIndex, @Nullable java.lang.String defaultType, @Nullable java.lang.String defaultPipeline, XContentType xContentType) throws java.lang.Exception
Adds the data from the bytes to be processed by the bulk processor- Throws:
java.lang.Exception
-
flush
public void flush()
Flush pending delete or index requests.
-
-