Skip to content

Commit

Permalink
spark-3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cfmcgrady committed Jul 25, 2023
1 parent b7db214 commit 0dc5c83
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion project/CelebornBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ object CelebornCommonSettings {
val SCALA_2_11_12 = "2.11.12"
val SCALA_2_12_10 = "2.12.10"
val SCALA_2_12_15 = "2.12.15"
val SCALA_2_12_17 = "2.12.17"
val scala213 = "2.13.5"
val ALL_SCALA_VERSIONS = Seq(SCALA_2_11_12, SCALA_2_12_10, SCALA_2_12_15, scala213)
val ALL_SCALA_VERSIONS = Seq(SCALA_2_11_12, SCALA_2_12_10, SCALA_2_12_15, SCALA_2_12_17, scala213)

val DEFAULT_SCALA_VERSION = SCALA_2_12_15

Expand Down Expand Up @@ -173,6 +174,7 @@ object Utils {
case Some("spark-3.1") => Some(Spark31)
case Some("spark-3.2") => Some(Spark32)
case Some("spark-3.3") => Some(Spark33)
case Some("spark-3.4") => Some(Spark34)
case _ => None
}

Expand Down Expand Up @@ -409,6 +411,20 @@ object Spark33 extends SparkClientProjects {
val zstdJniVersion = "1.5.2-1"
}

object Spark34 extends SparkClientProjects {

val sparkClientProjectPath = "client-spark/spark-3"
val sparkClientProjectName = "celeborn-client-spark-3"
val sparkClientShadeProjectPath = "client-spark/spark-3-shade"
val sparkClientShadeProjectName = "celeborn-client-spark-3-shaded"

val lz4JavaVersion = "1.8.0"
val sparkProjectScalaVersion = "2.12.17"

val sparkVersion = "3.4.1"
val zstdJniVersion = "1.5.2-5"
}

trait SparkClientProjects {

val sparkClientProjectPath: String
Expand Down

0 comments on commit 0dc5c83

Please sign in to comment.