SearchClientBuilder.SearchIndexingBufferedSenderBuilder<T> Class
- java.
lang. Object - com.
azure. search. documents. SearchClientBuilder. SearchIndexingBufferedSenderBuilder<T>
- com.
Type Parameters
- T
The type of the document that the buffered sender will use.
public final class SearchClientBuilder.SearchIndexingBufferedSenderBuilder
This class provides a fluent builder API to help aid the configuration and instantiation of SearchIndexingBufferedSender<T> and SearchIndexingBufferedAsyncSender<T>. Call buildSender() and buildAsyncSender() respectively to construct an instance of the desired sender.
Method Summary
Methods inherited from java.lang.Object
Method Details
autoFlush
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the flag determining whether a buffered sender will automatically flush its document batch based on the configurations of autoFlushInterval(Duration autoFlushInterval) and initialBatchActionCount(int initialBatchActionCount).
Parameters:
Returns:
autoFlushInterval
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the duration between a buffered sender sending documents to be indexed.
The buffered sender will reset the duration when documents are sent for indexing, either by reaching initialBatchActionCount(int initialBatchActionCount) or by a manual trigger.
If autoFlushInterval
is negative or zero and autoFlush(boolean autoFlush) is enabled the buffered sender will only flush when initialBatchActionCount(int initialBatchActionCount) is met.
Parameters:
Returns:
buildAsyncSender
public SearchIndexingBufferedAsyncSender
Creates a SearchIndexingBufferedAsyncSender<T> based on options set in the builder. Every time this is called a new instance of SearchIndexingBufferedAsyncSender<T> is created.
Returns:
buildSender
public SearchIndexingBufferedSender
Creates a SearchIndexingBufferedSender<T> based on options set in the builder. Every time this is called a new instance of SearchIndexingBufferedSender<T> is created.
Returns:
documentKeyRetriever
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the function that retrieves the key value from a document.
Parameters:
Returns:
initialBatchActionCount
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the number of documents before a buffered sender will send the batch to be indexed.
This will only trigger a batch to be sent automatically if #autoFlushInterval is configured. Default value is 512
.
Parameters:
Returns:
maxRetriesPerAction
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the number of times an action will retry indexing before it is considered failed.
Documents are only retried on retryable status codes.
Default value is 3
.
Parameters:
Returns:
maxThrottlingDelay
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the maximum duration that requests will be delayed when the service is throttling.
If maxThrottlingDelay
is less than throttlingDelay(Duration throttlingDelay) then throttlingDelay(Duration throttlingDelay) will be used as the maximum delay.
Default value is Duration.ofMinutes(1)
.
Parameters:
Returns:
onActionAdded
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Callback hook for when a document indexing action has been added to a batch queued.
Parameters:
Returns:
onActionError
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the callback hook for when a document indexing action has failed to index and isn't retryable.
Parameters:
Returns:
onActionSent
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the callback hook for when a document indexing has been sent in a batching request.
Parameters:
Returns:
onActionSucceeded
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the callback hook for when a document indexing action has successfully completed indexing.
Parameters:
Returns:
throttlingDelay
public SearchClientBuilder.SearchIndexingBufferedSenderBuilder
Sets the initial duration that requests will be delayed when the service is throttling.
Default value is Duration.ofMillis(800)
.
Parameters:
Returns:
Applies to
Azure SDK for Java