Skip to content

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: