Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/security/authorization/spark/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The available `spark.version`s are shown in the following table.
| 3.5.x | √ | - |
| 3.4.x | √ | - |
| 3.3.x | √ | - |
| 3.2.x | | - |
| 3.2.x | x | EOL since v1.11.0 |
| 3.1.x | x | EOL since v1.10.0 |
| 3.0.x | x | EOL since v1.9.0 |
| 2.4.x and earlier | × | [PR 2367](https://github.com/apache/kyuubi/pull/2367) is used to track how we work with older releases with scala 2.11 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ object FlinkEngineUtils extends Logging {
val flinkVersion = EnvironmentInformation.getVersion
if (SUPPORTED_FLINK_VERSIONS.contains(FLINK_RUNTIME_VERSION)) {
info(s"The current Flink version is $flinkVersion")
if (FlinkEngineUtils.FLINK_RUNTIME_VERSION <= "1.18") {
warn("The support for Flink 1.17 and 1.18 are deprecated, and will be removed " +
"in the next version.")
if (FlinkEngineUtils.FLINK_RUNTIME_VERSION <= "1.19") {
warn("The support for Flink 1.17, 1.18 and 1.19 is deprecated, and will be removed " +
"in a future version.")
}
} else {
throw new UnsupportedOperationException(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,10 @@ object SparkSQLEngine extends Logging {
}

def main(args: Array[String]): Unit = {
if (KyuubiSparkUtil.SPARK_ENGINE_RUNTIME_VERSION <= "3.4") {
warn("The support for Spark 3.3 and 3.4 is deprecated, and will be removed " +
"in a future version.")
}
val startedTime = System.currentTimeMillis()
val submitTime = kyuubiConf.getOption(KYUUBI_ENGINE_SUBMIT_TIME_KEY) match {
case Some(t) => t.toLong
Expand Down
Loading