X-Git-Url: https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas%2Felasticsearch.git;a=blobdiff_plain;f=README.rst;h=0c7021fe964da360b522c1df7c46718a61f73981;hp=c37299be3e38f1f3c90fde75851212db18156f08;hb=63c8c25b95de6f4d545d3c918c1b045681d1d26b;hpb=5163dfb7b145991603a877b6e862c877ac0f3962 diff --git a/README.rst b/README.rst index c37299b..0c7021f 100644 --- a/README.rst +++ b/README.rst @@ -1,24 +1,57 @@ ============= -ElasticSearch +Elasticsearch ============= +Elasticsearch provides a distributed, multitenant-capable full-text search engine with a HTTP web interface and schema-free JSON documents. + Sample pillars ============== +Single-node elasticsearch with clustering disabled: + .. code-block:: yaml elasticsearch: server: enabled: true - version: 1.0.1 bind: address: 0.0.0.0 port: 9200 + cluster: + multicast: false + index: + shards: 1 + replicas: 0 + +Cluster with manually defined members: + +.. code-block:: yaml + + elasticsearch: + server: + enabled: true + bind: + address: 0.0.0.0 + port: 9200 + cluster: + multicast: false + members: + - host: elastic01 + port: 9300 + - host: elastic02 + port: 9300 + - host: elastic03 + port: 9300 + index: + shards: 5 + replicas: 1 Read more ========= + +* https://www.elastic.co/ * http://alex.nederlof.com/blog/2012/11/19/installing-elasticsearch-with-jenkins-on-ubuntu/ * http://websightdesigns.com/wiki/Setting_up_Centralized_Event_Parsing_on_Ubuntu_12.04 * https://gist.github.com/wingdspur/2026107