Batch start or resume reindexing
Technical Preview
Start or resume multiple reindexing tasks in one request. Additionally, reindexing tasks started or resumed via the batch endpoint will be placed on a queue and run one-by-one, which ensures that minimal cluster resources are consumed over time.
Body
Required
-
indexNames
array[string] Required The list of index names to be reindexed. The order of the indices determines the order that the reindex tasks are run.
POST
/api/upgrade_assistant/reindex/batch
curl \
--request POST 'https://localhost:5601/api/upgrade_assistant/reindex/batch' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"indexNames":["string"]}'
Request examples
{
"indexNames": [
"string"
]
}
Response examples (200)
{
"enqueued": [
{
"indexName": "index1",
"newIndexName": "reindexed-v8-index1",
"status": 3,
"lastCompletedStep": 0,
"locked": null,
"reindexTaskId": null,
"reindexTaskPercComplete": null,
"errorMessage": null,
"runningReindexCount": null,
"reindexOptions": {
"queueSettings": {
"queuedAt": 1583406985489
}
}
}
],
"errors": [
{
"indexName": "index2",
"message": "Something went wrong!"
}
]
}