You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sr...@apache.org on 2014/04/04 00:51:22 UTC

git commit: AMBARI-5326. Ambari should be able to configure ATS age off parameters - server change. (srimanth)

Repository: ambari
Updated Branches:
  refs/heads/trunk e123825d2 -> 697a97b3f


AMBARI-5326. Ambari should be able to configure ATS age off parameters - server change. (srimanth)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/697a97b3
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/697a97b3
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/697a97b3

Branch: refs/heads/trunk
Commit: 697a97b3f5fea1703ee57091eb69891303766f72
Parents: e123825
Author: Srimanth Gunturi <sg...@hortonworks.com>
Authored: Thu Apr 3 15:34:10 2014 -0700
Committer: Srimanth Gunturi <sg...@hortonworks.com>
Committed: Thu Apr 3 15:48:22 2014 -0700

----------------------------------------------------------------------
 .../2.1/services/YARN/configuration/yarn-site.xml    | 15 +++++++++++++++
 ambari-web/app/data/HDP2/site_properties.js          | 10 ++--------
 2 files changed, 17 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/697a97b3/ambari-server/src/main/resources/stacks/HDP/2.1/services/YARN/configuration/yarn-site.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/HDP/2.1/services/YARN/configuration/yarn-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.1/services/YARN/configuration/yarn-site.xml
index 6272b44..a3e237b 100644
--- a/ambari-server/src/main/resources/stacks/HDP/2.1/services/YARN/configuration/yarn-site.xml
+++ b/ambari-server/src/main/resources/stacks/HDP/2.1/services/YARN/configuration/yarn-site.xml
@@ -387,4 +387,19 @@
       the RPC server.
     </description>
   </property>
+  <property>
+    <description>Enable age off of timeline store data.</description>
+    <name>yarn.timeline-service.ttl-enable</name>
+    <value>true</value>
+  </property>
+  <property>
+    <description>Time to live for timeline store data in milliseconds.</description>
+    <name>yarn.timeline-service.ttl-ms</name>
+    <value>2678400000</value>
+  </property>
+  <property>
+    <description>Length of time to wait between deletion cycles of leveldb timeline store in milliseconds.</description>
+    <name>yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms</name>
+    <value>300000</value>
+  </property>
 </configuration>

http://git-wip-us.apache.org/repos/asf/ambari/blob/697a97b3/ambari-web/app/data/HDP2/site_properties.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/data/HDP2/site_properties.js b/ambari-web/app/data/HDP2/site_properties.js
index 8ee207a..4d8d138 100644
--- a/ambari-web/app/data/HDP2/site_properties.js
+++ b/ambari-web/app/data/HDP2/site_properties.js
@@ -255,10 +255,8 @@ module.exports =
       "id": "site property",
       "name": "yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms",
       "displayName": "yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms",
-      "displayType": "integer",
+      "displayType": "int",
       "category": "AppTimelineServer",
-      "desription": "Length of time to wait between deletion cycles of leveldb timeline store in milliseconds.",
-      //"value": 300000,
       "serviceName": "YARN"
     },
     {
@@ -274,18 +272,14 @@ module.exports =
       "displayName": "yarn.timeline-service.ttl-enable",
       "displayType": "checkbox",
       "category": "AppTimelineServer",
-      "desription": "Enable age off of timeline store data.",
-      //"value": true,
       "serviceName": "YARN"
     },
     {
       "id": "site property",
       "name": "yarn.timeline-service.ttl-ms",
       "displayName": "yarn.timeline-service.ttl-ms",
-      "displayType": "integer",
+      "displayType": "int",
       "category": "AppTimelineServer",
-      "desription": "Time to live for timeline store data in milliseconds.",
-      //"value": 2678400000,
       "serviceName": "YARN"
     },
     {