I've recently created the following table in Impala....
create table hpchistperf.oozie_job_stats
(
name string,
start_time timestamp,
end_time timestamp,
rows_inserted integer,
last_id_loaded integer,
primary key(name,start_time))
PARTITION BY HASH PARTITIONS 16
stored as kudu;
I read that there was no problem creating the table in Impala and it could be accessed in Hive since they share the same metadata.
The problem is that when I run the query on Hive it gives me the following error:
FAILED: RuntimeException java.lang.ClassNotFoundException: org.apache.kudu.mapreduce.KuduTableInputFormat