ADLS tools
Project description
thds.adls
A high-performance Azure Data Lake Storage (ADLS Gen2) client for the THDS monorepo. It wraps the Azure SDK with hash-aware caching, azcopy acceleration, and shared client/credential plumbing so applications can transfer large blob datasets quickly and reliably.
Highlights
- Environment-aware paths first: Almost every consumer starts by importing
fqn,AdlsFqn, anddefaults.env_root()to build storage-account/container URIs that follow the current THDS environment. - Cache-backed reads:
download_to_cacheis the standard entry point for pulling blobs down with a verified hash so local workflows, tests, and pipelines can operate on read-only copies. - Bulk filesystem helpers:
ADLSFileSystempowers scripts and jobs that need to walk directories, fetch batches of files, or mirror hive tables without re-implementing Azure SDK plumbing. - Spark/Databricks bridges:
abfssanduriconversions keep analytics code agnostic to whether it needs anadls://,abfss://,https://, ordbfs://view of the same path. - Composable utilities: Higher-level modules (cache, upload, copy, list) layer on top of those imports so teams can opt into more advanced behavior without leaving the public API surface.
Key Modules
| Component | Typical usage in the monorepo |
|---|---|
fqn |
Parse, validate, and join ADLS paths; used when materializing model datasets and configuring pipelines. |
AdlsFqn |
Strongly typed value passed between tasks and tests to represent a single blob or directory. |
defaults / named_roots |
Resolve environment-specific storage roots (defaults.env_root(), named_roots.require(...)). |
download_to_cache (cached module) |
Bring a blob down to the shared read-only cache before analytics, feature builds, or test fixtures run. |
ADLSFileSystem (impl module) |
Fetch or list entire directory trees and integrate with caching inside scripts and notebooks. |
abfss |
Translate AdlsFqn objects into abfss:// URIs for Spark/Databricks jobs. |
uri |
Normalize adls://, abfss://, https://, and dbfs:// strings into AdlsFqn values (and vice versa). |
global_client / shared_credential |
Shared, fork-safe Azure clients and credentials backing the public helpers above. |
Example Usage
-
Use the caching helpers and Source integration:
from thds.adls import cached, upload, source cache_path = cached.download_to_cache("adls://acct/container/path/to/file") src = upload("adls://acct/container/path/out.parquet", cache_path) verified = source.get_with_hash(src.uri)
-
For CLI usage, run (from repo root):
uv run python -m thds.adls.tools.download adls://acct/container/path/file
Operational Notes
- Hash metadata: Uploads attach
hash_xxh3_128_b64automatically when the bytes are known. Download completion back-fills missing hashes when permissions allow. - Locks and concurrency: Large transfers acquire per-path file locks to keep azcopy instances
cooperative. Global HTTP connection pools default to 100 but are configurable via
thds.core.config. - Error handling:
BlobNotFoundErrorand other ADLS-specific exceptions translate into custom error types to simplify retries and diagnostics. - Extensibility: Additional hash algorithms can be registered by importing dependent packages (e.g.,
blake3). Named roots can be populated dynamically via environment-specific modules (thds.adls._thds_defaultshook).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file thds_adls-4.5.20260501190802-py3-none-any.whl.
File metadata
- Download URL: thds_adls-4.5.20260501190802-py3-none-any.whl
- Upload date:
- Size: 64.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fe49348686c25515c14c319344fa704f67ae8c9ecd20a92522c91b3b18897ed
|
|
| MD5 |
d279e9eb724b304e804b135f6dca405f
|
|
| BLAKE2b-256 |
a7ccf018d7e623c3fd513615494fb3ef48088f31c4f0e53f3638e9228536a6d7
|