HBase is wonderful, but…
What will happen to the data when a node (explodes/burns down/gets stolen/Torn into pieces by mad IT on the loose)?
- Is the data lost?
- Can the cluster auto recover?
- Can I add new nodes without downtime?
Thanks guys,
Maxim.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Because HBase uses HDFS as a data storage layer, your data is replicated on the other nodes (3 by default). And same rules apply as to normal HDFS usage.
What to you mean by auto recovery? The data after some time will eventually return to the state of replication level before crash.
Yes, you can. See this topic in FAQ: http://wiki.apache.org/hadoop/Hbase/FAQ#A21