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

   Pulling the example out of the notebook:
   
   ```
   table = catalog.create_table(
       "default.taxi_dataset",
       
schema=df.schema,location="abfss://onelakene.dfs.core.windows.net/aemo/iceberg"
   )
   ```
   error:
   ```
   WARNING:pyiceberg.io:Could not initialize FileIO: 
pyiceberg.io.fsspec.FsspecFileIO
   ---------------------------------------------------------------------------
   ValueError                                Traceback (most recent call last)
   <ipython-input-4-f052e36c7671> in <cell line: 1>()
   ----> 1 table = catalog.create_table(
         2     "default.taxi_dataset",
         3     
schema=df.schema,location="abfss://onelakene.dfs.core.windows.net/aemo/iceberg"
         4 )
   
   3 frames
   /usr/local/lib/python3.10/dist-packages/pyiceberg/io/pyarrow.py in 
_initialize_fs(self, scheme, netloc)
       390             return PyArrowLocalFileSystem()
       391         else:
   --> 392             raise ValueError(f"Unrecognized filesystem type in URI: 
{scheme}")
       393 
       394     def new_input(self, location: str) -> PyArrowFile:
   
   ValueError: Unrecognized filesystem type in URI: abfss
   ```


-- 
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