This documentation contains work-in-progress information for future Elastic Stack and Cloud releases. Use the version selector to view supported release docs. It also contains some Elastic Cloud serverless information. Check out our serverless docs for more details.
Batch reindex queue API
editBatch reindex queue API
editThe underlying Upgrade Assistant concepts are stable, but the APIs for managing Upgrade Assistant are experimental.
Check the current reindex batch queue.
Request
editGET /api/upgrade_assistant/reindex/batch/queue
Response code
edit-
200
- Indicates a successful call.
Example
editThe API returns the following:
{ "queue": [ { "indexName": "index1", "newIndexName": "reindexed-v8-index2", "status": 3, "lastCompletedStep": 0, "locked": null, "reindexTaskId": null, "reindexTaskPercComplete": null, "errorMessage": null, "runningReindexCount": null, "reindexOptions": { "queueSettings": { "queuedAt": 1583406985489 } } }, { "indexName": "index2", "newIndexName": "reindexed-v8-index2", "status": 3, "lastCompletedStep": 0, "locked": null, "reindexTaskId": null, "reindexTaskPercComplete": null, "errorMessage": null, "runningReindexCount": null, "reindexOptions": { "queueSettings": { "queuedAt": 1583406987334 } } } ] }