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 which_secret('s3://mybucket/my-iceberg-table/metadata/xxxx-...-xxxx.metadata.json', 's3')
It returns secret1 as expected.
However, when running:
SELECTCOUNT(*) FROM iceberg_scan('s3://mybucket/my-iceberg-table/metadata/xxxx-...-xxxx.metadata.json')
It fails with the error: HTTP Error: Unable to connect to URL "https://mybucket.s3.amazonaws.com/my-iceberg-table/metadata/snap-xxxx-...-xxxx.avro": 404 (Not Found).
Interestingly, the query works when I omit the SCOPE in the secret.
Note: I am not using AWS S3 but rather an S3-compatible service provided by our cloud provider (ceph or minio).
The text was updated successfully, but these errors were encountered:
I am creating in-memory secrets to read Iceberg tables on S3 using DuckDB v1.1.3 (Python 3.10.11).
When running the query:
It returns
secret1
as expected.However, when running:
It fails with the error:
HTTP Error: Unable to connect to URL "https://mybucket.s3.amazonaws.com/my-iceberg-table/metadata/snap-xxxx-...-xxxx.avro": 404 (Not Found)
.Interestingly, the query works when I omit the
SCOPE
in the secret.Note: I am not using AWS S3 but rather an S3-compatible service provided by our cloud provider (ceph or minio).
The text was updated successfully, but these errors were encountered: