pan3793 commented on issue #5048:
URL: https://github.com/apache/kyuubi/issues/5048#issuecomment-1633484988
In [KYUUBI #3875] `serverOnly` was introduced to filter out some sensitive
configuration propagation, but in practice, only small set of configuration is
required for engine, and this issue brings another case, engine-specific
configuration, I'm wandering maybe `engineRequried` is better
For example:
```
val ENGINE_TRINO_MEMORY: ConfigEntry[String] =
buildConf("kyuubi.engine.trino.memory")
.doc("The heap memory for the Trino query engine")
.engineRequried("trino")
.version("1.6.0")
.stringConf
.createWithDefault("1g")
```
cc @lightning-L @turboFei
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]