duckdb_azure icon indicating copy to clipboard operation
duckdb_azure copied to clipboard

Azure extension for DuckDB

Results 23 duckdb_azure issues
Sort by recently updated
recently updated
newest added

It appears that the azure extension does not currently work with R on Windows because it requires a special build (GCC 12/MinGW-w64). See https://github.com/duckdb/duckdb/pull/10204 and https://github.com/duckdb/duckdb-r/issues/100. There is a workflow...

I have a parquet file in a fabric lakehouse that I would like to map in duckdb. It works well using the dfs URL `az://onelake.dfs.fabric.microsoft.com/xxx/xxxx/Files/xxxx.parquet` (just copy pasting from fabric...

Hi there Thanks for this cool extension, that will enable lot's of use cases for us If you acquire the token outside duckdb, would be nice to be able to...

Hi, It's not really an issue but more an insight on what I plan to work on. For the moment I didn't start but when I do I will post...

Using Duckdb 0.9.2 while connecting to adls gen2 to read parquet, its unable to connect while stmt.executy(query) Gives 12002 connection timeout on network where proxy needed, if connected to others...

### What happens? duckdb.duckdb.NotImplementedException: Not implemented Error: AzureStorageFileSystem: DirectoryExists is not implemented! Facing while copying the duckdb table to azure ### To Reproduce Just while copying the table it will...

This works: ``` sql INSTALL azure; LOAD azure; CREATE SECRET test ( TYPE AZURE, PROVIDER CREDENTIAL_CHAIN, ACCOUNT_NAME 'test' ); select * from 'az://test/test.csv'; ``` This triggers a segmentation fault (in...

I have a 1.4 GB parquet file in Azure storage. I can mount the storage location using `rclone` as follows: ``` sh rclone mount account_name:container_name ~/local_mount_point --vfs-cache-mode full --max-read-ahead 1024Ki...

Azure SDK seems to have a retry mechanism that is on by default: https://github.com/Azure/azure-sdk-for-cpp/blob/b8d2301931091bbc2374706da605e954ee4d9863/sdk/core/azure-core/inc/azure/core/http/policies/policy.hpp#L79. We would like to: - confirm/test that it works as expected - expose the configuration to...