Home > Enterprise >  Does clustering important for elastic stack?
Does clustering important for elastic stack?

Time:04-21

Could anyone explain to me clearly does clustering is required or not for elastic stack? I know when you set up your elastic in fact you created a single node but I can't understand when I have to set up elasticsearch with multiple nodes? or Does clustering is really important or not?

CodePudding user response:

Elasticsearch cluster can be created with a single node, but its real power comes when you have multiple nodes in the cluster, that way it can ensure the HA(High availability) and HS(High scalability).

If you running it in Production env. it's highly recommended to use multi-node Elasticsearch cluster, as single node cluster can lead to the data loss(hint: no replica shards will be allocated and Elasticsearch is not a database).

Edit: As discussed in the comments, there are various articles in which its recommended to use the multiple nodes in the Production environment, below is screen-shot from the enter image description here

Hope this helps.

  • Related