IndexingParameters interface

Represents parameters for indexer execution.

Properties

batchSize

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.

configuration

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

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

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.

Property Details

batchSize

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.

batchSize?: number

Property Value

number

configuration

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

configuration?: IndexingParametersConfiguration

Property Value

maxFailedItems

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

maxFailedItems?: number

Property Value

number

maxFailedItemsPerBatch

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.

maxFailedItemsPerBatch?: number

Property Value

number