删除关闭 API
编辑删除关闭 API编辑
此功能旨在供 Elasticsearch 服务、Elastic Cloud Enterprise 和 Elastic Cloud on Kubernetes 间接使用。不支持直接使用。
取消关闭准备或清除关闭请求,以便节点可以恢复正常操作。
请求编辑
DELETE _nodes/<node-id>/shutdown
路径参数编辑
-
<node-id>
- (可选,字符串) 您准备关闭的节点的 ID。
查询参数编辑
示例编辑
准备重新启动节点
response = client.shutdown.put_node( node_id: 'USpTGYaBSIKbgSUJR2Z9lg', body: { type: 'restart', reason: 'Demonstrating how the node shutdown API works' } ) puts response
PUT /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown { "type": "restart", "reason": "Demonstrating how the node shutdown API works" }
重新启动后取消关闭准备或清除关闭请求
response = client.shutdown.delete_node( node_id: 'USpTGYaBSIKbgSUJR2Z9lg' ) puts response
DELETE /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown
返回以下响应
{ "acknowledged": true }