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?
|
|
|
Try
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:
then find your row and delete it. Since this will leave your regions with a "hole", make sure you run |
||||
|