Member since
05-25-2016
7
Posts
0
Kudos Received
0
Solutions
04-19-2018
08:23 AM
Hi , It seems, problem comes from dependent libraries, basically you will get the problem when your trying to put the data into hbase table. initially I had used <dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>1.1.2</version>
</dependency> i got the similar problem and later I changed to <dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-client</artifactId>
<version>1.1.2</version>
</dependency> now the problem has been resolved. Regards, Ram.
... View more