You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ww...@apache.org on 2017/07/16 14:45:51 UTC

hadoop git commit: HDFS-12148. Ozone: TestOzoneConfigurationFields is failing because ozone-default.xml has some missing properties. Contributed by Weiwei Yang.

Repository: hadoop
Updated Branches:
  refs/heads/HDFS-7240 8f122a750 -> 1bec6a11a


HDFS-12148. Ozone: TestOzoneConfigurationFields is failing because ozone-default.xml has some missing properties. Contributed by Weiwei Yang.


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/1bec6a11
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/1bec6a11
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/1bec6a11

Branch: refs/heads/HDFS-7240
Commit: 1bec6a11a2bc52f798e279dbe2f73a6270619f37
Parents: 8f122a7
Author: Weiwei Yang <ww...@apache.org>
Authored: Sun Jul 16 22:40:20 2017 +0800
Committer: Weiwei Yang <ww...@apache.org>
Committed: Sun Jul 16 22:41:45 2017 +0800

----------------------------------------------------------------------
 .../src/main/resources/ozone-default.xml        | 31 ++++++++++++++++++++
 1 file changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/1bec6a11/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/ozone-default.xml
----------------------------------------------------------------------
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/ozone-default.xml b/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/ozone-default.xml
index cd444e9..bd29ce4 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/ozone-default.xml
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/resources/ozone-default.xml
@@ -328,6 +328,37 @@
   </property>
 
   <property>
+    <name>ozone.scm.max.container.report.threads</name>
+    <value>100</value>
+    <description>
+      Maximum number of threads to process container reports in scm.
+      Each container report from a datanode is processed by scm in
+      a worker thread, fetched from a thread pool. This property is
+      used to control the maximum size of the thread pool.
+    </description>
+  </property>
+
+  <property>
+    <name>ozone.scm.container.reports.wait.timeout.seconds</name>
+    <value>300</value>
+    <description>
+      Maximum time to wait in seconds for processing all container
+      reports from a node pool. It determines the timeout for a
+      node pool reports.
+    </description>
+  </property>
+
+  <property>
+    <name>ozone.scm.container.report.processing.interval.seconds</name>
+    <value>60</value>
+    <description>
+      Time interval in seconds for scm to process container reports
+      for a node pool. Scm handles node pool reports in a cyclic clock
+      manner, it fetches pools periodically with this time interval.
+    </description>
+  </property>
+
+  <property>
     <name>dfs.container.ipc</name>
     <value>50011</value>
     <description>


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org