Member since
09-14-2015
111
Posts
28
Kudos Received
13
Solutions
12-06-2017
10:04 PM
If you come across this error while doing HBase Service check in a non-kerberized environemnt: "ERROR: Table ambarismoketest does not exist.'" Please follow these steps to resolve it: 1. Stop HBase from Ambari.
2. Go to hbase zookeeper CLI and look for $ hbase zkcli
$ls /hbase-unsecure/table/ambarismoketest
3. If the table exists then delete the table: rmr /hbase-unsecure/table/ambarismoketest
4. Start HBase from Ambari 5. Now, recreate ambarismoketest table: $ hbase shell
hbase> create 'ambarismoketest','family'
hbase> quit 6. It should fix the issue.
... View more
Labels:
09-06-2017
04:36 PM
Where are steps to configure R-server for Kerberos? Does it not need any kerberos related settings? No kinit etc..? I noticed that the connect string has kerberos related variables though. Is it really good enough? Please confirm.
rhive.connect(host="node1.hortonworks.com:10000/default;principal=hive/node1.hortonworks.com@HDP.COM;AuthMech=1;KrbHostFQDN=service.hortonworks.com;KrbServiceName=hive;KrbRealm=HDP.COM", defaultFS="hdfs://node1.hortonworks.com/rhive", hiveServer2=TRUE,updateJar=FALSE))
... View more