Azure Blob Storage is Azure’s object storage service. Tenzir can treat it like a local filesystem to read and write files.
Examples
Section titled “Examples”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.
Read events from a file in a container
Section titled “Read events from a file in a container”from_azure_blob_storage "abfs://container/path/to/file.json"Read all JSON files from a container
Section titled “Read all JSON files from a container”from_azure_blob_storage "abfs://container/logs/**.json"Write an event to a file in a container
Section titled “Write an event to a file in a container”from {foo: 42}print_jsonsave_azure_blob_storage "abfs://container/path/to/file.json"