You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From my current findings, for httplib backend the issue is on our side (we don't expand full path vs. relative path), but with curl backend the issue is on Duckdb httpfs' side:
~/duckdb-vortex with-aws ./build/release/duckdb -c "INSTALL httpfs; LOAD httpfs; SET httpfs_client_implementation=curl; SELECT count(*) FROM read_vortex('s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed/*.vortex');"
DuckDbFileSystem list 6685/merge/22445786768/fineweb/vortex-file-compressed s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed
DuckDbFileSystem list_recursive dir s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed
Binder Error:
Other error: {"exception_type":"IO","exception_message":"URL using bad/illegal format or missing URL error for HTTP GET to '/?encoding-type=url&list-type=2&prefix=6685%2Fmerge%2F22445786768%2Ffineweb%2Fvortex-file-compressed%2F'"}
LINE 1: SELECT count(*) FROM read_vortex('s3://vortex-bench-dev-eu/6685/merge/22445786768...
^
~/duckdb-vortex with-aws ./build/release/duckdb -c "INSTALL httpfs; LOAD httpfs; SET httpfs_client_implementation=httplib; SELECT count(*) FROM read_vortex('s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed/*.vortex');"
DuckDbFileSystem list 6685/merge/22445786768/fineweb/vortex-file-compressed s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed
DuckDbFileSystem list_recursive dir s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed
DuckDbFileSystem list_recursive full_path s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed/s3://vortex-bench-dev-eu/6685/merge/22445786768/fineweb/vortex-file-compressed/sample.vortex
Binder Error:
Other error: No files matched the glob pattern '6685/merge/22445786768/fineweb/vortex-file-compressed/*.vortex'
LINE 1: SELECT count(*) FROM read_vortex('s3://vortex-bench-dev-eu/6685/merge/22445786768...
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
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.
Another guess for a regression in #5767: try benchmarks with duckdb fs but with curl backend.
#5889