Home > database >  Should I create a different ElasticSearch cluster for my different apps?
Should I create a different ElasticSearch cluster for my different apps?

Time:09-05

If I understand properly clusters are like a databases, while nodes are like tables. So should I create a different cluster for my other apps, or am I not understanding this correctly ?

CodePudding user response:

If I understand properly clusters are like a databases, while nodes are like tables.

This is not the right analogy and nodes are not like table, and you can have multiple apps connects to same Elasticsearch cluster and they can interact with same or different index in the Elasticsearch cluster as one Elasticsearch cluster can holds multiple indices. and ES index is the logical grouping of the documents like table in the Sql.

  • Related