Skip to main content
Version: Next

S3

Amazon Simple Storage Service (S3) is an object storage service. Tenzir can treat it like a local filesystem to read and write files.

URL Support

The URL scheme s3:// dispatches to load_s3 and save_s3 for seamless URL-style use via from and to.

Configuration

Follow the standard configuration instructions to authenticate with your AWS credentials.

Examples

Write to an S3 bucket

from {foo: 42}
to "s3://my-bucket/path/to/file.json.gz"

Read from an S3 bucket

from "s3://my-bucket/path/to/file.json.gz"
{foo: 42}