How many master node will be active

Suppose I have a 3 master node in a cluster how many master node will be active.
Let us say I have below 3 master node running in 9200 port on 3 different machine
master-node01
master-node01
master-noode3
then will each of the master will be active in a cluster ? and can each of the master node can be accessed to send request?
http://master-node01.domain:9200
http://master-node02.domain:9200
http://master-node03.domain:9200

It is not clear what you mean by "active". All nodes in a cluster are doing something most of the time.

You can send any request to any node in a cluster. In fact it's normally preferable to avoid sending requests to the master node(s) so they can dedicate their resources to managing the cluster.

'Active' means does each of the master nodes in a cluster takes request was my question. Thanks. you provided the answer.

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.