-
Notifications
You must be signed in to change notification settings - Fork 32
add support for Apache Spark 2.3 #403
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
Conversation
|
Ideally we would add a test build on Travis with Spark 2.3.x. |
ajnavarro
left a comment
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.
I would prefer to add travis 2.3.x execution on this PR too.
|
|
||
| def apply[T](s22: T, s23: T): T = SPARK_VERSION match { | ||
| case s if s.startsWith("2.2.") => s22 | ||
| case s if s.startsWith("2.3.") => s23 |
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.
Should we use complete versions? I think we needed to change some internal call to move from 2.2.0 to 2.2.1
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.
nevermind, It was moving from 2.1.x to 2.2.x
|
@ajnavarro 👍 Let's not merge this until proper CI is in place. |
|
Great! Just sharing, in case this example of CI from Gemini, that can be used with different Spark versions could help here. |
- A new private package `compat` is added with compatibility shims. - Shims for apply/unapply on LogicalRelation are added with compatibility with Spark 2.2.x and 2.3.x. - If an unsupported Spark version is used, a human-readable exception is thrown. Signed-off-by: Santiago M. Mola <santiago@sourced.tech>
- Test Apache Spark 2.2.1 and 2.3.1 on Travis. - Use stage builds. Signed-off-by: Santiago M. Mola <santiago@sourced.tech>
|
Added CI (migrated to Travis Build Stages). |
A new private package
compatis added with compatibility shims.Shims for apply/unapply on LogicalRelation are added with compatibility
with Spark 2.2.x and 2.3.x.
If an unsupported Spark version is used, a human-readable exception is thrown.