huaxiangsun commented on code in PR #4493:
URL: https://github.com/apache/hbase/pull/4493#discussion_r890729240
##########
hbase-server/src/main/java/org/apache/hadoop/hbase/HBaseServerBase.java:
##########
@@ -227,8 +227,13 @@ protected final void initializeFileSystem() throws
IOException {
// init the filesystem
this.dataFs = new HFileSystem(this.conf, useHBaseChecksum);
this.dataRootDir = CommonFSUtils.getRootDir(this.conf);
+ boolean tableDescriptorParallelLoadEnable =
+ conf.getBoolean("hbase.tabledescriptor.parallel.load.enable", false);
+ int tableDescriptorParallelLoadThreads =
+ conf.getInt("hbase.tabledescriptor.parallel.load.threads", 10);
Review Comment:
Is hbase.tabledescriptor.parallel.load.enable needed? If
hbase.tabledescriptor.parallel.load.threads is configured as > 0, it means
hbase.tabledescriptor.parallel.load.enable is true, otherwise, it is false.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]