-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Restart API: Allow to restart one or more nodes #155
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
Restart API: Allow to restart one or more nodes, closed by ebded19. |
This feature does not seem to be documented anywhere. |
@kimchy I tried the _restart API but without using a service wrapper and I get the following message: $ curl -XPOST 'http://localhost:9200/_cluster/nodes/_local/_restart' {"error":"ElasticSearchIllegalStateException[restart is disabled (for now) ....]","status":500} Does it mean that we can only use it with the service wrapper? Thanks for your help cc @KimStebel |
See #265 |
The API is not supported anymore. Info: <elastic#155>
The API is not supported anymore. Info: <elastic#155>
If you are using a compatible EC2 or S3 service, they might be using an older API to sign the requests. You can set your compatible signer API using `cloud.aws.signer` (or `cloud.aws.ec2.signer` and `cloud.aws.s3.signer`) with the right signer to use. Defaults to `AWS4SignerType`. Supported today (time when this commit is done): * `QueryStringSignerType` * `AWS3SignerType` * `AWS4SignerType` * `NoOpSignerType` Closes #155. (cherry picked from commit 33b18b4) (cherry picked from commit 9809af5)
New paragraph Some abbreviation to 1st paragraph More concise phrasing Rename heading Remove repeated "Now," from Hello World Person is also a document Rephrasing of last paragraph in Hello, World Move installation to being above Hello, world Accidentally left out moving code backticks. Fixed Closes elastic#155
The REST API follows the same rules as the shutdown API, simply replace shutdown with restart:
/_cluster/nodes/{nodeId}/_restart
, where{nodeId}
can be a list of node ids,_all
, or_local
.With the new service wrapper, if a restart is requested and the process is running using the service wrapper, a full restart of the JVM will be issued.
The text was updated successfully, but these errors were encountered: