-
Notifications
You must be signed in to change notification settings - Fork 237
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
Test with Spark 3.2.1-SNAPSHOT #3479
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need this too:
+++ b/shims/spark320/src/main/scala/com/nvidia/spark/rapids/shims/spark320/SparkShimServiceProvider.scala
@@ -20,7 +20,9 @@ import com.nvidia.spark.rapids.{SparkShims, SparkShimVersion}
object SparkShimServiceProvider {
val VERSION320 = SparkShimVersion(3, 2, 0)
- val VERSIONNAMES: Seq[String] = Seq(VERSION320)
+ // temporarily allow 3.2.1 while 3.2.0 release candidates are being produced
+ val VERSION321 = SparkShimVersion(3, 2, 1)
+ val VERSIONNAMES: Seq[String] = Seq(VERSION320, VERSION321)
.flatMap(v => Seq(s"$v", s"$v-SNAPSHOT"))
}
Signed-off-by: Andy Grove <andygrove@nvidia.com>
291e228
to
55c0e54
Compare
@@ -19,7 +19,8 @@ package com.nvidia.spark.rapids.shims.spark320 | |||
import com.nvidia.spark.rapids.{SparkShims, SparkShimVersion} | |||
|
|||
object SparkShimServiceProvider { | |||
val VERSION320 = SparkShimVersion(3, 2, 0) | |||
// temporarily allow 3.2.1 while 3.2.0 release candidates are being produced | |||
val VERSION320 = SparkShimVersion(3, 2, 1) | |||
val VERSIONNAMES: Seq[String] = Seq(VERSION320) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
referencing version320 which was removed. Also I think we should leave 320 in there in case someone is using older snapshot.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
never mind on the name, realize VERSION320 just points to 3.2.1. I do think we should leave 3.2.0 as well though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tgravescs I have updated this now
I tested with this diff and I was able to test shuffle with the 3.2.0 shim against spark 3.2.1. |
build |
* Test with Spark 3.2.1-SNAPSHOT Signed-off-by: Andy Grove <andygrove@nvidia.com> * tests now run against 3.2.1-SNAPSHOT * address feedback
Change spark320 version to 3.2.1-SNAPSHOT so we can test Spark 3.2 support in CI. This is necessary as a temporary measure until 3.2.0 is released because Spark no longer publishes 3.2.0-SNAPSHOT releases and we depend on a fix that went in since they stopped publishing them.