Class PutNodeRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.shutdown.PutNodeRequest
- All Implemented Interfaces:
JsonpSerializable
Adds a node to be shut down. Designed for indirect use by ECE/ESS and ECK.
Direct use is not supported.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final JsonpDeserializer<PutNodeRequest>
Json deserializer forPutNodeRequest
static final Endpoint<PutNodeRequest,
PutNodeResponse, ErrorResponse> Endpoint "shutdown.put_node
". -
Method Summary
Modifier and TypeMethodDescriptionfinal String
Only valid if type is restart.final TimeUnit
Period to wait for a connection to the master node.final String
nodeId()
Required - The node id of node to be shut downstatic PutNodeRequest
final String
reason()
Required - A human-readable reason that the node is being shut down.void
serialize
(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) Serialize this object to JSON.protected void
serializeInternal
(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) protected static void
final String
Only valid if type is replace.final TimeUnit
timeout()
Period to wait for a response.final Type
type()
Required - Valid values are restart, remove, or replace.Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toString
-
Field Details
-
_DESERIALIZER
Json deserializer forPutNodeRequest
-
_ENDPOINT
Endpoint "shutdown.put_node
".
-
-
Method Details
-
of
-
allocationDelay
Only valid if type is restart. Controls how long Elasticsearch will wait for the node to restart and join the cluster before reassigning its shards to other nodes. This works the same as delaying allocation with the index.unassigned.node_left.delayed_timeout setting. If you specify both a restart allocation delay and an index-level allocation delay, the longer of the two is used.API name:
allocation_delay
-
masterTimeout
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.API name:
master_timeout
-
nodeId
Required - The node id of node to be shut downAPI name:
node_id
-
reason
Required - A human-readable reason that the node is being shut down. This field provides information for other cluster operators; it does not affect the shut down process.API name:
reason
-
targetNodeName
Only valid if type is replace. Specifies the name of the node that is replacing the node being shut down. Shards from the shut down node are only allowed to be allocated to the target node, and no other data will be allocated to the target node. During relocation of data certain allocation rules are ignored, such as disk watermarks or user attribute filtering rules.API name:
target_node_name
-
timeout
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.API name:
timeout
-
type
Required - Valid values are restart, remove, or replace. Use restart when you need to temporarily shut down a node to perform an upgrade, make configuration changes, or perform other maintenance. Because the node is expected to rejoin the cluster, data is not migrated off of the node. Use remove when you need to permanently remove a node from the cluster. The node is not marked ready for shutdown until data is migrated off of the node Use replace to do a 1:1 replacement of a node with another node. Certain allocation decisions will be ignored (such as disk watermarks) in the interest of true replacement of the source node with the target node. During a replace-type shutdown, rollover and index creation may result in unassigned shards, and shrink may fail until the replacement is complete.API name:
type
-
serialize
Serialize this object to JSON.- Specified by:
serialize
in interfaceJsonpSerializable
-
serializeInternal
-
setupPutNodeRequestDeserializer
protected static void setupPutNodeRequestDeserializer(ObjectDeserializer<PutNodeRequest.Builder> op)
-