Member since
05-31-2018
4
Posts
0
Kudos Received
0
Solutions
06-28-2018
12:58 PM
@Baranenko Nikolay Ambari provides option to have different configurations for different host components using "Config Groups" concept. https://docs.hortonworks.com/HDPDocuments/Ambari-2.6.2.2/bk_ambari-operations/content/using_host_config_groups.html
... View more
06-06-2018
08:42 PM
Hey @Baranenko Nikolay Could you try to add this jar to the env Hive aux variable? HIVE_AUX_JARS_PATH After you do this, you'll have to restart the HiveServer2 and after bringing it back, try to run the following commands on the same hosts that has HS2: ps -ef | grep -i hive | grep -i <YOUR JAR>
hive -e "set;" | grep -i HIVE_AUX_JARS_PATH Hope this helps!
... View more
05-31-2018
09:19 PM
Log levels are confgured in log4j files located in /etc/hive/conf/ and /etc/hive/conf/conf.server Go hiveserver2 node and run cd /etc/hive/conf/
grep -R DEBUG * | grep hive.root.logger
you will see a file called hive-log4j.properties Edit that file and change the line called hive.root.logger from DEBUG to INFO
... View more