I am trying to access Hbase table by mapping it from hive through spark engine.
From Hive:
When I run the query on Hive view mapped with Hbase I could get all the desired result.
From Spark:
When i run query to fetch from hive table ,i could get it but when i do the same for hbase mapped hive table i get below error.
Error: java.lang.NoSuchMethodError: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe.initSerdeParams(Lorg/apache/hadoop/conf/Configuration;Ljava/util/Properties;Ljava/lang/String;)Lorg/apache/hadoop/hive/serde2/lazy/LazySimpleSerDe$SerDeParameters; (state=,code=0)
I like to know whether it is possible to do it through spark as I did not find any solutions from internet.
From the above error I could figure that this is some jar issue and this method exists in hive-serde jar and hive-exec jar,but tried with all possible alternative but could not succeed..
Can any one help on this..
Note:My main objective here to check the performance as it is taking good amount of time in hive and pig as well.