Get desired nodes API
Get desired nodes API
This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.
New API reference
For the most up-to-date API details, refer to Cluster APIs.
Get desired nodes.
Request
resp = client.perform_request(
"GET",
"/_internal/desired_nodes/_latest",
)
print(resp)
const response = await client.transport.request({
method: "GET",
path: "/_internal/desired_nodes/_latest",
});
console.log(response);
GET /_internal/desired_nodes/_latest
Description
This API gets the latest desired nodes.
Examples
This example gets the latest desired nodes.
resp = client.perform_request(
"GET",
"/_internal/desired_nodes/_latest",
)
print(resp)
const response = await client.transport.request({
method: "GET",
path: "/_internal/desired_nodes/_latest",
});
console.log(response);
GET /_internal/desired_nodes/_latest
The API returns the following result:
{
"history_id": <history_id>,
"version": <version>,
"nodes": [
{
"settings": <node_settings>,
"processors": <node_processors>,
"memory": "<node_memory>",
"storage": "<node_storage>"
}
]
}
当前内容版权归 elasticsearch 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 elasticsearch .