-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18087 from jmchilton/rev_azure
Overhaul Azure storage infrastructure.
- Loading branch information
Showing
13 changed files
with
621 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
from typing import Union | ||
|
||
try: | ||
from fs.azblob import ( | ||
BlobFS, | ||
BlobFSV2, | ||
) | ||
except ImportError: | ||
BlobFS = None | ||
|
||
from typing import Optional | ||
|
||
from . import ( | ||
FilesSourceOptions, | ||
FilesSourceProperties, | ||
) | ||
from ._pyfilesystem2 import PyFilesystem2FilesSource | ||
|
||
|
||
class AzureFileSource(PyFilesystem2FilesSource): | ||
plugin_type = "azure" | ||
required_module = BlobFS | ||
required_package = "fs-azureblob" | ||
|
||
def _open_fs(self, user_context=None, opts: Optional[FilesSourceOptions] = None): | ||
props = self._serialization_props(user_context) | ||
extra_props: Union[FilesSourceProperties, dict] = opts.extra_props or {} if opts else {} | ||
all_props = {**props, **extra_props} | ||
namespace_type = all_props.get("namespace_type", "hierarchical") | ||
if namespace_type not in ["hierarchical", "flat"]: | ||
raise Exception("Misconfigured azure file source") | ||
account_name = all_props["account_name"] | ||
account_key = all_props["account_key"] | ||
container = all_props["container_name"] | ||
if namespace_type == "flat": | ||
handle = BlobFS(account_name, container, account_key) | ||
else: | ||
handle = BlobFSV2(account_name, container, account_key) | ||
|
||
return handle | ||
|
||
|
||
__all__ = ("AzureFileSource",) |
Oops, something went wrong.