WARNING: Version 2.1 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Cluster Update Settings
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Cluster Update Settings
editAllows to update cluster wide specific settings. Settings updated can either be persistent (applied cross restarts) or transient (will not survive a full cluster restart). Here is an example:
curl -XPUT localhost:9200/_cluster/settings -d '{ "persistent" : { "discovery.zen.minimum_master_nodes" : 2 } }'
Or:
curl -XPUT localhost:9200/_cluster/settings -d '{ "transient" : { "discovery.zen.minimum_master_nodes" : 2 } }'
The cluster responds with the settings updated. So the response for the last example will be:
{ "persistent" : {}, "transient" : { "discovery.zen.minimum_master_nodes" : "2" } }'
Cluster wide settings can be returned using:
curl -XGET localhost:9200/_cluster/settings
A list of dynamically updatable settings can be found in the Modules documentation.