-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding streamable flag to tesInput #157
Conversation
using a streaming mount, as opposed to downloading the whole file to | ||
the local scratch space, may be faster despite the latency and | ||
overhead. This does not mean that the backend will use a streaming | ||
interface, as it may not be provided by the vendor, but it the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small typo: "...but iF the capacity is avaIlable..."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does streamable make sense for inputs only or outputs as well?
@aniewielska I think inputs only makes sense. Since the goal is to either download the files or not. Outputs need to be published so they can be captured later. |
Closes #156