[KYUUBI #3255] Add miss engine type config docs
### _Why are the changes needed?_ master branch has supported 5 engine types. the docs of `kyuubi.engine.type` missed hive and jdbc. ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #3255 from ulysses-you/engine-type. Closes #3255 a1f3c320 [ulysses-you] add config Authored-by: ulysses-you <ulyssesyou18@gmail.com> Signed-off-by: ulysses-you <ulyssesyou@apache.org>
This commit is contained in:
parent
92f3a532e2
commit
a3b6c67567
@ -253,7 +253,7 @@ kyuubi.engine.single.spark.session|false|When set to true, this engine is runnin
|
||||
kyuubi.engine.trino.extra.classpath|<undefined>|The extra classpath for the trino query engine, for configuring other libs which may need by the trino engine |string|1.6.0
|
||||
kyuubi.engine.trino.java.options|<undefined>|The extra java options for the trino query engine|string|1.6.0
|
||||
kyuubi.engine.trino.memory|1g|The heap memory for the trino query engine|string|1.6.0
|
||||
kyuubi.engine.type|SPARK_SQL|Specify the detailed engine that supported by the Kyuubi. The engine type bindings to SESSION scope. This configuration is experimental. Currently, available configs are: <ul> <li>SPARK_SQL: specify this engine type will launch a Spark engine which can provide all the capacity of the Apache Spark. Note, it's a default engine type.</li> <li>FLINK_SQL: specify this engine type will launch a Flink engine which can provide all the capacity of the Apache Flink.</li> <li>TRINO: specify this engine type will launch a Trino engine which can provide all the capacity of the Trino.</li></ul>|string|1.4.0
|
||||
kyuubi.engine.type|SPARK_SQL|Specify the detailed engine that supported by the Kyuubi. The engine type bindings to SESSION scope. This configuration is experimental. Currently, available configs are: <ul> <li>SPARK_SQL: specify this engine type will launch a Spark engine which can provide all the capacity of the Apache Spark. Note, it's a default engine type.</li> <li>FLINK_SQL: specify this engine type will launch a Flink engine which can provide all the capacity of the Apache Flink.</li> <li>TRINO: specify this engine type will launch a Trino engine which can provide all the capacity of the Trino.</li> <li>HIVE_SQL: specify this engine type will launch a Hive engine which can provide all the capacity of the Hive Server2.</li> <li>JDBC: specify this engine type will launch a JDBC engine which can provide a mysql protocol connector, for now we only support Doris dialect.</li></ul>|string|1.4.0
|
||||
kyuubi.engine.ui.retainedSessions|200|The number of SQL client sessions kept in the Kyuubi Query Engine web UI.|int|1.4.0
|
||||
kyuubi.engine.ui.retainedStatements|200|The number of statements kept in the Kyuubi Query Engine web UI.|int|1.4.0
|
||||
kyuubi.engine.ui.stop.enabled|true|When true, allows Kyuubi engine to be killed from the Spark Web UI.|boolean|1.3.0
|
||||
|
||||
@ -1329,6 +1329,10 @@ object KyuubiConf {
|
||||
" all the capacity of the Apache Flink.</li>" +
|
||||
" <li>TRINO: specify this engine type will launch a Trino engine which can provide" +
|
||||
" all the capacity of the Trino.</li>" +
|
||||
" <li>HIVE_SQL: specify this engine type will launch a Hive engine which can provide" +
|
||||
" all the capacity of the Hive Server2.</li>" +
|
||||
" <li>JDBC: specify this engine type will launch a JDBC engine which can provide" +
|
||||
" a mysql protocol connector, for now we only support Doris dialect.</li>" +
|
||||
"</ul>")
|
||||
.version("1.4.0")
|
||||
.stringConf
|
||||
|
||||
Loading…
Reference in New Issue
Block a user