How to handle multi-storage scenarios? #506
Unanswered
MikhailGordienk
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Data transfers always have one origin and one destination. If you either want to transfer multiple assets into the same destination, or a single asset into multiple destinations, those would have to be modeled as separate data transfers. Having two two data transfers that transfer data to the same destination is certainly possible, but be aware that the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
The
InlineDataFlowController
can initiate two types of data transfer: streaming and inline. As I see the former one is for the case when both sides use the same storage platform (ex. both have S3 buckets).At the same time, only the destinationType is used in
S3toS3DataStreamer.canHandle()
. What about the multi-storage case? Is it possible to have two storage systems with different assets in them, both capable of streaming to the same destination?Beta Was this translation helpful? Give feedback.
All reactions