blob: 8bbb01997ec72406358ec77b2936d83d76e3d68f [file] [log] [blame]
Itay Hasside2da86d2017-08-24 12:54:42 +00001# ======================== Elasticsearch Configuration =========================
2#
3# NOTE: Elasticsearch comes with reasonable defaults for most settings.
4# Before you set out to tweak and tune the configuration, make sure you
5# understand what are you trying to accomplish and the consequences.
6#
7# The primary way of configuring a node is via this file. This template lists
8# the most important settings you may want to configure for a production cluster.
9#
10# Please consult the documentation for further information on configuration options:
11# https://www.elastic.co/guide/en/elasticsearch/reference/index.html
12#
13# ---------------------------------- Cluster -----------------------------------
14#
15# Name of the Elasticsearch cluster.
BorislavG2631be82017-11-01 12:48:42 +020016# A node can only join a cluster when it shares its cluster.name with all the other nodes in the cluster.
17# The default name is elasticsearch, but you should change it to an appropriate name which describes the
18# purpose of the cluster.
Itay Hasside2da86d2017-08-24 12:54:42 +000019#
BorislavG2631be82017-11-01 12:48:42 +020020cluster.name: "onap-log"
Itay Hasside2da86d2017-08-24 12:54:42 +000021#
BorislavG2631be82017-11-01 12:48:42 +020022# The port that other nodes in the cluster should use when communicating with this node.
Itay Hasside2da86d2017-08-24 12:54:42 +000023# Required for Elasticsearch's nodes running on different cluster nodes.
24# More : https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-transport.html
BorislavG2631be82017-11-01 12:48:42 +020025#transport.publish_port:$transport.publish_port
Itay Hasside2da86d2017-08-24 12:54:42 +000026#
27# The host address to publish for nodes in the cluster to connect to.
28# Required for Elasticsearch's nodes running on different cluster nodes.
29# More : https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-transport.html
BorislavG2631be82017-11-01 12:48:42 +020030#transport.publish_host:$transport.publish_host
Itay Hasside2da86d2017-08-24 12:54:42 +000031#
32# ------------------------------------ Node ------------------------------------
33#
34# It is better to provide different meaningfull names fot different elastic nodes.
BorislavG2631be82017-11-01 12:48:42 +020035# By default, Elasticsearch will take the 7 first character of the randomly generated uuid used as the node id.
Itay Hasside2da86d2017-08-24 12:54:42 +000036# Note that the node id is persisted and does not change when a node restarts
37#
38#node.name: $node.name
39#
40# Add custom attributes to the node:
41#
42#node.attr.rack: r1
43#
44# ----------------------------------- Paths ------------------------------------
45#
46# The location of the data files of each index / shard allocated on the node. Can hold multiple locations separated by coma.
BorislavG2631be82017-11-01 12:48:42 +020047# In production, we should not keep this default to "/elasticsearch/data", as on upgrading Elasticsearch, directory structure
Itay Hasside2da86d2017-08-24 12:54:42 +000048# may change & can deal to data loss.
49path.data: /usr/share/elasticsearch/data
50#
BorislavG2631be82017-11-01 12:48:42 +020051# Elasticsearch's log files location. In production, we should not keep this default to "/elasticsearch/logs",
Itay Hasside2da86d2017-08-24 12:54:42 +000052# as on upgrading Elasticsearch, directory structure may change.
53path.logs: /usr/share/elasticsearch/logs
54#
55# ----------------------------------- Memory -----------------------------------
56#
BorislavG2631be82017-11-01 12:48:42 +020057# It is vitally important to the health of your node that none of the JVM is ever swapped out to disk.
Itay Hasside2da86d2017-08-24 12:54:42 +000058# Lock the memory on startup.
59#
BorislavG2631be82017-11-01 12:48:42 +020060bootstrap.memory_lock: false
Itay Hasside2da86d2017-08-24 12:54:42 +000061#
62# Make sure that the heap size is set to about half the memory available
63# on the system and that the owner of the process is allowed to use this
64# limit.
65#
66# Elasticsearch performs poorly when the system is swapping the memory.
67#
68# ---------------------------------- Network -----------------------------------
69#
70# Set the bind address to a specific IP (IPv4 or IPv6):
BorislavG2631be82017-11-01 12:48:42 +020071# In order to communicate and to form a cluster with nodes on other servers, your node will need to bind to a
72# non-loopback address.
Itay Hasside2da86d2017-08-24 12:54:42 +000073network.host: 0.0.0.0
74#
75# Set a custom port for HTTP: If required, default is 9200-9300
76#
77#http.port: $http.port
78#
79# For more information, consult the network module documentation.
80#
81# --------------------------------- Discovery ----------------------------------
82#
BorislavG2631be82017-11-01 12:48:42 +020083# Pass an initial list of hosts to perform discovery when new node is started
84# To form a cluster with nodes on other servers, you have to provide a seed list of other nodes in the cluster
85# that are likely to be live and contactable.
86# By default, Elasticsearch will bind to the available loopback addresses and will scan ports 9300 to 9305 to try
Itay Hasside2da86d2017-08-24 12:54:42 +000087# to connect to other nodes running on the same server.
88#
Itay Hasside2da86d2017-08-24 12:54:42 +000089#$discovery.zen.ping.unicast.hosts
90#
BorislavG2631be82017-11-01 12:48:42 +020091# This setting tells Elasticsearch to not elect a master unless there are enough master-eligible nodes
Itay Hasside2da86d2017-08-24 12:54:42 +000092# available. Only then will an election take place.
93# Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1):
BorislavG2631be82017-11-01 12:48:42 +020094discovery.zen.minimum_master_nodes: 1
Itay Hasside2da86d2017-08-24 12:54:42 +000095#
96# For more information, consult the zen discovery module documentation.
97#
98# ---------------------------------- Gateway -----------------------------------
99#
100# Block initial recovery after a full cluster restart until N nodes are started:
101#
102#gateway.recover_after_nodes: 3
103#
104# For more information, consult the gateway module documentation.
105#
106# ---------------------------------- Various -----------------------------------
107#
108# Require explicit names when deleting indices:
109#
110#action.destructive_requires_name: true
111# Set a custom port for HTTP: If required, default is 9200-9300
112# This is used for REST APIs
BorislavG5f3b6192018-03-25 18:12:38 +0300113http.port: {{.Values.service.externalPort}}
BorislavG2631be82017-11-01 12:48:42 +0200114# Port to bind for communication between nodes. Accepts a single value or a range.
Itay Hasside2da86d2017-08-24 12:54:42 +0000115# If a range is specified, the node will bind to the first available port in the range.
116# Defaults to 9300-9400.
BorislavG2631be82017-11-01 12:48:42 +0200117# More info:
BorislavG2cf26842018-04-08 17:50:07 +0300118transport.tcp.port: {{.Values.service.externalPort2}}
Itay Hasside2da86d2017-08-24 12:54:42 +0000119
120xpack.graph.enabled: false
121#Set to false to disable X-Pack graph features.
122
123xpack.ml.enabled: false
124#Set to false to disable X-Pack machine learning features.
125
126xpack.monitoring.enabled: false
127#Set to false to disable X-Pack monitoring features.
128
Itay Hasside2da86d2017-08-24 12:54:42 +0000129xpack.security.enabled: false
130#Set to false to disable X-Pack security features.
131
132xpack.watcher.enabled: false
133#Set to false to disable Watcher.