Skip to content

Commit f38ca7e

Browse files
committed
Use archive.apache.org URLs in README as they are more stable
download.apache.org tends to only have the latest x.y versions
1 parent 148f14d commit f38ca7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ Spark 3.2.x is the recommended runtime to use. The rest of the instructions are
5050
To place Spark under `/opt/`:
5151

5252
```bash
53-
curl https://downloads.apache.org/spark/spark-3.2.2/spark-3.2.2-bin-hadoop3.2.tgz | sudo tar -xz -C /opt/
53+
curl https://archive.apache.org/dist/spark/spark-3.2.2/spark-3.2.2-bin-hadoop3.2.tgz | sudo tar -xz -C /opt/
5454
export SPARK_HOME="/opt/spark-3.2.2-bin-hadoop3.2"
5555
export PATH="$SPARK_HOME/bin":"$PATH"
5656
```
5757

5858
To place under `~/`:
5959

6060
```bash
61-
curl https://downloads.apache.org/spark/spark-3.2.2/spark-3.2.2-bin-hadoop3.2.tgz | tar -xz -C ~/
61+
curl https://archive.apache.org/dist/spark/spark-3.2.2/spark-3.2.2-bin-hadoop3.2.tgz | tar -xz -C ~/
6262
export SPARK_HOME=~/spark-3.2.2-bin-hadoop3.2
6363
export PATH="$SPARK_HOME/bin":"$PATH"
6464
```

0 commit comments

Comments
 (0)