Skip to content

Commit

Permalink
[KYUUBI apache#1652] Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
link3280 committed Apr 4, 2023
1 parent 769d1a8 commit 490559c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/deployment/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ You can configure the Kyuubi properties in `$KYUUBI_HOME/conf/kyuubi-defaults.co
| kyuubi.engine.deregister.job.max.failures | 4 | Number of failures of job before deregistering the engine. | int | 1.2.0 |
| kyuubi.engine.event.json.log.path | file:///tmp/kyuubi/events | The location where all the engine events go for the built-in JSON logger.<ul><li>Local Path: start with 'file://'</li><li>HDFS Path: start with 'hdfs://'</li></ul> | string | 1.3.0 |
| kyuubi.engine.event.loggers | SPARK | A comma-separated list of engine history loggers, where engine/session/operation etc events go.<ul> <li>SPARK: the events will be written to the Spark listener bus.</li> <li>JSON: the events will be written to the location of kyuubi.engine.event.json.log.path</li> <li>JDBC: to be done</li> <li>CUSTOM: User-defined event handlers.</li></ul> Note that: Kyuubi supports custom event handlers with the Java SPI. To register a custom event handler, the user needs to implement a subclass of `org.apache.kyuubi.events.handler.CustomEventHandlerProvider` which has a zero-arg constructor. | seq | 1.3.0 |
| kyuubi.engine.flink.application.jars | &lt;undefined&gt; | A semicolon-separated list of the jars to be shipped with the job to the cluster.For example SQL UDF jars. Only effective in yarn application mode. | string | 1.8.0 |
| kyuubi.engine.flink.application.jars | &lt;undefined&gt; | A semicolon-separated list of the jars to be shipped with the job to the cluster. For example, SQL UDF jars. Only effective in yarn application mode. | string | 1.8.0 |
| kyuubi.engine.flink.extra.classpath | &lt;undefined&gt; | The extra classpath for the Flink SQL engine, for configuring the location of hadoop client jars, etc. Only effective in yarn session mode. | string | 1.6.0 |
| kyuubi.engine.flink.java.options | &lt;undefined&gt; | The extra Java options for the Flink SQL engine. Only effective in yarn session mode. | string | 1.6.0 |
| kyuubi.engine.flink.memory | 1g | The heap memory for the Flink SQL engine. Only effective in yarn session mode. | string | 1.6.0 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2380,8 +2380,8 @@ object KyuubiConf {

val ENGINE_FLINK_APPLICATION_JARS: OptionalConfigEntry[String] =
buildConf("kyuubi.engine.flink.application.jars")
.doc("A semicolon-separated list of the jars to be shipped with the job to the cluster." +
"For example SQL UDF jars. Only effective in yarn application mode.")
.doc("A semicolon-separated list of the jars to be shipped with the job to the cluster. " +
"For example, SQL UDF jars. Only effective in yarn application mode.")
.version("1.8.0")
.stringConf
.createOptional
Expand Down

0 comments on commit 490559c

Please sign in to comment.