https://dagster.io/ logo
#dagster-support
Title
# dagster-support
c

Charlie Bini

08/31/2022, 7:35 PM
is there a way to pass a list of file paths to an
Out
and have the
IOManager
copy the files to its storage location?
scenario: say my op pulls data from a table in 10000 row chunks, saves each chunk to its own
jzon.gz
file, and results in 1 GB of total data. I'd like to avoid loading all of this in-memory at once to pass to the out
j

jamie

08/31/2022, 7:39 PM
I think writing a custom IO manager would be the only solution for this currently
👍 1
c

Charlie Bini

08/31/2022, 7:40 PM
my alternative would be to use the FileManager (I'm on GCS) and just call it in the op
thanks for clarifying
3 Views