Skip to content

Storage Download

Downloads data from a storage provider as a data stream.

This node downloads an object (a file) from a connected storage provider.

It reads the object's content and makes it available as a data stream, which is an efficient way to handle potentially large files without loading them entirely into memory.

Example#

Connect a Storage Provider node (e.g., S3 or GCS) to the Provider input and specify the file's path you want to download. The Data output can then be connected to any node that accepts a data stream, such as a file writer or a data parser.

Inputs#

Port Description
Path
The path or key of the object to download.
Provider
The storage provider to download from.

Outputs#

Port Description
Data
The downloaded file content as a data stream.
Provider
The storage provider, passed through for chaining.

ID: core/storage-download@v1