Skip to content
Advertisement

Tag: hbase

How to clear a table in hbase?

I want to empty a table in hbase… eg: user. Is there any command or function to empty the table without deleting it… My table structure is : Can someone help me? Answer There’s no single command to clear Hbase table, but you can use 2 workarounds: disable, delete, create table, or scan all records and delete each. Actually, disable,

Advertisement