Created 09-20-2017 05:59 AM
hello,
I am getting below warning messages while trying to launch hive from the command window.
How to supress these warning messages?
Created 09-20-2017 06:19 AM
To get rid of the warning, you should enable Kerberos and then enable impersonation (impersonation will work without Kerberos also).<property>. set following property to true in hive-site.xml
<name>hive.server2.enable.impersonation</name> <description>Enable user impersonation for HiveServer2</description> <value>true</value> </property>
and then set following in core-site.xml
<property> <name>hadoop.proxyuser.hive.hosts</name> <value>*</value> </property> <property> <name>hadoop.proxyuser.hive.groups</name> <value>*</value> </property>
remember, this will get rid of your warning but it does not improve security unless Kerberos is enabled.
Created 09-21-2017 05:45 AM
@mqureshi : I have checked above config files, its been set as it is as you mentioned. But still getting warning messages.