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

This PR contains the following changes: - fixed the list comprehension in _expand_path to not drop glob paths (foo/bar/*) - fixed _expand_path when called with a glob path and recursive=True...

This reorders the behavior of fs.info() so that it now searches the parent directory for the entry after trying to find the item directly. This is because scanning the parent...

This adds a new keyword to AzureBlobFileSystem to limit the number of concurrent connectiouns. See https://github.com/pangeo-forge/pangeo-forge-recipes/issues/227#issuecomment-964259201 for some motivation. In that situation, we had a single FileSystem instance that was...

Hello, if I create a board that using `listings_expiry_time=0`, then I get an error if I try to delete a directory. This could also be seen as a dircache bug,...

**What happened**: On Windows 10: Including ```'anon':False``` in the storage_options throws ```NotImplementedError``` on ```asyncio.get_child_watcher().attach_loop(self.loop)``` **What you expected to happen**: DefaultAzureCredentials are used to authenticate **Minimal Complete Verifiable Example**: On Windows...

This behavior is not expected for a user who has previously worked with s3-like URLs. The authentication process is supposed to start when function `glob` is called. The following code...

Current state from the doc for mkdir(): `Mkdir is a no-op for creating anything except top-level containers. This aligns to the Azure Blob Filesystem flat hierarchy"` Datalake handles a nested...

fsspec seems to have an option to manually enable asynchronous processing, and adlfs also has this option, set to False by default: https://github.com/fsspec/adlfs/blob/695e8f18d13b2c1219738f833b170f53bd84049e/adlfs/spec.py#L409 However, it looks like adlfs is just...