Removes a node from the shutdown list Added in 7.13.0

DELETE /_nodes/{node_id}/shutdown

Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.

Path parameters

  • node_id string Required

    The node id of node to be removed from the shutdown state

Query parameters

  • 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.

    Values are nanos, micros, ms, s, m, h, or d.

  • timeout string

    Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.

    Values are nanos, micros, ms, s, m, h, or d.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • acknowledged boolean Required

      For a successful response, this value is always true. On failure, an exception is returned instead.

DELETE /_nodes/{node_id}/shutdown
curl \
 -X DELETE http://api.example.com/_nodes/{node_id}/shutdown
Response examples (200)
{
  "acknowledged": true
}