Bump Spark 4.0.2 -> 4.0.3 (fix dlcdn 404)#696
Open
yans3meta wants to merge 1 commit into
Open
Conversation
Summary: install_spark_standalone.sh downloads Spark from dlcdn.apache.org, which only mirrors the *current* Apache release. Spark 4.0.2 has been superseded and removed from the mirror, so the install (and the public DCPerf "Spark CI" GitHub job that runs on every diff) fails: + wget https://dlcdn.apache.org/spark/spark-4.0.2/spark-4.0.2-bin-hadoop3.tgz ERROR 404: Not Found. Exception: Failed to run '.../packages/spark_standalone/install_spark_standalone.sh' Bump to the current release, 4.0.3, and update every reference to the extracted directory name (spark-4.0.2-bin-hadoop3 -> spark-4.0.3-bin-hadoop3) so the download path and all downstream paths stay in sync: - packages/spark_standalone/install_spark_standalone.sh: download URL, cached tarball check, and tar extract. - benchpress/config/benchmarks.yml: spark-sql binary path. - packages/spark_standalone/templates/proj_root/scripts/utils.py and templates/runner.py: SPARK_DIR / metastore_db runtime paths. - packages/spark_standalone/README.md: documented metastore_db paths. Differential Revision: D109883537
|
@yans3meta has exported this pull request. If you are a Meta employee, you can view the originating Diff in D109883537. |
meta-codesync Bot
pushed a commit
that referenced
this pull request
Jun 26, 2026
Summary: Pull Request resolved: #696 install_spark_standalone.sh downloads Spark from dlcdn.apache.org, which only mirrors the *current* Apache release. Spark 4.0.2 has been superseded and removed from the mirror, so the install (and the public DCPerf "Spark CI" GitHub job that runs on every diff) fails: + wget https://dlcdn.apache.org/spark/spark-4.0.2/spark-4.0.2-bin-hadoop3.tgz ERROR 404: Not Found. Exception: Failed to run '.../packages/spark_standalone/install_spark_standalone.sh' Bump to the current release, 4.0.3, and update every reference to the extracted directory name (spark-4.0.2-bin-hadoop3 -> spark-4.0.3-bin-hadoop3) so the download path and all downstream paths stay in sync: - packages/spark_standalone/install_spark_standalone.sh: download URL, cached tarball check, and tar extract. - benchpress/config/benchmarks.yml: spark-sql binary path. - packages/spark_standalone/templates/proj_root/scripts/utils.py and templates/runner.py: SPARK_DIR / metastore_db runtime paths. - packages/spark_standalone/README.md: documented metastore_db paths. Reviewed By: excelle08 Differential Revision: D109883537 fbshipit-source-id: d357d6cb680b078b4e4c415b1c8cd19ce404ce05
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary:
install_spark_standalone.sh downloads Spark from dlcdn.apache.org, which only
mirrors the current Apache release. Spark 4.0.2 has been superseded and
removed from the mirror, so the install (and the public DCPerf "Spark CI"
GitHub job that runs on every diff) fails:
ERROR 404: Not Found.
Exception: Failed to run '.../packages/spark_standalone/install_spark_standalone.sh'
Bump to the current release, 4.0.3, and update every reference to the extracted
directory name (spark-4.0.2-bin-hadoop3 -> spark-4.0.3-bin-hadoop3) so the
download path and all downstream paths stay in sync:
tarball check, and tar extract.
templates/runner.py: SPARK_DIR / metastore_db runtime paths.
Differential Revision: D109883537