Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Due to legal issues I need to delete old data from HBase.

I found a way to split the region using my criteria and by that moving the old data to the new region, but is there a way to delete that region?

any other idea how to achieve by goal?

share|improve this question

1 Answer

up vote 3 down vote accepted

Try

delete '.META.', 'ROW_FROM_META_WITH_YOUR_TABLE'

If you are not sure what the row you want to delete run a scan on the ".META." or dump its value into a file:

echo "scan '.META.'"| hbase shell &> dump.txt

then find your row and delete it.

Since this will leave your regions with a "hole", make sure you run hbase hbck PlatformData -repair to fix those.

share|improve this answer
Don't forget to get move/delete the data folders @ hdfs://.../user/hbase/<table>/<regionId> – Mauricio Morales Jan 9 at 19:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.