Reputation: 1027
I am new to HBase and I am creating a large table. My table periodically is being scanned and some data related to some row are being deleted.
I wanted to know if for a specific row , I delete some columns of that row, it decrease the amount of disk consumption so it reduces the amount of disk being used?
Upvotes: 2
Views: 183
Reputation: 29155
Hbase data will be stored in HDFS usally under /hbase
Obviously, it will reduce some space if you delete data.
please check like below
hadoop fs -ls -R yourpath to hbase usally /hbase
hadoop fs -du -h yourpath to hbase usally /hbase
hadoop fs -du -h yourpath to hbase usally /hbase
Note : you can remove -h
option if you want to observe minute size change in bytes.
-h
is human readable size i.e in mbs , GB with this minute difference cant be observed.Upvotes: 0