hadoop - Deleting values in Hbase-Hive Integration -


i using hbase data storage , have hive table read data hbase using storage handler.

i using composite rowkey (struct (region,country,date,id)).

is there way delete specific data hbase-hive integaration ,either hbase or hive??

can below done using hbase shell commands or hive queries

delete table region=eu , country=us , date=2015-06-11; 

using hive 0.14

thanks in advance.

based on https://cwiki.apache.org/confluence/display/hive/hive+transactions#hivetransactions-limitations

tables must bucketed make use of these features. tables in same system not using transactions , acid not need bucketed. external tables cannot made acid tables since changes on external tables beyond control of compactor (hive-13175).

so apparently there no way perform delete in hbase using hive.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -