-
Notifications
You must be signed in to change notification settings - Fork 139
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
wasm range request fails on Firefox #1932
Comments
Go |
I'd suggest trying
source: https://motherduck.com/blog/getting-started-gis-duckdb/ |
@fkauker-fsq exact same error |
Thanks for raising. I do reproduce. Problem here is a non-trivial problem where the request being sent out of the browser has this headers:
and comes back a resource with those headers:
Problem is that the resource here should have length 16384 AFTER decompression, while here it's 16384 pre-decompression and 125KB afterwards. Given there is a browser in the middle, I would think here it's the server that it's not compliant, I would need to check how to detect this and fall back to a simpler strategy (ideally warning of current problem). |
What happens?
If you type this query into shell.duckdb.org:
SELECT bbox FROM read_json('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson');
on Firefox, you get a "failed range request" error.
See observablehq/framework#1886
To Reproduce
Open Firefox to shell.duckdb.org, and type this query:
SELECT bbox FROM read_json('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson');
Browser/Environment:
Firefox 133.0.3 (aarch64)
Device:
Macbook Air
DuckDB-Wasm Version:
@duckdb/[email protected]
DuckDB-Wasm Deployment:
https://shell.duckdb.org/
Full Name:
Fil Rivière
Affiliation:
Observable
The text was updated successfully, but these errors were encountered: