-
Hi :) I know that the intermediate storage API is being refactored, but I wanted to ask you if it's possible somehow (even piercing the internal APIs if necessary, I'm writing an internal framework) to access the intermediate storage uri and not just the file object / handle. My use case is the following:
I'm fine that the only allowed execution mode for that pipeline requires having S3 as intermediate storage. Thanks for your help and for this amazing project :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes you should be able to do this but it takes a little doing. The internal implementation is a bit overabstracted as you'll see. To get access to the intermediate storage during computation you can get here:
And then to fish out the s3 uri it is something like this. Note that these are internal APIs and liable to change at any time. The future structure will be dramatically more simple to interact with.
|
Beta Was this translation helpful? Give feedback.
Yes you should be able to do this but it takes a little doing. The internal implementation is a bit overabstracted as you'll see.
To get access to the intermediate storage during computation you can get here:
And then to fish out the s3 uri it is something like this. Note that these are internal APIs and liable to change at any time. The future structure will be dramatically more simple to interact with.