blob: 0c7021fe964da360b522c1df7c46718a61f73981 [file] [log] [blame]
Filip Pytloun5163dfb2015-10-06 16:28:31 +02001
2=============
Ales Komarekdd881a62015-12-08 11:03:49 +01003Elasticsearch
Filip Pytloun5163dfb2015-10-06 16:28:31 +02004=============
5
Ales Komarekdd881a62015-12-08 11:03:49 +01006Elasticsearch provides a distributed, multitenant-capable full-text search engine with a HTTP web interface and schema-free JSON documents.
7
Filip Pytloun5163dfb2015-10-06 16:28:31 +02008Sample pillars
9==============
10
Filip Pytloun63c8c252016-05-05 16:14:02 +020011Single-node elasticsearch with clustering disabled:
12
Filip Pytloun5163dfb2015-10-06 16:28:31 +020013.. code-block:: yaml
14
15 elasticsearch:
16 server:
17 enabled: true
Filip Pytloun5163dfb2015-10-06 16:28:31 +020018 bind:
19 address: 0.0.0.0
20 port: 9200
Filip Pytloun63c8c252016-05-05 16:14:02 +020021 cluster:
22 multicast: false
23 index:
24 shards: 1
25 replicas: 0
26
27Cluster with manually defined members:
28
29.. code-block:: yaml
30
31 elasticsearch:
32 server:
33 enabled: true
34 bind:
35 address: 0.0.0.0
36 port: 9200
37 cluster:
38 multicast: false
39 members:
40 - host: elastic01
41 port: 9300
42 - host: elastic02
43 port: 9300
44 - host: elastic03
45 port: 9300
46 index:
47 shards: 5
48 replicas: 1
Filip Pytloun5163dfb2015-10-06 16:28:31 +020049
50Read more
51=========
52
Ales Komarekdd881a62015-12-08 11:03:49 +010053
54* https://www.elastic.co/
Filip Pytloun5163dfb2015-10-06 16:28:31 +020055* http://alex.nederlof.com/blog/2012/11/19/installing-elasticsearch-with-jenkins-on-ubuntu/
56* http://websightdesigns.com/wiki/Setting_up_Centralized_Event_Parsing_on_Ubuntu_12.04
57* https://gist.github.com/wingdspur/2026107