I have a hive+hbase integration cluster. I created a table by: CREATE TABLE hbase_table_1(key int, value string) STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler' WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,cf1:val") TBLPROPERTIES ("hbase.table.name" = "xyz");
it is ok when execute: select * from hbase_table_1;
but when I execute count operation, the classnotfound error will happen. select count(*) from hbase_table_1;
error info is: java.io.IOException:cannot find class at org.apache.............HiveInputformat.getRecordReader(HiveInputFormat.java:220) ........... Caused by:java.lang.ClassNoteFoundException: at java.lang.Class.forName0(Native Method)
those error message does not notice me which class.
Sorry for my poor English.
Any one encounter this issue?