Search + K

Command Palette

Search for a command to run...

Sign In

Get the dangling indices

GET /_dangling
Copy endpoint

If Elasticsearch encounters index data that is absent from the current cluster state, those indices are considered to be dangling. For example, this can happen if you delete more than cluster.indices.tombstones.size indices while an Elasticsearch node is offline.

Use this API to list dangling indices, which you can then import or delete.

Required authorization

  • Cluster privileges: manage

Responses

200 application/json
{ dangling_indices: DanglingIndicesListDanglingIndicesDanglingIndex
interface DanglingIndicesListDanglingIndicesDanglingIndex {
index_name: string;
index_uuid: string;
creation_date_millis: TypesEpochTimeUnitMillis;
node_ids: TypesIds;
}
[]
; }