blob: f038a10775a0dde52779d8f4e68fa6b8fed05a4c [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#
BorislavG8bfc6cf2018-02-27 15:04:26 +000089#discovery.zen.ping.unicast.hosts: ["elasticsearch.{{.Values.nsPrefix}}"
Itay Hasside2da86d2017-08-24 12:54:42 +000090#$discovery.zen.ping.unicast.hosts
91#
BorislavG2631be82017-11-01 12:48:42 +020092# This setting tells Elasticsearch to not elect a master unless there are enough master-eligible nodes
Itay Hasside2da86d2017-08-24 12:54:42 +000093# available. Only then will an election take place.
94# Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1):
BorislavG2631be82017-11-01 12:48:42 +020095discovery.zen.minimum_master_nodes: 1
Itay Hasside2da86d2017-08-24 12:54:42 +000096#
97# For more information, consult the zen discovery module documentation.
98#
99# ---------------------------------- Gateway -----------------------------------
100#
101# Block initial recovery after a full cluster restart until N nodes are started:
102#
103#gateway.recover_after_nodes: 3
104#
105# For more information, consult the gateway module documentation.
106#
107# ---------------------------------- Various -----------------------------------
108#
109# Require explicit names when deleting indices:
110#
111#action.destructive_requires_name: true
112# Set a custom port for HTTP: If required, default is 9200-9300
113# This is used for REST APIs
114http.port: 9200
BorislavG2631be82017-11-01 12:48:42 +0200115# Port to bind for communication between nodes. Accepts a single value or a range.
Itay Hasside2da86d2017-08-24 12:54:42 +0000116# If a range is specified, the node will bind to the first available port in the range.
117# Defaults to 9300-9400.
BorislavG2631be82017-11-01 12:48:42 +0200118# More info:
Itay Hasside2da86d2017-08-24 12:54:42 +0000119transport.tcp.port: 9300
120
121xpack.graph.enabled: false
122#Set to false to disable X-Pack graph features.
123
124xpack.ml.enabled: false
125#Set to false to disable X-Pack machine learning features.
126
127xpack.monitoring.enabled: false
128#Set to false to disable X-Pack monitoring features.
129
Itay Hasside2da86d2017-08-24 12:54:42 +0000130xpack.security.enabled: false
131#Set to false to disable X-Pack security features.
132
133xpack.watcher.enabled: false
134#Set to false to disable Watcher.