Skip to content

Commit 76f07c4

Browse files
christophediprimakevinjqliu
authored andcommitted
support wasb and wasbs
1 parent 8052652 commit 76f07c4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pyiceberg/io/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,8 @@ def delete(self, location: Union[str, InputFile, OutputFile]) -> None:
313313
"viewfs": [ARROW_FILE_IO],
314314
"abfs": [FSSPEC_FILE_IO],
315315
"abfss": [FSSPEC_FILE_IO],
316+
"wasb": [FSSPEC_FILE_IO],
317+
"wasbs": [FSSPEC_FILE_IO],
316318
"hf": [FSSPEC_FILE_IO],
317319
}
318320

pyiceberg/io/fsspec.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@ def _hf(properties: Properties) -> AbstractFileSystem:
232232
"s3n": _s3,
233233
"abfs": _adls,
234234
"abfss": _adls,
235+
"wasb": _adls,
236+
"wasbs": _adls,
235237
"gs": _gs,
236238
"gcs": _gs,
237239
"hf": _hf,

0 commit comments

Comments
 (0)