IndexerExecutionResult interface

Represents the result of an individual indexer execution.

Properties

endTime

The end time of this indexer execution, if the execution has already completed.

errorMessage

The error message indicating the top-level error, if any.

errors

The item-level indexing errors.

failedItemCount

The number of items that failed to be indexed during this indexer execution.

finalTrackingState

Change tracking state with which an indexer execution finished.

initialTrackingState

Change tracking state with which an indexer execution started.

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.

startTime

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

The item-level indexing errors.

errors: SearchIndexerError[]

Property Value

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[]

Property Value