-
Notifications
You must be signed in to change notification settings - Fork 29.1k
[SPARK-36345][INFRA] Update PySpark GitHubAction docker image to 20210730 #33595
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 @HyukjinKwon |
|
Kubernetes integration test starting |
|
Merged to master and branch-3.2. |
…0730 ### What changes were proposed in this pull request? This PR aims to upgrade PySpark GitHub Action job to use the latest docker image `20210730` having `sklearn` and `mlflow` additionally. - dongjoon-hyun/ApacheSparkGitHubActionImage@5ca9445 ``` $ docker run -it --rm dongjoon/apache-spark-github-action-image:20210730 python3.9 -m pip list | grep mlflow mlflow 1.19.0 $ docker run -it --rm dongjoon/apache-spark-github-action-image:20210730 python3.9 -m pip list | grep sklearn sklearn 0.0 ``` ### Why are the changes needed? This will save the installation time. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the GitHub Action PySpark jobs. Closes #33595 from dongjoon-hyun/SPARK-36345. Authored-by: Dongjoon Hyun <dhyun@apple.com> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org> (cherry picked from commit 0e65ed5) Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
|
the test failure shouldn't be related. it's from my mistake #33596 |
|
Oh, wait. Actually pandas in the docker images was upgraded to 1.3.1. I guess it caused the test failures. |
|
Kubernetes integration test status failure |
|
Oh I a bit rushed to merge. @ueshin would you mind taking a quick look please for pandas 1.3.1 upgrade? I can't work on it at this moment. Reverting it for now is fine to me too. |
|
Or we can disable the tests for now (#33598). |
|
This is reverted. |
|
@dongjoon-hyun This was also merged to 3.2. Could you revert it as well? Thanks! |
|
Thanks guys!! |
|
Test build #141908 has finished for PR 33595 at commit
|
Done 👍 |
|
Oh. Thanks, @HyukjinKwon . I missed the ping here. Sorry, @ueshin . |
What changes were proposed in this pull request?
This PR aims to upgrade PySpark GitHub Action job to use the latest docker image
20210730havingsklearnandmlflowadditionally.Why are the changes needed?
This will save the installation time.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Pass the GitHub Action PySpark jobs.