Package version:

Interface IndexingParameters

Represents parameters for indexer execution.

interface IndexingParameters {
    batchSize?: number;
    configuration?: IndexingParametersConfiguration;
    maxFailedItems?: number;
    maxFailedItemsPerBatch?: number;
}

Properties

batchSize?: number

The number of items that are read from the data source and indexed as a single batch in order to improve performance. The default depends on the data source type.

A dictionary of indexer-specific configuration properties. Each name is the name of a specific property. Each value must be of a primitive type.

maxFailedItems?: number

The maximum number of items that can fail indexing for indexer execution to still be considered successful. -1 means no limit. Default is 0.

maxFailedItemsPerBatch?: number

The maximum number of items in a single batch that can fail indexing for the batch to still be considered successful. -1 means no limit. Default is 0.