123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- [role="xpack"]
- [[data-stream-reindex-status-api]]
- === Reindex data stream status API
- ++++
- <titleabbrev>Reindex data stream status</titleabbrev>
- ++++
- .New API reference
- [sidebar]
- --
- For the most up-to-date API details, refer to {api-es}/group/endpoint-migration[Migration APIs].
- --
- include::{es-ref-dir}/migration/apis/shared-migration-apis-tip.asciidoc[]
- Obtains the current status of a reindex task for the requested data stream. This status is
- available while the reindex task is running and for 24 hours after completion of the task,
- whether it succeeds or fails. If the task is cancelled, the status is no longer available.
- If the task fails, the exception will be listed within the status.
- ///////////////////////////////////////////////////////////
- [source,console]
- ------------------------------------------------------
- POST _migration/reindex
- {
- "source": {
- "index": "my-data-stream"
- },
- "mode": "upgrade"
- }
- ------------------------------------------------------
- // TESTSETUP
- // TEST[setup:my_data_stream]
- [source,console]
- ------------------------------------------------------
- POST /_migration/reindex/my-data-stream/_cancel
- DELETE _data_stream/my-data-stream
- DELETE _index_template/my-data-stream-template
- ------------------------------------------------------
- // TEARDOWN
- ///////////////////////////////////////////////////////////
- [[data-stream-reindex-status-api-request]]
- ==== {api-request-title}
- `GET /_migration/reindex/<data-stream>/_status`
- [[data-stream-reindex-status-prereqs]]
- ==== {api-prereq-title}
- * If the {es} {security-features} are enabled, you must have the `manage`
- <<privileges-list-indices,index privilege>> for the data stream.
- [[data-stream-reindex-status-path-params]]
- ==== {api-path-parms-title}
- `<data-stream>`::
- (Required, string)
- Name of data stream to get status for. The reindex task for the
- data stream should be currently running or have been completed in the last 24 hours.
- [role="child_attributes"]
- [[data-stream-reindex-status-response-body]]
- ==== {api-response-body-title}
- `start_time`::
- (Optional, <<time-units,time value>>) The time when the reindex task started.
- `start_time_millis`::
- (integer) The time when the reindex task started, in milliseconds since the epoch.
- `complete`::
- (boolean) `false` if the reindex task is still running, and `true` if the task has completed with success or failure.
- `total_indices_in_data_stream`::
- (integer) The total number of backing indices in the data stream, including the write index.
- `total_indices_requiring_upgrade`::
- (integer) The number of backing indices that need to be upgraded. These will consist of the indices which have an
- older version and are not read-only.
- `successes`::
- (integer) The number of backing indices which have already been successfully upgraded.
- `in_progress`::
- (array of objects) Information on the backing indices which are currently being reindexed.
- +
- .Properties of objects in `in_progress`
- [%collapsible%open]
- =====
- `index`::
- (string) The name of the source backing index.
- `total_doc_count`::
- (integer) The number of documents in the source backing index.
- `reindexed_doc_count`::
- (integer) The number of documents which have already been added to the destination backing index.
- =====
- `pending`::
- (integer) The number of backing indices which still need to be upgraded and have not yet been started.
- `errors`::
- (array of objects) Information on any errors which have occurred.
- +
- .Properties of objects in `errors`
- [%collapsible%open]
- =====
- `index`::
- (string) The name of a backing index which has had an error during reindex.
- `message`::
- (string) Description of the error.
- =====
- `exceptions`::
- (Optional, string)
- Exception message for a reindex failure if the failure could not be tied to a particular index.
- [[data-stream-reindex-status-example]]
- ==== {api-examples-title}
- [source,console]
- ----
- GET _migration/reindex/my-data-stream/_status
- ----
- The following is a typical response:
- [source,console-result]
- ----
- {
- "start_time_millis": 1737676174349,
- "complete": false,
- "total_indices_in_data_stream": 4,
- "total_indices_requiring_upgrade": 3,
- "successes": 1,
- "in_progress": [
- {
- "index": ".ds-my-data-stream-2025.01.23-000002",
- "total_doc_count": 10000000,
- "reindexed_doc_count": 1000
- }
- ],
- "pending": 1,
- "errors": []
- }
- ----
- // TEST[skip:cannot easily clean up reindex task between tests]
- For a more in-depth example showing the usage of this API along with the <<data-stream-reindex-api,reindex>> and <<data-stream-reindex-cancel-api,cancel>> APIs,
- see this <<reindex-data-stream-api-example,example>>.
|