adlfs icon indicating copy to clipboard operation
adlfs copied to clipboard

fsspec-compatible Azure Datake and Azure Blob Storage access

Results 108 adlfs issues
Sort by recently updated
recently updated
newest added

`socket_timeout` option is not being used closes #303

Implements `AzureBlobFileSystem` support for [blob versioning](https://docs.microsoft.com/en-us/azure/storage/blobs/versioning-overview) equivalent to what is currently supported in s3fs - Filesystem must be configured with `version_aware=True` (and container must have versioning enabled) - `version_id` property...

Addresses the issue https://github.com/fsspec/adlfs/issues/340

* [Adlfs spec](https://github.com/fsspec/adlfs/blob/main/adlfs/spec.py#L589) has the hostname with "blob.core.windows.net" but all the URLs that we access might not have the same extension in the host, it will be helpful if we...

Hi there I saw that this package relies on azure-datalake-store for the support of ADLS Gen1. [azure-datalake-store](https://github.com/Azure/azure-data-lake-store-python) seems to be quite outdated (last commit 2021) and references old packages such...

Hello, I am used to authenticate to my azure blob storage account using the following code: ``` from azure.identity import DefaultAzureCredential from azure.storage.blob import BlobServiceClient default_credential = DefaultAzureCredential() account_url =...

Having abfss entry point in [setup.py](https://github.com/fsspec/adlfs/blob/2022.7.0/setup.py#L44-L48) is not allowing for overriding this protocol by other packages. Can we implement this in known_implementations [here](https://github.com/fsspec/filesystem_spec/blob/master/fsspec/registry.py#L87-L211) along with other protocols? Related changes made...

When calling glob passing a path like this: ``` abfs://account.dfs.core.windows.net/container/path # or account.dfs.core.windows.net/container/path ``` adlfs returns an empty list. However, by debugging the code, I noticed the method `_strip_domain` (used...

The PR #328 included a weakref to close async credential, to avoid the Unclosed Client Session warning. This PR aims to fix the case that we can have self.credential =...

Picking up of #288