整合。
hive (hadoop3_project)> create table if not exists employee01(
> user_id int,
> name string,
> age int,
> sex string,
> job string,
> salary int,
> address string,
> job_type string)
> STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
> with serdeproperties("hbase.columns.mapping"=":key,emp_info:user_id,emp_info:name,emp_info:age,emp_info:sex,emp_info:job,emp_other:salary,emp_other:address,emp_other:job_type")
> TBLPROPERTIES("hbase.table.name"="beicai_project:employee01");
FAILED: SemanticException Cannot find class 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
|