-
Notifications
You must be signed in to change notification settings - Fork 671
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
[Feature]FlytePropeller should limit the max number of node traversed / executing in one round #476
Closed
1 of 13 tasks
Comments
kumare3
added
enhancement
New feature or request
untriaged
This issues has not yet been looked at by the Maintainers
labels
Aug 18, 2020
+1 |
+1 |
1 similar comment
+1 |
I have a PR for this in progress and the tests are really promising. I am hoping to close it by End of February |
kumare3
removed
the
untriaged
This issues has not yet been looked at by the Maintainers
label
Feb 16, 2021
8 tasks
This has been implemented but is blocked on #742. I will move it to 0.12.0 |
This was referenced Mar 11, 2021
This core functionality is merged, But it is not yet available to all users. This will be done in #862 |
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 6, 2022
* Prefix sub-lp exec id with the parent exec-id Signed-off-by: Haytham Abuelfutuh <[email protected]> * cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * Use a CRD-level version instead Signed-off-by: Haytham Abuelfutuh <[email protected]> * cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * Use fnv64 to create a hash for child workflow executions Signed-off-by: Haytham Abuelfutuh <[email protected]> * Move DefinitionVersion to Status of the CRD Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update to the released flyteplugins Signed-off-by: Haytham Abuelfutuh <[email protected]> * Regenerate Signed-off-by: Haytham Abuelfutuh <[email protected]> * fix unit tests Signed-off-by: Haytham Abuelfutuh <[email protected]> * more fixes Signed-off-by: Haytham Abuelfutuh <[email protected]> * fix old unit test Signed-off-by: Haytham Abuelfutuh <[email protected]> Signed-off-by: Haytham Abuelfutuh <[email protected]>
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 20, 2022
eapolinario
added a commit
to eapolinario/flyte
that referenced
this issue
Jul 24, 2023
…yteorg#476) * Added race skip check Signed-off-by: Prafulla Mahindrakar <[email protected]> * lint Signed-off-by: Prafulla Mahindrakar <[email protected]> * Fixed unit tests Signed-off-by: pmahindrakar-oss <[email protected]> * Moved to integration test Signed-off-by: pmahindrakar-oss <[email protected]> * refactored integration test Signed-off-by: pmahindrakar-oss <[email protected]> * nit : rename to lastTime Signed-off-by: pmahindrakar-oss <[email protected]> * nit : revert Signed-off-by: pmahindrakar-oss <[email protected]> * lastTime -> lastExecTime Signed-off-by: pmahindrakar-oss <[email protected]> * integration test tag Signed-off-by: pmahindrakar-oss <[email protected]> --------- Signed-off-by: Prafulla Mahindrakar <[email protected]> Signed-off-by: pmahindrakar-oss <[email protected]> Signed-off-by: eduardo apolinario <[email protected]> Co-authored-by: eduardo apolinario <[email protected]>
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Aug 9, 2023
* Prefix sub-lp exec id with the parent exec-id Signed-off-by: Haytham Abuelfutuh <[email protected]> * cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * Use a CRD-level version instead Signed-off-by: Haytham Abuelfutuh <[email protected]> * cleanup Signed-off-by: Haytham Abuelfutuh <[email protected]> * Use fnv64 to create a hash for child workflow executions Signed-off-by: Haytham Abuelfutuh <[email protected]> * Move DefinitionVersion to Status of the CRD Signed-off-by: Haytham Abuelfutuh <[email protected]> * Update to the released flyteplugins Signed-off-by: Haytham Abuelfutuh <[email protected]> * Regenerate Signed-off-by: Haytham Abuelfutuh <[email protected]> * fix unit tests Signed-off-by: Haytham Abuelfutuh <[email protected]> * more fixes Signed-off-by: Haytham Abuelfutuh <[email protected]> * fix old unit test Signed-off-by: Haytham Abuelfutuh <[email protected]> Signed-off-by: Haytham Abuelfutuh <[email protected]>
eapolinario
added a commit
to eapolinario/flyte
that referenced
this issue
Aug 21, 2023
…yteorg#476) * Added race skip check Signed-off-by: Prafulla Mahindrakar <[email protected]> * lint Signed-off-by: Prafulla Mahindrakar <[email protected]> * Fixed unit tests Signed-off-by: pmahindrakar-oss <[email protected]> * Moved to integration test Signed-off-by: pmahindrakar-oss <[email protected]> * refactored integration test Signed-off-by: pmahindrakar-oss <[email protected]> * nit : rename to lastTime Signed-off-by: pmahindrakar-oss <[email protected]> * nit : revert Signed-off-by: pmahindrakar-oss <[email protected]> * lastTime -> lastExecTime Signed-off-by: pmahindrakar-oss <[email protected]> * integration test tag Signed-off-by: pmahindrakar-oss <[email protected]> --------- Signed-off-by: Prafulla Mahindrakar <[email protected]> Signed-off-by: pmahindrakar-oss <[email protected]> Signed-off-by: eduardo apolinario <[email protected]> Co-authored-by: eduardo apolinario <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Motivation: Why do you think this is important?
It is possible with dynamic nodes, that users could yield thousands of nodes. The upper limit that is enforced is 4k .FlytePropeller wonderously works with these high numbers, but not without impact on latency. Propeller should limit the number of nodes that can be traversed and be concurrently running.
Goal: What should the final outcome look like, ideally?
When users run large graphs, barring size of the status, flyte propeller should have predictable round latency.
Describe alternatives you've considered
Array Jobs. But, array jobs are not supported for all types.
Flyte component
[Optional] Propose: Link/Inline
NA
The text was updated successfully, but these errors were encountered: