pan3793 commented on code in PR #7055: URL: https://github.com/apache/kyuubi/pull/7055#discussion_r2083745070
########## kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala: ########## @@ -2843,6 +2854,22 @@ object KyuubiConf { .stringConf .createWithDefault("ENGINE") + val SERVER_ONLY_PREFIXES: ConfigEntry[Set[String]] = + buildConf("kyuubi.config.server.only.prefixes") + .internal + .serverOnly + .doc("A comma-separated list of prefixes for server-only configs. It's used to filter out " + + "the server-only configs to prevent passing them to the engine end. Note that, " + + "it only take affects for the configs that is not defined as a Kyuubi ConfigEntry. " + + "For example, you can exclude `kyuubi.kubernetes.28.master.address=k8s://master` by" + + " setting it to `kyuubi.kubernetes.28.`.") Review Comment: ```suggestion "For example, you can exclude `kyuubi.kubernetes.28.master.address=k8s://master` by " + "setting it to `kyuubi.kubernetes.28.`.") ``` -- 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: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org