You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2013/05/22 00:55:43 UTC

svn commit: r1485005 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/data/config_properties.js

Author: jaimin
Date: Tue May 21 22:55:43 2013
New Revision: 1485005

URL: http://svn.apache.org/r1485005
Log:
Incorrect unit displayed for "dfs.datanode.du.reserved" and "fs.checkpoint.size". (jaimin)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/data/config_properties.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1485005&r1=1485004&r2=1485005&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue May 21 22:55:43 2013
@@ -870,6 +870,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2176. Incorrect unit displayed for "dfs.datanode.du.reserved" and
+ "fs.checkpoint.size". (jaimin)
+
  AMBARI-2175. Mark 2.0 stack to be active for testing purposes. (srimanth)
 
  AMBARI-2173. TEST BROKEN : FAIL: test_upgradeCommand_executeCommand

Modified: incubator/ambari/trunk/ambari-web/app/data/config_properties.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/data/config_properties.js?rev=1485005&r1=1485004&r2=1485005&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/data/config_properties.js (original)
+++ incubator/ambari/trunk/ambari-web/app/data/config_properties.js Tue May 21 22:55:43 2013
@@ -253,10 +253,10 @@ module.exports =
       "id": "puppet var",
       "name": "datanode_du_reserved",
       "displayName": "Reserved space for HDFS",
-      "description": "Reserved space in GB per volume",
-      "defaultValue": "1",
+      "description": "Reserved space in bytes per volume. Always leave this much space free for non dfs use.",
+      "defaultValue": "0",
       "displayType": "int",
-      "unit": "GB",
+      "unit": "bytes",
       "isVisible": true,
       "domain": "global",
       "serviceName": "HDFS",
@@ -281,9 +281,9 @@ module.exports =
       "name": "fs_checkpoint_size",
       "displayName": "HDFS Maximum Edit Log Size for Checkpointing",
       "description": "Maximum size of the edits log file that forces an urgent checkpoint even if the maximum checkpoint delay is not reached",
-      "defaultValue": "0.5",
+      "defaultValue": "67108864",
       "displayType": "float",
-      "unit": "GB",
+      "unit": "bytes",
       "isVisible": true,
       "domain": "global",
       "filename": "core-site.xml",