Index: common/src/java/org/apache/hadoop/hive/conf/HiveConf.java IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- common/src/java/org/apache/hadoop/hive/conf/HiveConf.java (revision 5f39266b3d5b9d2bbd121269355b8c1fac0bb72b) +++ common/src/java/org/apache/hadoop/hive/conf/HiveConf.java (revision d8c5520c3a01fa02ef7047dc846e0b8249cb43e4) @@ -3134,7 +3134,7 @@ HIVE_SERVER2_PARALLEL_COMPILATION("hive.driver.parallel.compilation", false, "Whether to\n" + "enable parallel compilation of the queries between sessions and within the same session on HiveServer2. The default is false."), HIVE_SERVER2_PARALLEL_COMPILATION_LIMIT("hive.driver.parallel.compilation.global.limit", -1, "Determines the " + - "degree of parallelism for compilation queries between sessions on HiveServer2. The default is -1."), + "degree of parallelism for queries compilation between sessions on HiveServer2. The default is -1."), HIVE_SERVER2_COMPILE_LOCK_TIMEOUT("hive.server2.compile.lock.timeout", "0s", new TimeValidator(TimeUnit.SECONDS), "Number of seconds a request will wait to acquire the compile lock before giving up. " + @@ -4495,7 +4495,8 @@ "hikaricp.,"+ "hadoop.bin.path,"+ "yarn.bin.path,"+ - "spark.home", + "spark.home,"+ + "hive.driver.parallel.compilation.global.limit", "Comma separated list of configuration options which are immutable at runtime"), HIVE_CONF_HIDDEN_LIST("hive.conf.hidden.list", METASTOREPWD.varname + "," + HIVE_SERVER2_SSL_KEYSTORE_PASSWORD.varname @@ -4509,8 +4510,7 @@ + ",fs.s3a.secret.key" + ",fs.s3a.proxy.password" + ",dfs.adls.oauth2.credential" - + ",fs.adl.oauth2.credential" - + ",hive.driver.parallel.compilation.global.limit", + + ",fs.adl.oauth2.credential", "Comma separated list of configuration options which should not be read by normal user like passwords"), HIVE_CONF_INTERNAL_VARIABLE_LIST("hive.conf.internal.variable.list", "hive.added.files.path,hive.added.jars.path,hive.added.archives.path", Index: itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestRestrictedList.java IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestRestrictedList.java (revision 5f39266b3d5b9d2bbd121269355b8c1fac0bb72b) +++ itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestRestrictedList.java (revision d8c5520c3a01fa02ef7047dc846e0b8249cb43e4) @@ -108,6 +108,7 @@ addToExpectedRestrictedMap("hive.spark.client.rpc.server.address"); addToExpectedRestrictedMap("spark.home"); addToExpectedRestrictedMap("hive.privilege.synchronizer.interval"); + addToExpectedRestrictedMap("hive.driver.parallel.compilation.global.limit"); } @AfterClass