For Workers & Pages, what is the name of the domain?
alltheplaces-data.openaddresses.io
What is the issue or error you’re encountering
HTTP GET requests with a Range header to my bucket that has Incremental Migration enabled return data beyond what was requested. For example, curl 'https://alltheplaces-data.openaddresses.io/runs/2025-03-15-13-32-10/output.pmtiles' -H 'range: bytes=0-16383' | wc -c
downloads the whole file instead of returning just the first 16K as requested. The same request through the r2.dev endpoint works as expected: curl 'https://pub-000ea379ac234b53924d6f50102f4d3d.r2.dev/runs/2025-03-15-13-32-10/output.pmtiles' -H 'range: bytes=0-16383' | wc -c
. This worked as recently as a week or two ago.
What are the steps to reproduce the issue?
- Create an R2 bucket
- Enable Sippy / “Incremental migration” with an S3 bucket
- Make an HTTP GET with a
Range
request header