Re: Help with 4 node cluster

2015-02-19 Thread Mark Walkom
You can have 4 master eligable
​if you want​
, just set discovery.zen.minimum_master_nodes
​ to 3 to ensure a quorum.​

But ideally as Christian mentioned, it's best to have an uneven number of
masters.

On 19 February 2015 at 16:51, christian.dahlqv...@elasticsearch.com wrote:

 Hi,

 You always want an odd number of master nodes (often 3), so I would
 therefore recommend setting three of the four nodes to be master eligible
 and leave the fourth as a pure data node. This will prevent the cluster
 getting partitioned into two with equal number of master nodes on both
 sides of the partition.

 Best regards,

 Christian

 On Wednesday, February 18, 2015 at 11:39:54 AM UTC, sysads wrote:

 Hi

 I am in need of help on setting up a 4 node elasticsearch servers. I
 have installed and configured ES on all 4 nodes but I am lost as to what
 the configuration in elasticsearch.yml will be:

 - if I want to have all 4 nodes both master and data
 - make node A act as primary shard while node B acts as its replica then
 node C as primary shard while node D as its own replica.

 Thanks

  --
 You received this message because you are subscribed to the Google Groups
 elasticsearch group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to elasticsearch+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/elasticsearch/956bd6e5-44fa-448e-93aa-9a7623972b42%40googlegroups.com
 https://groups.google.com/d/msgid/elasticsearch/956bd6e5-44fa-448e-93aa-9a7623972b42%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
elasticsearch group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAEYi1X-hffk5m_ORJ9_LdmBqgcK2QLMCvwpuQhVJRzRvM1A8tg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Help with 4 node cluster

2015-02-18 Thread sysads
Hi

I am in need of help on setting up a 4 node elasticsearch servers. I have 
installed and configured ES on all 4 nodes but I am lost as to what the 
configuration in elasticsearch.yml will be:

- if I want to have all 4 nodes both master and data
- make node A act as primary shard while node B acts as its replica then 
node C as primary shard while node D as its own replica.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
elasticsearch group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/ff3ad49c-f305-44cb-a473-523ad6758835%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Help with 4 node cluster

2015-02-18 Thread christian . dahlqvist
Hi,

You always want an odd number of master nodes (often 3), so I would 
therefore recommend setting three of the four nodes to be master eligible 
and leave the fourth as a pure data node. This will prevent the cluster 
getting partitioned into two with equal number of master nodes on both 
sides of the partition.

Best regards,

Christian

On Wednesday, February 18, 2015 at 11:39:54 AM UTC, sysads wrote:

 Hi

 I am in need of help on setting up a 4 node elasticsearch servers. I have 
 installed and configured ES on all 4 nodes but I am lost as to what the 
 configuration in elasticsearch.yml will be:

 - if I want to have all 4 nodes both master and data
 - make node A act as primary shard while node B acts as its replica then 
 node C as primary shard while node D as its own replica.

 Thanks


-- 
You received this message because you are subscribed to the Google Groups 
elasticsearch group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/956bd6e5-44fa-448e-93aa-9a7623972b42%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Help with 4 node cluster

2015-02-18 Thread Nara Alzapur
you can make all nodes as master + data by setting following in 
elasticsearch.yml file. i dont think/know if you can setup 2 nodes as 
primary in cluster. For each index, you can set number of replica as 1 or 
more, so ES will automatically move them to different nodes than primary 
shard. i recommend using unicast for discovery as shown below if you have 
static IPs.

node.master: true
node.data: true
discovery.zen.ping.multicast.enabled: false
discovery.zen.ping.unicast.hosts: [IP1, IP2]


On Wednesday, February 18, 2015 at 5:39:54 AM UTC-6, sysads wrote:

 Hi

 I am in need of help on setting up a 4 node elasticsearch servers. I have 
 installed and configured ES on all 4 nodes but I am lost as to what the 
 configuration in elasticsearch.yml will be:

 - if I want to have all 4 nodes both master and data
 - make node A act as primary shard while node B acts as its replica then 
 node C as primary shard while node D as its own replica.

 Thanks


-- 
You received this message because you are subscribed to the Google Groups 
elasticsearch group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/e73c6d3e-e0dd-4403-87d9-3ab922bb974f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Help with 4 node cluster

2015-02-18 Thread Mark Walkom
Take a look at these pages -
http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/deploy.html

Also there is not really any point in forcing shard types on specific
machines, unless you want to leverage some kind of awareness. A primary and
replica shard are the same thing other than a metadata flag that
differentiates them.

On 18 February 2015 at 22:39, sysads sysadmin-6...@pages.plusgoogle.com
wrote:

 Hi

 I am in need of help on setting up a 4 node elasticsearch servers. I have
 installed and configured ES on all 4 nodes but I am lost as to what the
 configuration in elasticsearch.yml will be:

 - if I want to have all 4 nodes both master and data
 - make node A act as primary shard while node B acts as its replica then
 node C as primary shard while node D as its own replica.

 Thanks

 --
 You received this message because you are subscribed to the Google Groups
 elasticsearch group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to elasticsearch+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/elasticsearch/ff3ad49c-f305-44cb-a473-523ad6758835%40googlegroups.com
 https://groups.google.com/d/msgid/elasticsearch/ff3ad49c-f305-44cb-a473-523ad6758835%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
elasticsearch group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAEYi1X8s8Xn%3DZncku8JWBCGFPSM1hoNtbCSFUXrCb0EaR-d%3DJg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.