IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Unfreeze index API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Unfreeze index API
editUnfreezes an index.
Request
editPOST /<index>/_unfreeze
Description
editWhen a frozen index is unfrozen, the index goes through the normal recovery process and becomes writeable again. See Frozen indices and Freeze index.
Path Parameters
edit-
index
(required) - (string) Identifier for the index
Examples
editThe following example freezes and unfreezes an index:
POST /my_index/_freeze POST /my_index/_unfreeze
Freezing an index will close the index and reopen it within the same API call. This causes primaries to not be allocated for a short amount of time and causes the cluster to go red until the primaries are allocated again. This limitation might be removed in the future.
Was this helpful?
Thank you for your feedback.