-
Notifications
You must be signed in to change notification settings - Fork 79
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
refactor(mpi): remove global launcherRunsWorkload flag. #198
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: SimonCqk <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #198 +/- ##
=======================================
Coverage 23.18% 23.18%
=======================================
Files 75 75
Lines 4502 4502
=======================================
Hits 1044 1044
Misses 3319 3319
Partials 139 139
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
does this mean the launcher pod always run the workload ? is this expected ? |
if launcher role is in job spec, then it is, otherwise workers should tigger workload running. |
then, why do we need the launcher pod in the first place, if it runs the same as worker.. |
anyway, the patch looks ok |
|
I don't think it is ok. Because for the mpijob, we always have the launcher role in job spec. |
yes, that's what I mean, normally mpijob will be driven by launcher commands. In that case, should |
In my opinion, |
Signed-off-by: SimonCqk [email protected]
Ⅰ. Describe what this PR does
remove
launcherRunsWorkload
global startup flag, which can be inferred by whether hasLauncher
role in job spec.II. Does this pull request fix one issue?
fix #194
III. Special notes for reviewers if any.