Hi Sarath,
I am using Janusgraph in embedded mode too. But having issues in connecting to a kerberized Hbase.
Could you please help me by providing any specific settings required by Hbase connectivity.
I have already done followings:
- // Setting up the HBase configuration
- Configuration configuration = new Configuration();
- configuration.addResource("src/main/resources/hbase-site.xml");
- UserGroupInformation.setConfiguration(configuration);
- UserGroupInformation.loginUserFromKeytab(principal, keytabLocation)
//principal and keytabLocation is well defined.
Still it results in error from Janusgraph.
However, with same settings as above I am able to make a direct connection to HBase.
Am I missing something here?
Thanks and Regards,
Sandeep