-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Shutdown API: allow to shutdown node(s) or the whole cluster #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Shutdown API: allow to shutdown node(s) or the whole, closed by d8ef200. |
IanvsPoplicola
pushed a commit
to IanvsPoplicola/elasticsearch
that referenced
this issue
Mar 21, 2017
Update Coordination.md claiming issue 12620
ywelsch
pushed a commit
to ywelsch/elasticsearch
that referenced
this issue
Jun 4, 2018
Provides an implemenation of Legislator.Transport that can be hooked to the TransportService
henningandersen
pushed a commit
to henningandersen/elasticsearch
that referenced
this issue
Jun 4, 2020
With this commit we remove challenge `generate-historic-data`. It serves no purpose anymore and is also not connected to any other challenge (e.g. for follow-up querying).
cbuescher
pushed a commit
to cbuescher/elasticsearch
that referenced
this issue
Oct 2, 2023
With this commit we request memory compaction after dropping caches in order to avoid increasing memory fragmentation when running multiple benchmarks. Relates elastic#64
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add a shutdown API allowing to shutdown a specific node, several nodes, or the whole cluster. REST Api to shutdown all cluster is
/_cluster/nodes/_shutdown
, and for specific node or nodes is/_cluster/nodes/{nodeId}/_shutdown
(nodeId
is a comma separated node ids).By default, the node will shutdown after a
1s
delay. It can be configured by passingdelay
parameter.The API itself can be disabled by setting
action.admin.cluster.node.shutdown.disabled
setting totrue
.The text was updated successfully, but these errors were encountered: