HDFS-15942. Increase Quota initialization threads. Contributed by Stephen O'Donnell.

This commit is contained in:
He Xiaoqiao 2021-04-06 21:22:48 +08:00
parent e86050fae5
commit 459df41997
No known key found for this signature in database
GPG Key ID: A80CC124E9A0FA63
2 changed files with 3 additions and 3 deletions

View File

@ -374,7 +374,7 @@ public class DFSConfigKeys extends CommonConfigurationKeys {
public static final String DFS_NAMENODE_EDITS_DIR_MINIMUM_KEY = "dfs.namenode.edits.dir.minimum";
public static final int DFS_NAMENODE_EDITS_DIR_MINIMUM_DEFAULT = 1;
public static final String DFS_NAMENODE_QUOTA_INIT_THREADS_KEY = "dfs.namenode.quota.init-threads";
public static final int DFS_NAMENODE_QUOTA_INIT_THREADS_DEFAULT = 4;
public static final int DFS_NAMENODE_QUOTA_INIT_THREADS_DEFAULT = 12;
public static final String DFS_NAMENODE_EDIT_LOG_AUTOROLL_MULTIPLIER_THRESHOLD = "dfs.namenode.edit.log.autoroll.multiplier.threshold";
public static final float

View File

@ -3735,11 +3735,11 @@
<property>
<name>dfs.namenode.quota.init-threads</name>
<value>4</value>
<value>12</value>
<description>
The number of concurrent threads to be used in quota initialization. The
speed of quota initialization also affects the namenode fail-over latency.
If the size of name space is big, try increasing this.
If the size of name space is big, try increasing this to 16 or higher.
</description>
</property>