Hi Team,
From below document, I am trying to find if I can use 2 node cluster for production like environment. I know 3 node cluster is always better choice.
link above says, if you create 2 node es cluster, then make one of them as node.master: false
so that node will not participate in election when either node is unavailable, so we have one master (and may be data node also) and other as only data node (i.e not master role)
It also says, The cluster can tolerate the loss of the other master-ineligible node
. So it means after having above setting, there is no impact if non-master node is down, not available for some time.
but its not clear what will happen if the master node goes down? (I know all master node activity like creation/deletion of indices or shard allocation will not happen) but will the other data node continue receiving writes and responding to client requests? If yes then what will be the impact until master node come back and join cluster?
below link says, if one fails the other node can handle its tasks.
We recommend you assign both nodes all other roles except master eligibility. If one node fails, the other node can handle its tasks
and here it says this configuration is not resilient to failure.
Because it’s not resilient to failures, we do not recommend deploying a two-node cluster in production.
The above two lines mismatching to me.
Below is another link from elastic which says, if single master node goes down writes will be blocked but what if other data node is still live, will it not accept and respond to requests meanwhile?
I am trying to find the impact of single master node failure on 2 node cluster and reason to use three node cluster instead.
Thanks,