We have a table in HBase with pre-splits of count 16 (number of regions created are 16) and also we have loaded some data into the table and we can see the data is moved to different regions based on the splits we have defined.
Here we are having few doubts on the region concept.
If one of the node goes down (if that node has one of the region of the HBase table), what will happen? And also is it possible to get/scan the data specific to that region of the HBase table
will the full region replicated to other node or how it will work?
Can any one help me on this.