Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / devicemanager / impl / src / main / resources / elasticsearch / elasticsearch.yml
1 # ======================== 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 see the documentation for further information on configuration options:
11 # <http://www.elastic.co/guide/en/elasticsearch/reference/current/setup-configuration.html>
12 #
13 # ---------------------------------- Cluster -----------------------------------
14 #
15 # Use a descriptive name for your cluster:
16 #
17 cluster.name: $clustername
18 #
19 # ------------------------------------ Node ------------------------------------
20 #
21 # Use a descriptive name for the node:
22 #
23 node.name: $nodename
24 #
25 # Add custom attributes to the node:
26 #
27 # node.rack: r1
28 #
29 # ----------------------------------- Paths ------------------------------------
30 #
31 # Path to directory where to store the data (separate multiple locations by comma):
32 #
33 # path.data: /path/to/data
34 path.data: etc
35 path.home: data
36 path.plugins: etc/elasticsearch-plugins
37 #
38 # Path to log files:
39 #
40 # path.logs: /path/to/logs
41 #
42 # ----------------------------------- Memory -----------------------------------
43 #
44 # Lock the memory on startup:
45 #
46 # bootstrap.mlockall: true
47 #
48 # Make sure that the `ES_HEAP_SIZE` environment variable is set to about half the memory
49 # available on the system and that the owner of the process is allowed to use this limit.
50 #
51 # Elasticsearch performs poorly when the system is swapping the memory.
52 #
53 # ---------------------------------- Network -----------------------------------
54 #
55 # Set the bind address to a specific IP (IPv4 or IPv6):
56 #
57 # network.host: 192.168.0.1
58 network.bind_host: 0.0.0.0
59 network.publish_host: $hostname
60 #
61 # Set a custom port for HTTP:
62 #
63 # http.port: 9200
64 #
65 # For more information, see the documentation at:
66 # <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-network.html>
67 #
68 # --------------------------------- Discovery ----------------------------------
69 #
70 # Pass an initial list of hosts to perform discovery when new node is started:
71 # The default list of hosts is ["127.0.0.1", "[::1]"]
72 #
73 # discovery.zen.ping.unicast.hosts: ["host1", "host2"]
74 #
75 # Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1):
76 #
77 # discovery.zen.minimum_master_nodes: 3
78 #
79 # For more information, see the documentation at:
80 # <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-discovery.html>
81 #
82 # ---------------------------------- Gateway -----------------------------------
83 #
84 # Block initial recovery after a full cluster restart until N nodes are started:
85 #
86 # gateway.recover_after_nodes: 3
87 #
88 # For more information, see the documentation at:
89 # <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-gateway.html>
90 #
91 # ---------------------------------- Various -----------------------------------
92 #
93 # Disable starting multiple nodes on a single system:
94 #
95 # node.max_local_storage_nodes: 1
96 #
97 # Require explicit names when deleting indices:
98 #
99 # action.destructive_requires_name: true
100
101 # Required for Kibana 4.x support
102 index.max_result_window: 2147483647
103 #transport.tcp.port: 9301