Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

Azure Blob Storage is Azure’s object storage service. Tenzir can treat it like a local filesystem to read and write files.

AzureBlob Storage

Use from_azure_blob_storage to read files from Azure Blob Storage. It supports glob patterns and automatic format detection. For writing, use save_azure_blob_storage with a print operator.

from_azure_blob_storage "abfs://container/path/to/file.json"
from_azure_blob_storage "abfs://container/logs/**.json"
from {foo: 42}
print_json
save_azure_blob_storage "abfs://container/path/to/file.json"

Last updated: