Member since
10-17-2016
11
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2873 | 02-23-2017 09:56 AM |
10-11-2019
10:28 PM
It really works after replacing ';' with '\073' ! I met this problem when using split and ';' in crontab hql, it returns " ParseException line 3:121 cannot recognize input near '<EOF>' '<EOF>' '<EOF>' in select expression".
... View more
03-30-2017
12:06 PM
Hi Padmanabhan, you can pull all the client configs using Ambari from the action button download all client configs and put them where you need them. In my 2.4 instance it is in /usr/hdp/2.4.0.0-169/etc/sqoop/conf.dist/sqoop-site.xml
... View more
02-23-2017
09:56 AM
Adding the below Credential properties fixed my issue. <credentials>
<credential name="hbase-cred" type="hbase">
<property>
<name>hadoop.security.authentication</name>
<value>kerberos</value>
</property>
<property>
<name>hbase.security.authentication</name>
<value>kerberos</value>
</property>
<property>
<name>hbase.master.kerberos.principal</name>
<value>hbase/_HOST@XX.XX.COM</value>
</property>
<property>
<name>hbase.regionserver.kerberos.principal</name>
<value>hbase/_HOST@XX.XX.COM</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>${zookeeper_quorum}</value>
</property>
<property>
<name>hadoop.rpc.protection</name>
<value>authentication</value>
</property>
<property>
<name>hbase.rpc.protection</name>
<value>authentication</value>
</property>
<property>
<name>hbase.master.keytab.file</name>
<value>/etc/hadoop/hbase.keytab</value>
</property>
<property>
<name>hbase.regionserver.keytab.file</name>
<value>/etc/hadoop/hbase.keytab</value>
</property>
</credential>
</credentials>
... View more