Explorar el Código

AMBARI-9636. Modifications to configs for Tez and skipping deploy for Tez view (Hitesh Shah via srimanth)

Srimanth Gunturi hace 10 años
padre
commit
41a25def25

+ 10 - 1
ambari-server/src/main/resources/stacks/HDP/2.2/services/TEZ/configuration/tez-site.xml

@@ -310,8 +310,17 @@
 
   <property>
     <name>tez.runtime.convert.user-payload.to.history-text</name>
-    <value>true</value>
+    <value>false</value>
     <description>Whether to publish configuration information to History logger</description>
   </property>
 
+  <property>
+    <name>tez.am.tez-ui.history-url.template</name>
+    <value>__HISTORY_URL_BASE__?viewPath=%2F%23%2Ftez-app%2F__APPLICATION_ID__</value>
+    <description>Template to generate the History URL for a particular Tez Application.
+       Template replaces __APPLICATION_ID__ with the actual applicationId and
+       __HISTORY_URL_BASE__ with the value from the tez.tez-ui.history-url.base config property
+    </description>
+  </property>
+
 </configuration>

+ 7 - 0
contrib/views/tez/pom.xml

@@ -47,6 +47,13 @@
   <build>
 
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>build-helper-maven-plugin</artifactId>