Streaming one file to multiple destinations #529
-
Is there a way to stream one file to multiple destinations, particularly using async methods? I would like to avoid reading the data more than once when duplicating data for archiving. |
Beta Was this translation helpful? Give feedback.
Answered by
kylebarron
Aug 8, 2025
Replies: 1 comment
-
You have to manage that yourself, either by buffering the stream somehow or recreating multiple streams from source. There are no object store primitives (and thus nothing in obstore) that will help you specifically with that. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
elyall
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have to manage that yourself, either by buffering the stream somehow or recreating multiple streams from source. There are no object store primitives (and thus nothing in obstore) that will help you specifically with that.