Filip Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 1 | |
| 2 | ============= |
Ales Komarek | dd881a6 | 2015-12-08 11:03:49 +0100 | [diff] [blame] | 3 | Elasticsearch |
Filip Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 4 | ============= |
| 5 | |
Ales Komarek | dd881a6 | 2015-12-08 11:03:49 +0100 | [diff] [blame] | 6 | Elasticsearch provides a distributed, multitenant-capable full-text search engine with a HTTP web interface and schema-free JSON documents. |
| 7 | |
Filip Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 8 | Sample pillars |
| 9 | ============== |
| 10 | |
Filip Pytloun | 63c8c25 | 2016-05-05 16:14:02 +0200 | [diff] [blame^] | 11 | Single-node elasticsearch with clustering disabled: |
| 12 | |
Filip Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 13 | .. code-block:: yaml |
| 14 | |
| 15 | elasticsearch: |
| 16 | server: |
| 17 | enabled: true |
Filip Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 18 | bind: |
| 19 | address: 0.0.0.0 |
| 20 | port: 9200 |
Filip Pytloun | 63c8c25 | 2016-05-05 16:14:02 +0200 | [diff] [blame^] | 21 | cluster: |
| 22 | multicast: false |
| 23 | index: |
| 24 | shards: 1 |
| 25 | replicas: 0 |
| 26 | |
| 27 | Cluster 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 Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 49 | |
| 50 | Read more |
| 51 | ========= |
| 52 | |
Ales Komarek | dd881a6 | 2015-12-08 11:03:49 +0100 | [diff] [blame] | 53 | |
| 54 | * https://www.elastic.co/ |
Filip Pytloun | 5163dfb | 2015-10-06 16:28:31 +0200 | [diff] [blame] | 55 | * 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 |