voonhous opened a new pull request, #17723:
URL: https://github.com/apache/hudi/pull/17723
### Describe the issue this Pull Request addresses
<!-- Either describe the issue inline here with motivation behind the
changes
(or) link to an issue by including `Closes #<issue-number>` for
context.
If this PR includes changes to the storage format, public APIs,
or has breaking changes, use `!` (e.g., feat!: ...) -->
`archive.apache.org` seems to be a low-bandwidth, rate-limited server
intended for historical reference, not for active CI/CD builds.
We are getting a bunch of operation timeout errors when trying to download
the binary here:
```log
#13 [ 8/19] RUN if [[ /opt/bundle-validation/spark-3.5.0-bin-hadoop3 =~
'spark-3.2' ]] || [[ /opt/bundle-validation/spark-3.5.0-bin-hadoop3 =~
'spark-3.3' ]]; then printf "\nspark.sql.catalog.spark_catalog
org.apache.spark.sql.hudi.catalog.HoodieCatalog\n" >>
/opt/bundle-validation/spark-3.5.0-bin-hadoop3/conf/spark-defaults.conf; fi
#13 DONE 0.1s
#14 [ 9/19] RUN printf "\ntaskmanager.numberOfTaskSlots: 2\n" >>
/opt/bundle-validation/flink-1.18.0/conf/flink-conf.yaml
#14 DONE 0.1s
#15 [10/19] RUN printf "\nlocalhost\n" >>
/opt/bundle-validation/flink-1.18.0/conf/workers
#15 DONE 0.1s
#16 [11/19] RUN wget
https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
#16 0.146 Connecting to archive.apache.org (65.108.204.189:443)
#16 134.7 wget: can't connect to remote host (65.108.204.189): Operation
timed out
#16 ERROR: process "/bin/sh -c wget
https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz"
did not complete successfully: exit code: 1
```
Switching to `repo.apache.org` which looks to be more stable.
#### `archive.apache.org` DIG
```log
$ dig archive.apache.org
; <<>> DiG 9.10.6 <<>> archive.apache.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 11801
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;archive.apache.org. IN A
;; ANSWER SECTION:
archive.apache.org. 1800 IN A 65.108.204.189
;; Query time: 15 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Fri Dec 26 16:43:18 +08 2025
;; MSG SIZE rcvd: 63
````
#### `repo.apache.org` DIG
```log
$ dig repo.maven.apache.org
; <<>> DiG 9.10.6 <<>> repo.maven.apache.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 32062
;; flags: qr rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;repo.maven.apache.org. IN A
;; ANSWER SECTION:
repo.maven.apache.org. 6661 IN CNAME repo.apache.maven.org.
repo.apache.maven.org. 45 IN CNAME
repo.apache.maven.org.cdn.cloudflare.net.
repo.apache.maven.org.cdn.cloudflare.net. 60 IN A 104.18.19.12
repo.apache.maven.org.cdn.cloudflare.net. 60 IN A 104.18.18.12
```
#### Hash comparison of binary from both URLs
```shell
$ curl -sL
https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.tar.gz
| md5sum
9792c717f5845d952907d5144b8253c3 -
$ curl -sL
https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
| md5sum
9792c717f5845d952907d5144b8253c3 -
```
### Summary and Changelog
None
### Impact
None
### Risk Level
None
### Documentation Update
<!-- Describe any necessary documentation update if there is any new
feature, config, or user-facing change. If not, put "none".
None
### Contributor's checklist
- [ ] Read through [contributor's
guide](https://hudi.apache.org/contribute/how-to-contribute)
- [ ] Enough context is provided in the sections above
- [ ] Adequate tests were added if applicable
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]