IndexerExecutionResult interface
Represents the result of an individual indexer execution.
Properties
| end |
The end time of this indexer execution, if the execution has already completed. |
| error |
The error message indicating the top-level error, if any. |
| errors | The item-level indexing errors. |
| failed |
The number of items that failed to be indexed during this indexer execution. |
| final |
Change tracking state with which an indexer execution finished. |
| initial |
Change tracking state with which an indexer execution started. |
| item |
The number of items that were processed during this indexer execution. This includes both successfully processed items and items where indexing was attempted but failed. |
| start |
The start time of this indexer execution. |
| status | The outcome of this indexer execution. |
| warnings | The item-level indexing warnings. |
Property Details
endTime
The end time of this indexer execution, if the execution has already completed.
endTime?: Date
Property Value
Date
errorMessage
The error message indicating the top-level error, if any.
errorMessage?: string
Property Value
string
errors
failedItemCount
The number of items that failed to be indexed during this indexer execution.
failedItemCount: number
Property Value
number
finalTrackingState
Change tracking state with which an indexer execution finished.
finalTrackingState?: string
Property Value
string
initialTrackingState
Change tracking state with which an indexer execution started.
initialTrackingState?: string
Property Value
string
itemCount
The number of items that were processed during this indexer execution. This includes both successfully processed items and items where indexing was attempted but failed.
itemCount: number
Property Value
number
startTime
The start time of this indexer execution.
startTime?: Date
Property Value
Date
status
The outcome of this indexer execution.
status: IndexerExecutionStatus
Property Value
warnings
The item-level indexing warnings.
warnings: SearchIndexerWarning[]