kevinjqliu commented on issue #527:
URL: https://github.com/apache/iceberg-python/issues/527#issuecomment-2002034161

   In the meantime, I think you might be able to workaround this by explicitly 
using fsspec. 
   You'd have to set this in the catalog properties setting
   ```
   catalog = SqlCatalog(
       "default",
       **{
           "uri": "sqlite:///:memory:",
           "adlfs.account-name": userdata.get("account_name") ,
           "adlfs.account-key": userdata.get ("AZURE_STORAGE_ACCOUNT_KEY"),
           "adlfs.tenant-id" : userdata.get("azure_storage_tenant_id"),
           "py-io-impl": "pyiceberg.io.fsspec.FsspecFileIO"
       },
   )
   ```
   
https://github.com/apache/iceberg-python/blob/7f712fdad025a2110816ec217616de54631f1e3e/pyiceberg/catalog/sql.py#L185
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to