Member since
06-30-2019
5
Posts
0
Kudos Received
0
Solutions
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
12-14-2018
03:35 AM
have the same problem, waiting for solution ...
... View more
08-13-2018
08:10 AM
The correct way is add following context to default.xml <param>
<name>SOLR</name>
<value>maxFailoverAttempts=3;failoverSleep=1000;enabled=true</value>
</param>
<service>
<role>SOLR</role>
<url>http://<solr_host1>:8886/solr</url>
<url>http://<solr_host2>:8886/solr</url>
</service> and use below URL for access Solr UI: https://<knox_host>:8443/gateway/default/solr/index.html#/
... View more