-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Support a container flow inside one pod #1313
Comments
Hello @bassel-z, However, what you could use is persistent storage which is local to your cluster. You can mount PVCs under some path, download data, write the results there, read from a subpath etc. Note: |
Generally this goes against the parallelism aspect of the pipelines.
This is already possible to do multiple ways.
We're leaning to standardizing on system-managed volume-based approach in future. |
I have noticed that each ContainerOp creates a pod not a container. It would be great if we can define a flow based on a series of steps that are launched as containers within the same pod. Would that be possible?
The idea behind it is that containers share the same disk storage volume. So for big data use cases and if multiple steps in the flow require the same data, it would make sense to load the data once to the node rather than loading the data for each step.
Is there a way to overcome the multiple loading issue currently across different steps (pods)?
The text was updated successfully, but these errors were encountered: