Get the pending cluster tasks
Get information about cluster-level changes (such as create index, update mapping, allocate or fail shard) that have not yet taken effect.
NOTE: This API returns a list of any pending updates to the cluster state. These are distinct from the tasks reported by the task management API which include periodic tasks and tasks initiated by the user, such as node stats, search queries, or create index requests. However, if a user-initiated task such as a create index command causes a cluster state update, the activity of this task might be reported by both task api and pending cluster tasks API.
Query parameters
-
local boolean
If
true
, the request retrieves information from the local node only. Iffalse
, information is retrieved from the master node. -
master_timeout string
Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.
curl \
-X GET http://api.example.com/_cluster/pending_tasks
{
"tasks": [
{
"executing": true,
"insert_order": 42.0,
"priority": "string",
"source": "string",
"time_in_queue": "string",
"": 42.0
}
]
}