Indexers - Get Status
Returns the current status and execution history of an indexer.
GET {endpoint}/indexers('{indexerName}')/search.status?api-version=2024-07-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
endpoint
|
path | True |
string |
The endpoint URL of the search service. |
indexer
|
path | True |
string |
The name of the indexer for which to retrieve status. |
api-version
|
query | True |
string |
Client Api Version. |
Request Header
Name | Required | Type | Description |
---|---|---|---|
x-ms-client-request-id |
string uuid |
The tracking ID sent with the request to help with debugging. |
Responses
Name | Type | Description |
---|---|---|
200 OK | ||
Other Status Codes |
Error response. |
Examples
SearchServiceGetIndexerStatus
Sample request
GET https://myservice.search.windows.net/indexers('myindexer')/search.status?api-version=2024-07-01
Sample response
{
"status": "running",
"lastResult": {
"status": "success",
"errorMessage": null,
"startTime": "2014-11-26T03:37:18.853Z",
"endTime": "2014-11-26T03:37:19.012Z",
"errors": [],
"warnings": [],
"itemsProcessed": 11,
"itemsFailed": 0,
"initialTrackingState": null,
"finalTrackingState": null
},
"executionHistory": [
{
"status": "success",
"errorMessage": null,
"startTime": "2014-11-26T03:37:18.853Z",
"endTime": "2014-11-26T03:37:19.012Z",
"errors": [],
"warnings": [],
"itemsProcessed": 11,
"itemsFailed": 0,
"initialTrackingState": null,
"finalTrackingState": null
},
{
"status": "transientFailure",
"errorMessage": null,
"startTime": "2014-11-26T03:28:10.125Z",
"endTime": "2014-11-26T03:28:12.007Z",
"errors": [
{
"key": "",
"errorMessage": "Document key cannot be missing or empty.",
"statusCode": 400,
"name": null,
"details": null,
"documentationLink": null
},
{
"key": "document id 1",
"errorMessage": "Could not read the value of column 'foo' at index '0'.",
"statusCode": 400,
"name": "DocumentExtraction.AzureBlob.MyDataSource",
"details": "The file could not be parsed.",
"documentationLink": "https://go.microsoft.com/fwlink/?linkid=2049388"
}
],
"warnings": [
{
"key": "document id",
"message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob.",
"name": null,
"details": null,
"documentationLink": null
},
{
"key": "document id 2",
"message": "Document was truncated to 50000 characters.",
"name": "Enrichment.LanguageDetectionSkill.#4",
"details": "The skill did something that didn't break anything, nonetheless something we didn't expect happened, so it might be worth double checking.",
"documentationLink": "https://go.microsoft.com/fwlink/?linkid=2099692"
}
],
"itemsProcessed": 1,
"itemsFailed": 2,
"initialTrackingState": null,
"finalTrackingState": null
}
],
"limits": {
"maxRunTime": "PT22H",
"maxDocumentExtractionSize": 256000000,
"maxDocumentContentCharactersToExtract": 4000000
}
}
Definitions
Name | Description |
---|---|
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Indexer |
Represents the result of an individual indexer execution. |
Indexer |
Represents the status of an individual indexer execution. |
Indexer |
Represents the overall indexer status. |
Search |
Represents an item- or document-level indexing error. |
Search |
|
Search |
Represents the current status and execution history of an indexer. |
Search |
Represents an item-level warning. |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
IndexerExecutionResult
Represents the result of an individual indexer execution.
Name | Type | Description |
---|---|---|
endTime |
string |
The end time of this indexer execution, if the execution has already completed. |
errorMessage |
string |
The error message indicating the top-level error, if any. |
errors |
The item-level indexing errors. |
|
finalTrackingState |
string |
Change tracking state with which an indexer execution finished. |
initialTrackingState |
string |
Change tracking state with which an indexer execution started. |
itemsFailed |
integer |
The number of items that failed to be indexed during this indexer execution. |
itemsProcessed |
integer |
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 |
string |
The start time of this indexer execution. |
status |
The outcome of this indexer execution. |
|
warnings |
The item-level indexing warnings. |
IndexerExecutionStatus
Represents the status of an individual indexer execution.
Name | Type | Description |
---|---|---|
inProgress |
string |
Indexer execution is in progress. |
reset |
string |
Indexer has been reset. |
success |
string |
Indexer execution completed successfully. |
transientFailure |
string |
An indexer invocation has failed, but the failure may be transient. Indexer invocations will continue per schedule. |
IndexerStatus
Represents the overall indexer status.
Name | Type | Description |
---|---|---|
error |
string |
Indicates that the indexer experienced an error that cannot be corrected without human intervention. |
running |
string |
Indicates that the indexer is running normally. |
unknown |
string |
Indicates that the indexer is in an unknown state. |
SearchIndexerError
Represents an item- or document-level indexing error.
Name | Type | Description |
---|---|---|
details |
string |
Additional, verbose details about the error to assist in debugging the indexer. This may not be always available. |
documentationLink |
string |
A link to a troubleshooting guide for these classes of errors. This may not be always available. |
errorMessage |
string |
The message describing the error that occurred while processing the item. |
key |
string |
The key of the item for which indexing failed. |
name |
string |
The name of the source at which the error originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available. |
statusCode |
integer |
The status code indicating why the indexing operation failed. Possible values include: 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy. |
SearchIndexerLimits
Name | Type | Description |
---|---|---|
maxDocumentContentCharactersToExtract |
number |
The maximum number of characters that will be extracted from a document picked up for indexing. |
maxDocumentExtractionSize |
number |
The maximum size of a document, in bytes, which will be considered valid for indexing. |
maxRunTime |
string |
The maximum duration that the indexer is permitted to run for one execution. |
SearchIndexerStatus
Represents the current status and execution history of an indexer.
Name | Type | Description |
---|---|---|
executionHistory |
History of the recent indexer executions, sorted in reverse chronological order. |
|
lastResult |
The result of the most recent or an in-progress indexer execution. |
|
limits |
The execution limits for the indexer. |
|
status |
Overall indexer status. |
SearchIndexerWarning
Represents an item-level warning.
Name | Type | Description |
---|---|---|
details |
string |
Additional, verbose details about the warning to assist in debugging the indexer. This may not be always available. |
documentationLink |
string |
A link to a troubleshooting guide for these classes of warnings. This may not be always available. |
key |
string |
The key of the item which generated a warning. |
message |
string |
The message describing the warning that occurred while processing the item. |
name |
string |
The name of the source at which the warning originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available. |