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
I tried to mount Azure blob storage as a file system in order to read one specific file from AzureBlobStorage.
I used another extension, "spatial," which can read and open the ".gdbtable" format for reading files.
Here, I want to read this file directly to avoid downloading it to the worker and just put all the data into a duckdb table
con.sql(query='CREATE OR REPLACE TABLE GPKG_FILE AS SELECT * FROM ST_Read("abfss://redacted/dat-redacted/raw_data/v55/a00000007.gdbtable")')
The error traceback
Traceback (most recent call last):
File "/Users/redacted/Library/Caches/pypoetry/virtualenvs/com-ing-connector-XVl8hQFI-py3.11/lib/python3.11/site-packages/IPython/core/interactiveshell.py", line 3577, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-29-c75b6f8e2a1a>", line 1, in <module>
con.sql(query='CREATE OR REPLACE TABLE GPKG_FILE AS SELECT * FROM ST_Read("abfss://redacted/dat-redacted/raw_data/v55/a00000007.gdbtable")')
duckdb.duckdb.NotImplementedException: Not implemented Error: AzureDfsStorageFileSystem: FileExists is not implemented!
Also, I have the same with
con.sql(query='CREATE OR REPLACE TABLE GPKG_FILE AS SELECT * FROM ST_Read("az://dat-redacted/raw_data/v55/a00000007.gdbtable")')
The error traceback
Traceback (most recent call last):
File "/Users/redacted/Library/Caches/pypoetry/virtualenvs/com-ing-connector-XVl8hQFI-py3.11/lib/python3.11/site-packages/IPython/core/interactiveshell.py", line 3577, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-28-6b82186ab390>", line 1, in <module>
con.sql(query='CREATE OR REPLACE TABLE GPKG_FILE AS SELECT * FROM ST_Read("az://dat-redacted/raw_data/v55/a00000007.gdbtable")')
duckdb.duckdb.NotImplementedException: Not implemented Error: AzureBlobStorageFileSystem: DirectoryExists is not implemented!
The text was updated successfully, but these errors were encountered:
I tried to mount Azure blob storage as a file system in order to read one specific file from AzureBlobStorage.
I used another extension, "spatial," which can read and open the ".gdbtable" format for reading files.
Here, I want to read this file directly to avoid downloading it to the worker and just put all the data into a duckdb table
The error traceback
Also, I have the same with
The error traceback
The text was updated successfully, but these errors were encountered: