Using two ES clusters

Hi,

Does it make sense to use two ES clusters like a master/slave architecture.

For exemple, we have an 'active' cluster that answers queries and one 'passive' cluster that build the new version of the index. Once the new index is created switch the clusters.
The pro of this architecture for me are:

  • The hardware is isolated. We know that the indexing phase won't impact the queries.
  • We have the ability to "test" an update. I mean that we can run query to verify that the data inserted is coherent. Validate a new mapping etc... and then switch to the cluster when we are ok with the new configuration
    The cons are:
  • The hardware requirement is doubled
  • We are are far from real time :slight_smile:
  • More maintenance complexity

Maybe I missed something. What do you think about that?

Regards

This is really only something you can answer, but your points are all accurate.

Thank you for your answer. However, I cannot find any feedback on the web of company that uses this kind of architecture. That probably means that I underestimate the cons....