You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Clarifying environment variable substitution in the ES configuration YAML
* Update code snippet
* Remove extraneous quotes from string example
* Incorporating review feedback
Values for environment variables must be simple strings. Use a comma-separated string to provide values that Elasticsearch will parse as a list. For example, Elasticsearch will split the following string into a list of values for the `${HOSTNAME}` environment variable:
83
+
84
+
[source,yaml]
85
+
----
86
+
export HOSTNAME=“host1,host2"
87
+
----
88
+
89
+
[discrete]
90
+
[[cluster-setting-types]]
91
+
=== Cluster and node setting types
92
+
93
+
Cluster and node settings can be categorized based on how they are configured:
94
+
95
+
[[dynamic-cluster-setting]]
96
+
Dynamic::
97
+
You can configure and update dynamic settings on a running cluster using the
0 commit comments