yaooqinn commented on a change in pull request #1029:
URL: https://github.com/apache/incubator-kyuubi/pull/1029#discussion_r703130896
##########
File path:
kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala
##########
@@ -249,6 +249,22 @@ object KyuubiConf {
.checkValue(t => t > 0, "must be positive integer")
.createWithDefault(Duration.ofMinutes(1).toMillis)
+ val CREDENTIALS_HADOOP_FS_ENABLED: ConfigEntry[Boolean] =
+ buildConf("credentials.hadoopfs.enabled")
+ .doc("Whether to renew HadoopFS DelegationToken")
+ .version("1.4.0")
+ .booleanConf
+ .createWithDefault(true)
+
+ val CREDENTIALS_HADOOP_FS_URLS: ConfigEntry[Seq[String]] = KyuubiConf
Review comment:
rm KyuubiConf
##########
File path:
kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala
##########
@@ -249,6 +249,22 @@ object KyuubiConf {
.checkValue(t => t > 0, "must be positive integer")
.createWithDefault(Duration.ofMinutes(1).toMillis)
+ val CREDENTIALS_HADOOP_FS_ENABLED: ConfigEntry[Boolean] =
+ buildConf("credentials.hadoopfs.enabled")
+ .doc("Whether to renew HadoopFS DelegationToken")
+ .version("1.4.0")
+ .booleanConf
+ .createWithDefault(true)
+
+ val CREDENTIALS_HADOOP_FS_URLS: ConfigEntry[Seq[String]] = KyuubiConf
+ .buildConf("credentials.hadoopfs.urls")
+ .doc("Extra Hadoop filesystem URLs for which to request delegation tokens.
" +
Review comment:
indent
--
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]