Skip to content
This repository was archived by the owner on Oct 14, 2021. It is now read-only.

Commit 39687ef

Browse files
committed
Downgrade config to 2.4.1 (cosmetic)
1 parent 199aeed commit 39687ef

File tree

1 file changed

+21
-18
lines changed

1 file changed

+21
-18
lines changed

deploy/elasticsearch.yml

+21-18
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,42 @@
88
# the most important settings you may want to configure for a production cluster.
99
#
1010
# Please see the documentation for further information on configuration options:
11-
# <https://www.elastic.co/guide/en/elasticsearch/reference/5.0/settings.html>
11+
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/setup-configuration.html>
1212
#
1313
# ---------------------------------- Cluster -----------------------------------
1414
#
1515
# Use a descriptive name for your cluster:
1616
#
17-
#cluster.name: my-application
17+
# cluster.name: my-application
1818
#
1919
# ------------------------------------ Node ------------------------------------
2020
#
2121
# Use a descriptive name for the node:
2222
#
23-
#node.name: node-1
23+
# node.name: node-1
2424
#
2525
# Add custom attributes to the node:
2626
#
27-
#node.attr.rack: r1
27+
# node.rack: r1
2828
#
2929
# ----------------------------------- Paths ------------------------------------
3030
#
3131
# Path to directory where to store the data (separate multiple locations by comma):
3232
#
33-
#path.data: /path/to/data
33+
# path.data: /path/to/data
3434
#
3535
# Path to log files:
3636
#
37-
#path.logs: /path/to/logs
37+
# path.logs: /path/to/logs
3838
#
3939
# ----------------------------------- Memory -----------------------------------
4040
#
4141
# Lock the memory on startup:
4242
#
43-
#bootstrap.memory_lock: true
43+
# bootstrap.memory_lock: true
4444
#
45-
# Make sure that the heap size is set to about half the memory available
46-
# on the system and that the owner of the process is allowed to use this
47-
# limit.
45+
# Make sure that the `ES_HEAP_SIZE` environment variable is set to about half the memory
46+
# available on the system and that the owner of the process is allowed to use this limit.
4847
#
4948
# Elasticsearch performs poorly when the system is swapping the memory.
5049
#
@@ -56,36 +55,40 @@ network.host: 127.0.0.1
5655
#
5756
# Set a custom port for HTTP:
5857
#
59-
#http.port: 9200
58+
# http.port: 9200
6059
#
6160
# For more information, see the documentation at:
62-
# <https://www.elastic.co/guide/en/elasticsearch/reference/5.0/modules-network.html>
61+
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-network.html>
6362
#
6463
# --------------------------------- Discovery ----------------------------------
6564
#
6665
# Pass an initial list of hosts to perform discovery when new node is started:
6766
# The default list of hosts is ["127.0.0.1", "[::1]"]
6867
#
69-
#discovery.zen.ping.unicast.hosts: ["host1", "host2"]
68+
# discovery.zen.ping.unicast.hosts: ["host1", "host2"]
7069
#
7170
# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1):
7271
#
73-
#discovery.zen.minimum_master_nodes: 3
72+
# discovery.zen.minimum_master_nodes: 3
7473
#
7574
# For more information, see the documentation at:
76-
# <https://www.elastic.co/guide/en/elasticsearch/reference/5.0/modules-discovery-zen.html>
75+
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-discovery.html>
7776
#
7877
# ---------------------------------- Gateway -----------------------------------
7978
#
8079
# Block initial recovery after a full cluster restart until N nodes are started:
8180
#
82-
#gateway.recover_after_nodes: 3
81+
# gateway.recover_after_nodes: 3
8382
#
8483
# For more information, see the documentation at:
85-
# <https://www.elastic.co/guide/en/elasticsearch/reference/5.0/modules-gateway.html>
84+
# <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-gateway.html>
8685
#
8786
# ---------------------------------- Various -----------------------------------
8887
#
88+
# Disable starting multiple nodes on a single system:
89+
#
90+
# node.max_local_storage_nodes: 1
91+
#
8992
# Require explicit names when deleting indices:
9093
#
91-
#action.destructive_requires_name: true
94+
# action.destructive_requires_name: true

0 commit comments

Comments
 (0)