你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Indexers - Get Status

返回索引器的当前状态和执行历史记录。

GET {endpoint}/indexers('{indexerName}')/search.status?api-version=2024-05-01-preview

URI 参数

名称 必需 类型 说明
endpoint
path True

string

搜索服务的终结点 URL。

indexerName
path True

string

要检索其状态的索引器的名称。

api-version
query True

string

客户端 API 版本。

请求头

名称 必需 类型 说明
x-ms-client-request-id

string

uuid

随请求一起发送以帮助调试的跟踪 ID。

响应

名称 类型 说明
200 OK

SearchIndexerStatus

Other Status Codes

ErrorResponse

错误响应。

示例

SearchServiceGetIndexerStatus

示例请求

GET https://myservice.search.windows.net/indexers('myindexer')/search.status?api-version=2024-05-01-preview

示例响应

{
  "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
  }
}

定义

名称 说明
ErrorAdditionalInfo

资源管理错误附加信息。

ErrorDetail

错误详细信息。

ErrorResponse

错误响应

IndexerCurrentState

表示定义和指示索引器当前执行的所有状态。

IndexerExecutionResult

表示单个索引器执行的结果。

IndexerExecutionStatus

表示单个索引器执行的状态。

IndexerExecutionStatusDetail

详细说明单个索引器执行的状态。

IndexerStatus

表示总体的索引器状态。

IndexingMode

表示索引器正在执行的模式。

SearchIndexerError

表示项级别或文档级别索引错误。

SearchIndexerLimits
SearchIndexerStatus

表示索引器的当前状态和执行历史记录。

SearchIndexerWarning

表示项级警告。

ErrorAdditionalInfo

资源管理错误附加信息。

名称 类型 说明
info

object

其他信息。

type

string

其他信息类型。

ErrorDetail

错误详细信息。

名称 类型 说明
additionalInfo

ErrorAdditionalInfo[]

错误附加信息。

code

string

错误代码。

details

ErrorDetail[]

错误详细信息。

message

string

错误消息。

target

string

错误目标。

ErrorResponse

错误响应

名称 类型 说明
error

ErrorDetail

错误对象。

IndexerCurrentState

表示定义和指示索引器当前执行的所有状态。

名称 类型 说明
allDocsFinalChangeTrackingState

string

在数据源中的所有文档上编制索引完成时更改跟踪状态值。

allDocsInitialChangeTrackingState

string

对数据源中的所有文档开始编制索引时使用的更改跟踪状态。

mode

IndexingMode

索引器运行的模式。

resetDatasourceDocumentIds

string[]

已重置的数据源文档 ID 的列表。 数据源文档 ID 是数据源中数据的唯一标识符。 索引器将优先选择重新引入这些 ID。

resetDocsFinalChangeTrackingState

string

在选择时索引完成时更改跟踪状态值,重置数据源中的文档。

resetDocsInitialChangeTrackingState

string

在选择时开始索引时使用的更改跟踪状态,重置数据源中的文档。

resetDocumentKeys

string[]

已重置的文档键列表。 文档键是搜索索引中数据的文档的唯一标识符。 索引器将优先选择重新引入这些键。

IndexerExecutionResult

表示单个索引器执行的结果。

名称 类型 说明
currentState

IndexerCurrentState

定义和指示索引器当前执行的所有状态。

endTime

string

此索引器执行的结束时间(如果执行已完成)。

errorMessage

string

指示顶级错误的错误消息(如果有)。

errors

SearchIndexerError[]

项级索引错误。

finalTrackingState

string

更改索引器执行完成的跟踪状态。

initialTrackingState

string

更改索引器执行开始的跟踪状态。

itemsFailed

integer

在此索引器执行过程中未能编制索引的项数。

itemsProcessed

integer

在此索引器执行期间处理的项数。 这包括已成功处理的项和尝试索引但失败的项。

startTime

string

此索引器执行的开始时间。

status

IndexerExecutionStatus

此索引器执行的结果。

statusDetail

IndexerExecutionStatusDetail

此索引器执行的结果。

warnings

SearchIndexerWarning[]

项级索引警告。

IndexerExecutionStatus

表示单个索引器执行的状态。

名称 类型 说明
inProgress

string

索引器执行正在进行中。

reset

string

索引器已重置。

success

string

索引器已成功完成执行。

transientFailure

string

索引器调用已失败,但失败可能是暂时的。 索引器调用将按计划继续进行。

IndexerExecutionStatusDetail

详细说明单个索引器执行的状态。

名称 类型 说明
resetDocs

string

指示发生的重置是用于对 ResetDocs 的调用。

IndexerStatus

表示总体的索引器状态。

名称 类型 说明
error

string

指示索引器遇到错误,无法进行人工干预即可更正。

running

string

指示索引器正常运行。

unknown

string

指示索引器处于未知状态。

IndexingMode

表示索引器正在执行的模式。

名称 类型 说明
indexingAllDocs

string

索引器正在为数据源中的所有文档编制索引。

indexingResetDocs

string

索引器是选择性索引,重置数据源中的文档。 要编制索引的文档根据索引器状态定义。

SearchIndexerError

表示项级别或文档级别索引错误。

名称 类型 说明
details

string

有关错误的其他详细详细信息,以帮助调试索引器。 这可能并非始终可用。

documentationLink

string

指向这些错误类别的故障排除指南的链接。 这可能并非始终可用。

errorMessage

string

描述处理项时发生的错误的消息。

key

string

索引失败的项的键。

name

string

错误来源的名称。 例如,这可能引用附加技能集中的特定技能。 这可能并非始终可用。

statusCode

integer

指示索引操作失败的原因的状态代码。 可能的值包括:400 表示格式错误的输入文档,404 表示找不到文档,409 表示版本冲突,422 表示索引暂时不可用,或 503(如果服务太忙)。

SearchIndexerLimits

名称 类型 说明
maxDocumentContentCharactersToExtract

number

将从选取的文档中提取的最大字符数,用于编制索引。

maxDocumentExtractionSize

number

文档的最大大小(以字节为单位),将被视为对索引有效。

maxRunTime

string

允许索引器为一次执行运行的最大持续时间。

SearchIndexerStatus

表示索引器的当前状态和执行历史记录。

名称 类型 说明
executionHistory

IndexerExecutionResult[]

最近索引器执行的历史记录,按倒序按时间顺序排序。

lastResult

IndexerExecutionResult

最近或正在进行的索引器执行的结果。

limits

SearchIndexerLimits

索引器的执行限制。

status

IndexerStatus

总体索引器状态。

SearchIndexerWarning

表示项级警告。

名称 类型 说明
details

string

有关警告的其他详细详细信息,以帮助调试索引器。 这可能并非始终可用。

documentationLink

string

指向这些警告类别的故障排除指南的链接。 这可能并非始终可用。

key

string

生成警告的项的键。

message

string

描述处理项时发生的警告的消息。

name

string

发出警告的源的名称。 例如,这可能引用附加技能集中的特定技能。 这可能并非始终可用。