IndexingParameters Class
Represents parameters for indexer execution.
- Inheritance
-
IndexingParameters
Constructor
IndexingParameters(*, batch_size: Optional[int] = None, max_failed_items: Optional[int] = 0, max_failed_items_per_batch: Optional[int] = 0, configuration: Optional[azure.search.documents.indexes._generated.models._models_py3.IndexingParametersConfiguration] = None, **kwargs)
Parameters
- batch_size
- int
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.
- max_failed_items
- int
The maximum number of items that can fail indexing for indexer execution to still be considered successful. -1 means no limit. Default is 0.
- max_failed_items_per_batch
- int
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.
- configuration
- <xref:azure.search.documents.indexes.models.IndexingParametersConfiguration>
A dictionary of indexer-specific configuration properties. Each name is the name of a specific property. Each value must be of a primitive type.
Feedback
Submit and view feedback for