Advertisement
Guest User

elasticsearch.yml

a guest
Jun 8th, 2014
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.00 KB | None | 0 0
  1. ##################### ElasticSearch Configuration Example #####################
  2.  
  3. # This file contains an overview of various configuration settings,
  4. # targeted at operations staff. Application developers should
  5. # consult the guide at <http://elasticsearch.org/guide>.
  6. #
  7. # The installation procedure is covered at
  8. # <http://elasticsearch.org/guide/reference/setup/installation.html>.
  9. #
  10. # ElasticSearch comes with reasonable defaults for most settings,
  11. # so you can try it out without bothering with configuration.
  12. #
  13. # Most of the time, these defaults are just fine for running a production
  14. # cluster. If you're fine-tuning your cluster, or wondering about the
  15. # effect of certain configuration option, please _do ask_ on the
  16. # mailing list or IRC channel [http://elasticsearch.org/community].
  17.  
  18. # Any element in the configuration can be replaced with environment variables
  19. # by placing them in ${...} notation. For example:
  20. #
  21. # node.rack: ${RACK_ENV_VAR}
  22.  
  23. # See <http://elasticsearch.org/guide/reference/setup/configuration.html>
  24. # for information on supported formats and syntax for the configuration file.
  25.  
  26.  
  27. ################################### Cluster ###################################
  28.  
  29. # Cluster name identifies your cluster for auto-discovery. If you're running
  30. # multiple clusters on the same network, make sure you're using unique names.
  31. #
  32. cluster.name: es-cluster
  33.  
  34.  
  35. #################################### Node #####################################
  36.  
  37. # Node names are generated dynamically on startup, so you're relieved
  38. # from configuring them manually. You can tie this node to a specific name:
  39. #
  40. node.name: "logstash"
  41.  
  42. # Every node can be configured to allow or deny being eligible as the master,
  43. # and to allow or deny to store the data.
  44. #
  45. # Allow this node to be eligible as a master node (enabled by default):
  46. #
  47. # Allow this node to store data (enabled by default):
  48. #
  49. # node.data: true
  50.  
  51. # You can exploit these settings to design advanced cluster topologies.
  52. #
  53. # 1. You want this node to never become a master node, only to hold data.
  54. # This will be the "workhorse" of your cluster.
  55. #
  56. # node.master: false
  57. # node.data: true
  58. #
  59. # 2. You want this node to only serve as a master: to not store any data and
  60. # to have free resources. This will be the "coordinator" of your cluster.
  61. #
  62. # node.master: true
  63. # node.data: false
  64. #
  65. # 3. You want this node to be neither master nor data node, but
  66. # to act as a "search load balancer" (fetching data from nodes,
  67. # aggregating results, etc.)
  68. #
  69. # node.master: false
  70. # node.data: false
  71.  
  72. # Use the Cluster Health API [http://localhost:9200/_cluster/health], the
  73. # Node Info API [http://localhost:9200/_cluster/nodes] or GUI tools
  74. # such as <http://github.com/lukas-vlcek/bigdesk> and
  75. # <http://mobz.github.com/elasticsearch-head> to inspect the cluster state.
  76.  
  77. # A node can have generic attributes associated with it, which can later be used
  78. # for customized shard allocation filtering, or allocation awareness. An attribute
  79. # is a simple key value pair, similar to node.key: value, here is an example:
  80. #
  81. # node.rack: rack314
  82.  
  83. # By default, multiple nodes are allowed to start from the same installation location
  84. # to disable it, set the following:
  85. # node.max_local_storage_nodes: 1
  86.  
  87.  
  88. #################################### Index ####################################
  89.  
  90. # You can set a number of options (such as shard/replica options, mapping
  91. # or analyzer definitions, translog settings, ...) for indices globally,
  92. # in this file.
  93. #
  94. # Note, that it makes more sense to configure index settings specifically for
  95. # a certain index, either when creating it or by using the index templates API.
  96. #
  97. # See <http://elasticsearch.org/guide/reference/index-modules/> and
  98. # <http://elasticsearch.org/guide/reference/api/admin-indices-create-index.html>
  99. # for more information.
  100.  
  101. # Set the number of shards (splits) of an index (5 by default):
  102. #
  103. # index.number_of_shards: 4
  104. # When bulk indexing set number of replicas: 0, then increase to improve query
  105. # index.number_of_replicas: 0
  106. index.number_of_replicas: 0
  107.  
  108. # Set the number of replicas (additional copies) of an index (1 by default):
  109. #
  110. # index.number_of_replicas: 1
  111.  
  112. # Note, that for development on a local machine, with small indices, it usually
  113. # makes sense to "disable" the distributed features:
  114. #
  115. # index.number_of_shards: 1
  116. # index.number_of_replicas: 0
  117.  
  118. # These settings directly affect the performance of index and search operations
  119. # in your cluster. Assuming you have enough machines to hold shards and
  120. # replicas, the rule of thumb is:
  121. #
  122. # 1. Having more *shards* enhances the _indexing_ performance and allows to
  123. # _distribute_ a big index across machines.
  124. # 2. Having more *replicas* enhances the _search_ performance and improves the
  125. # cluster _availability_.
  126. #
  127. # The "number_of_shards" is a one-time setting for an index.
  128. #
  129. # The "number_of_replicas" can be increased or decreased anytime,
  130. # by using the Index Update Settings API.
  131. #
  132. # ElasticSearch takes care about load balancing, relocating, gathering the
  133. # results from nodes, etc. Experiment with different settings to fine-tune
  134. # your setup.
  135.  
  136. # Use the Index Status API (<http://localhost:9200/A/_status>) to inspect
  137. # the index status.
  138. index.query.bool.max_clause_count: 4096
  139. # in milliseconds
  140. index.refresh_interval: 1s
  141.  
  142. #################################### Paths ####################################
  143.  
  144. # Path to directory containing configuration (this file and logging.yml):
  145. #
  146. # path.conf: /path/to/conf
  147.  
  148. # Path to directory where to store index data allocated for this node.
  149. #
  150. path.data: /var/local/data/elasticsearch
  151. #
  152. # Can optionally include more than one location, causing data to be striped across
  153. # the locations (a la RAID 0) on a file level, favouring locations with most free
  154. # space on creation. For example:
  155. #
  156. # path.data: /path/to/data1,/path/to/data2
  157.  
  158. # Path to temporary files:
  159. #
  160. # path.work: /path/to/work
  161.  
  162. # Path to log files:
  163. #
  164. # path.logs: /path/to/logs
  165.  
  166. # Path to where plugins are installed:
  167. #
  168. # path.plugins: /path/to/plugins
  169.  
  170.  
  171. #################################### Plugin ###################################
  172.  
  173. # If a plugin listed here is not installed for current node, the node will not start.
  174. #
  175. # plugin.mandatory: elasticsearch-paramedic
  176.  
  177.  
  178. ################################### Memory ####################################
  179.  
  180. # ElasticSearch performs poorly when JVM starts swapping: you should ensure that
  181. # it _never_ swaps.
  182. #
  183. # Set this property to true to lock the memory:
  184. #
  185. bootstrap.mlockall: True
  186.  
  187. # Make sure that the ES_MIN_MEM and ES_MAX_MEM environment variables are set
  188. # to the same value, and that the machine has enough memory to allocate
  189. # for ElasticSearch, leaving enough memory for the operating system itself.
  190. #
  191. # You should also make sure that the ElasticSearch process is allowed to lock
  192. # the memory, eg. by using `ulimit -l unlimited`.
  193.  
  194.  
  195. ############################## Network And HTTP ###############################
  196.  
  197. # ElasticSearch, by default, binds itself to the 0.0.0.0 address, and listens
  198. # on port [9200-9300] for HTTP traffic and on port [9300-9400] for node-to-node
  199. # communication. (the range means that if the port is busy, it will automatically
  200. # try the next port).
  201.  
  202. # Set the bind address specifically (IPv4 or IPv6):
  203. #
  204. # network.bind_host: 192.168.0.1
  205.  
  206. # Set the address other nodes will use to communicate with this node. If not
  207. # set, it is automatically derived. It must point to an actual IP address.
  208. #
  209. # network.publish_host: 192.168.0.1
  210.  
  211. # Set both 'bind_host' and 'publish_host':
  212. #
  213. # network.host: 192.168.0.1
  214.  
  215. # Set a custom port for the node to node communication (9300 by default):
  216. #
  217. # transport.tcp.port: 9300
  218.  
  219. # Enable compression for all communication between nodes (disabled by default):
  220. #
  221. # transport.tcp.compress: true
  222.  
  223. # Set a custom port to listen for HTTP traffic:
  224. #
  225. # http.port: 9200
  226.  
  227. # Set a custom allowed content length:
  228. #
  229. # http.max_content_length: 100mb
  230.  
  231. # Disable HTTP completely:
  232. #
  233. # http.enabled: false
  234.  
  235.  
  236. ################################### Gateway ###################################
  237.  
  238. # The gateway allows for persisting the cluster state between full cluster
  239. # restarts. Every change to the state (such as adding an index) will be stored
  240. # in the gateway, and when the cluster starts up for the first time,
  241. # it will read its state from the gateway.
  242.  
  243. # There are several types of gateway implementations. For more information,
  244. # see <http://elasticsearch.org/guide/reference/modules/gateway>.
  245.  
  246. # The default gateway type is the "local" gateway (recommended):
  247. #
  248. # gateway.type: local
  249.  
  250. # Settings below control how and when to start the initial recovery process on
  251. # a full cluster restart (to reuse as much local data as possible when using shared
  252. # gateway).
  253.  
  254. # Allow recovery process after N nodes in a cluster are up:
  255. #
  256. # gateway.recover_after_nodes: 1
  257.  
  258. # Set the timeout to initiate the recovery process, once the N nodes
  259. # from previous setting are up (accepts time value):
  260. #
  261. # gateway.recover_after_time: 5m
  262.  
  263. # Set how many nodes are expected in this cluster. Once these N nodes
  264. # are up (and recover_after_nodes is met), begin recovery process immediately
  265. # (without waiting for recover_after_time to expire):
  266. #
  267. # gateway.expected_nodes: 2
  268.  
  269.  
  270. ############################# Recovery Throttling #############################
  271.  
  272. # These settings allow to control the process of shards allocation between
  273. # nodes during initial recovery, replica allocation, rebalancing,
  274. # or when adding and removing nodes.
  275.  
  276. # Set the number of concurrent recoveries happening on a node:
  277. #
  278. # 1. During the initial recovery
  279. #
  280. # cluster.routing.allocation.node_initial_primaries_recoveries: 4
  281. #
  282. # 2. During adding/removing nodes, rebalancing, etc
  283. #
  284. # cluster.routing.allocation.node_concurrent_recoveries: 2
  285.  
  286. # Set to throttle throughput when recovering (eg. 100mb, by default unlimited):
  287. #
  288. # indices.recovery.max_size_per_sec: 0
  289.  
  290. # Set to limit the number of open concurrent streams when
  291. # recovering a shard from a peer:
  292. #
  293. # indices.recovery.concurrent_streams: 5
  294. # Uncommet this when reindexing (improves write performance, defaults 10%)
  295. # indices.memory.index_buffer_size: 30%
  296.  
  297.  
  298. ################################## Discovery ##################################
  299.  
  300. # Discovery infrastructure ensures nodes can be found within a cluster
  301. # and master node is elected. Multicast discovery is the default.
  302.  
  303. # Set to ensure a node sees N other master eligible nodes to be considered
  304. # operational within the cluster. Set this option to a higher value (2-4)
  305. # for large clusters (>3 nodes):
  306. #
  307. # Set the time to wait for ping responses from other nodes when discovering.
  308. # Set this option to a higher value on a slow or congested network
  309. # to minimize discovery failures:
  310. #
  311. # discovery.zen.ping.timeout: 3s
  312.  
  313. # See <http://elasticsearch.org/guide/reference/modules/discovery/zen.html>
  314. # for more information.
  315.  
  316. # Unicast discovery allows to explicitly control which nodes will be used
  317. # to discover the cluster. It can be used when multicast is not present,
  318. # or to restrict the cluster communication-wise.
  319. #
  320. # 1. Disable multicast discovery (enabled by default):
  321. #
  322. discovery.zen.ping.multicast.enabled: false
  323. discovery.zen.ping.unicast.hosts: [ "<node1_IP>", "<node2_IP>" ]
  324.  
  325. #
  326. # 2. Configure an initial list of master nodes in the cluster
  327. # to perform discovery when new nodes (master or data) are started:
  328.  
  329. # EC2 discovery allows to use AWS EC2 API in order to perform discovery.
  330. #
  331. # You have to install the cloud-aws plugin for enabling the EC2 discovery.
  332. #
  333. # See <http://elasticsearch.org/guide/reference/modules/discovery/ec2.html>
  334. # for more information.
  335. #
  336. # See <http://elasticsearch.org/tutorials/2011/08/22/elasticsearch-on-ec2.html>
  337. # for a step-by-step tutorial.
  338.  
  339. cloud.aws.access_key: xxxxx
  340. cloud.aws.secret_key: xxxxx
  341.  
  342. ################################## Slow Log ##################################
  343.  
  344. # Shard level query and fetch threshold logging.
  345.  
  346. #index.search.slowlog.threshold.query.warn: 10s
  347. #index.search.slowlog.threshold.query.info: 5s
  348. #index.search.slowlog.threshold.query.debug: 2s
  349. #index.search.slowlog.threshold.query.trace: 500ms
  350.  
  351. #index.search.slowlog.threshold.fetch.warn: 1s
  352. #index.search.slowlog.threshold.fetch.info: 800ms
  353. #index.search.slowlog.threshold.fetch.debug: 500ms
  354. #index.search.slowlog.threshold.fetch.trace: 200ms
  355.  
  356. #index.indexing.slowlog.threshold.index.warn: 10s
  357. #index.indexing.slowlog.threshold.index.info: 5s
  358. #index.indexing.slowlog.threshold.index.debug: 2s
  359. #index.indexing.slowlog.threshold.index.trace: 500ms
  360.  
  361. ################################## GC Logging ################################
  362.  
  363. #monitor.jvm.gc.ParNew.warn: 1000ms
  364. #monitor.jvm.gc.ParNew.info: 700ms
  365. #monitor.jvm.gc.ParNew.debug: 400ms
  366.  
  367. #monitor.jvm.gc.ConcurrentMarkSweep.warn: 10s
  368. #monitor.jvm.gc.ConcurrentMarkSweep.info: 5s
  369. #monitor.jvm.gc.ConcurrentMarkSweep.debug: 2s
  370.  
  371. ################################# Action ####################################
  372. action.disable_delete_all_indices: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement