Package version:

Interface SearchIndexingBufferedSenderOptions

Options for SearchIndexingBufferedSender.

interface SearchIndexingBufferedSenderOptions {
    autoFlush?: boolean;
    flushWindowInMs?: number;
    initialBatchActionCount?: number;
    maxRetriesPerAction?: number;
    maxThrottlingDelayInMs?: number;
    throttlingDelayInMs?: number;
}

Properties

autoFlush?: boolean

Indicates if autoFlush is enabled.

flushWindowInMs?: number

Flush Window.

A batch request will be sent after flushWindowInMs is reached.

initialBatchActionCount?: number

Initial Batch Action Count.

A batch request will be sent once the documents reach the initialBatchActionCount.

maxRetriesPerAction?: number

Maximum number of Retries

maxThrottlingDelayInMs?: number

Max Delay between retries

throttlingDelayInMs?: number

Delay between retries