Skip to content

Commit 51fe1e4

Browse files
support wasb and wasbs
1 parent ee11bb0 commit 51fe1e4

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
@@ -304,6 +304,8 @@ def delete(self, location: Union[str, InputFile, OutputFile]) -> None:
304304
"viewfs": [ARROW_FILE_IO],
305305
"abfs": [FSSPEC_FILE_IO],
306306
"abfss": [FSSPEC_FILE_IO],
307+
"wasb": [FSSPEC_FILE_IO],
308+
"wasbs": [FSSPEC_FILE_IO],
307309
}
308310

309311

pyiceberg/io/fsspec.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,8 @@ def _adls(properties: Properties) -> AbstractFileSystem:
217217
"s3n": _s3,
218218
"abfs": _adls,
219219
"abfss": _adls,
220+
"wasb": _adls,
221+
"wasbs": _adls,
220222
"gs": _gs,
221223
"gcs": _gs,
222224
}

0 commit comments

Comments
 (0)