-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-44530][CORE][CONNECT] Move SparkBuildInfo to common/util #42133
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
|
cc @amaliujia |
|
The CI doesn't look relevant. Pyspark jobs seem to have issues. |
|
There may be some issue. Before this PR, after packaging through Maven, there would be a file named However, after this PR, I did not find it in |
|
I build a new client with this pr(dev/make-distribution.sh --tgz ), then run |
common/utils/pom.xml
Outdated
| <!-- Execute the shell script to generate the spark build information. --> | ||
| <target> | ||
| <exec executable="${shell}"> | ||
| <arg value="${project.basedir}/../build/${spark-build-info-script}"/> |
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.
| <arg value="${project.basedir}/../build/${spark-build-info-script}"/> | |
| <arg value="${project.basedir}/../../build/${spark-build-info-script}"/> |
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.
@hvanhovell with this change , bin/spark-shell --master local can run successful
|
Merging this. Failures are unrelated. |
### What changes were proposed in this pull request? This PR moves `SparkBuildInfo` and the code that generates its properties to `common/util`. ### Why are the changes needed? We need `SparkBuildInfo` in the connect scala client and we are removing connect's dependency on `core`. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Existing tests. Closes #42133 from hvanhovell/SPARK-44530. Authored-by: Herman van Hovell <[email protected]> Signed-off-by: Herman van Hovell <[email protected]> (cherry picked from commit 3518799) Signed-off-by: Herman van Hovell <[email protected]>
What changes were proposed in this pull request?
This PR moves
SparkBuildInfoand the code that generates its properties tocommon/util.Why are the changes needed?
We need
SparkBuildInfoin the connect scala client and we are removing connect's dependency oncore.Does this PR introduce any user-facing change?
No
How was this patch tested?
Existing tests.