Member since
08-23-2018
5
Posts
0
Kudos Received
0
Solutions
08-25-2018
09:18 AM
Thanks, issue created: https://issues.apache.org/jira/browse/HIVE-20462
... View more
12-14-2018
01:05 PM
Finally, I have figure it out. (at least in my case) First, you should follow this link to configure your cluster. (http://tez.apache.org/tez-ui.html) Then you may face the same problem as above. Now, you need to change more tez configuration as bellow: tez.am.view-acls: *
yarn.timeline-service.enabled: true
tez.tez-ui.history-url.base http://your-host/tez-ui/
tez.am.tez-ui.history-url.template __HISTORY_URL_BASE__?viewPath=/#/tez-app/__APPLICATION_ID__
tez.history.logging.service.class org.apache.tez.dag.history.logging.ats.ATSV15HistoryLoggingService
refresh tez configurations and run service check for tez, then you should search entities with ats v1 api(/ws/v1/timeline/TEZ_DAG_ID). In addition, you need to configure hive to ues ats logging in order to use the 'hive queries' on tez ui, change the following configurations: hive.server2.enable.doAs: true
hive.exec.failure.hooks: org.apache.hadoop.hive.ql.hooks.ATSHook
hive.exec.post.hooks: org.apache.hadoop.hive.ql.hooks.ATSHook,org.apache.atlas.hive.hook.HiveHook
hive.exec.pre.hooks: org.apache.hadoop.hive.ql.hooks.ATSHook
hive_timeline_logging_enabled: true
... View more
08-23-2018
08:34 AM
refer https://docs.hortonworks.com/HDPDocuments/Ambari-2.7.0.0/bk_ambari-upgrade/content/bhvr_changes_upgrade_hdp3_amb27.html tez view pig view are removed from ambari now Note: Please upvote and accept this answer if this solves your issue
... View more