Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Spark to version 3.1.1 #247

Merged
merged 11 commits into from
May 4, 2021
10 changes: 2 additions & 8 deletions benchmarks/apache-spark/build.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
lazy val renaissanceCore = RootProject(uri("../../renaissance-core"))

// Note: these versions should not be changed here.
// If we want to target a different Spark version, we should instead clone this subproject.
// That way, we make it convenient to run the old versions,
// and avoid the benchmarking of a moving target.
val sparkScalaVersion = "2.12.13"

val sparkVersion = "3.0.1"
val sparkVersion = "3.1.1"

lazy val apacheSpark = (project in file("."))
.settings(
name := "apache-spark",
version := (version in renaissanceCore).value,
organization := (organization in renaissanceCore).value,
scalaVersion := sparkScalaVersion,
scalaVersion := "2.12.13",
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion,
"org.apache.spark" %% "spark-sql" % sparkVersion,
Expand Down