-
Notifications
You must be signed in to change notification settings - Fork 80
Support Spark 4.x #450
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
Open
pang-wu
wants to merge
34
commits into
ray-project:master
Choose a base branch
from
pang-wu:pang/spark4
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Support Spark 4.x #450
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
a45140e
do one hop forward fetch if recache data change executor
pang-wu 22259a6
more robust executor id parse
pang-wu 7b50558
add test
pang-wu 75bff2e
add test
pang-wu 32935ab
remove test
pang-wu 099007f
revert change in dataset.py
pang-wu a489788
clean up
pang-wu 2c8df45
clean up
pang-wu fb31b09
strip off table metadata again
pang-wu b60bffd
fix spark gc race condition
pang-wu 86564cb
Add spark 3.4.4 and 3.5.4 support
pang-wu 5334d13
Support Spark 4.0.0
pang-wu b64a284
exclude spark 3.x
pang-wu 64f9794
add distribution
pang-wu 67faeb5
lint
pang-wu 0a71973
Do not use largeVarTypes
pang-wu 067f277
class to classic session to convert internalRowRdd to rdd
pang-wu 0651c9d
arrow to rdd
pang-wu f3f6e75
pin click<8.3.0
pang-wu 66656ee
make jackson provided
pang-wu 90a4699
Support spark 4.0.1
pang-wu 201e96a
tf/estimator.py: only write checkpoint in rank0
pang-wu f520469
revert tf/estimator.py
pang-wu 679eca6
support spark 4.1.x
pang-wu 6c7a1b3
deprecate python 3.9, add 3.11 to CI
pang-wu 187ce96
update pylint
pang-wu 8cfc832
fix pyint rules
pang-wu 6473ccc
fix tensorflow version
pang-wu 93d5d42
pin pandas<3 version
pang-wu f83db26
remove df.sqlContext reference
pang-wu 7d4c4de
extract commandlineutils to custom spark submit
pang-wu e7148fe
add new shims
pang-wu 1989452
compile against 4.0.0
pang-wu a86d51d
use legacy keras
pang-wu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,11 +13,13 @@ | |
| <url>https://github.com/ray-project/raydp.git</url> | ||
|
|
||
| <properties> | ||
| <spark.version>3.3.3</spark.version> | ||
| <spark.version>4.0.0</spark.version> | ||
| <spark322.version>3.2.2</spark322.version> | ||
| <spark330.version>3.3.0</spark330.version> | ||
| <spark340.version>3.4.0</spark340.version> | ||
| <spark350.version>3.5.0</spark350.version> | ||
| <spark400.version>4.0.0</spark400.version> | ||
| <spark410.version>4.1.0</spark410.version> | ||
| <snappy.version>1.1.10.4</snappy.version> | ||
| <netty.version>4.1.94.Final</netty.version> | ||
| <commons.text.version>1.10.0</commons.text.version> | ||
|
|
@@ -27,11 +29,11 @@ | |
| <ivy.version>2.5.2</ivy.version> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Maven compiler source/target is still |
||
| <maven.compiler.source>1.8</maven.compiler.source> | ||
| <maven.compiler.target>1.8</maven.compiler.target> | ||
| <scala.version>2.12.15</scala.version> | ||
| <jackson.version>2.18.6</jackson.version> | ||
| <scala.binary.version>2.12</scala.binary.version> | ||
| <maven.compiler.source>17</maven.compiler.source> | ||
| <maven.compiler.target>17</maven.compiler.target> | ||
| <scala.version>2.13.12</scala.version> | ||
| <jackson.version>2.18.2</jackson.version> | ||
| <scala.binary.version>2.13</scala.binary.version> | ||
| <junit-jupiter.version>5.10.1</junit-jupiter.version> | ||
| </properties> | ||
|
|
||
|
|
@@ -151,23 +153,27 @@ | |
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-core</artifactId> | ||
| <version>${jackson.version}</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-databind</artifactId> | ||
| <version>${jackson.version}</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-annotations</artifactId> | ||
| <version>${jackson.version}</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <!-- Guava is excluded because of SPARK-6149. The Guava version referenced in this module is | ||
| 15.0, which causes runtime incompatibility issues. --> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.module</groupId> | ||
| <artifactId>jackson-module-scala_${scala.binary.version}</artifactId> | ||
| <version>${jackson.version}</version> | ||
| <scope>provided</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>com.google.guava</groupId> | ||
|
|
@@ -179,6 +185,7 @@ | |
| <groupId>com.fasterxml.jackson.module</groupId> | ||
| <artifactId>jackson-module-jaxb-annotations</artifactId> | ||
| <version>${jackson.version}</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Minor:
spark410.versionis4.1.0— worth bumping to4.1.1(current release)? TheSparkShimProvideralready covers it at runtime, but compiling against the latest patch would catch any API changes at build time.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 keep it 4.1.0 -- the idea is we should support the minimum API from the initial version otherwise the lib might introduce broken changes between Spark's patch versions (Spark is supposed to be backward compatible on patch versions)