As I'm new to hbase file storage, is there any option available to read particular regions from the replicated cluster when the region server fails
For example, In hbase cluster, with replication mode enabled master-master mode(data cluster with separate zookeeper) it has 1 Master and 5 region servers. In that one region server fails, in this case shall I able to read data belongs to that region server from replicated cluster? Like the concept proposed by facebook
https://code.facebook.com/posts/321111638043166/hydrabase-the-evolution-of-hbase-facebook/
or else if we face issues with many region server in the main cluster then we need to change the read and write to be served from the replicated server. (Main cluster becomes replicated cluster and vice versa)
For this, what configuration we need to do this work apart from the zookeeper quorum connection via Java API?