-
Notifications
You must be signed in to change notification settings - Fork 51
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
job-manager: don't use flux imp kill to signal housekeeping, perilog #6409
Comments
garlick
added a commit
to garlick/flux-core
that referenced
this issue
Nov 1, 2024
Problem: housekeeping and perilog use 'flux imp kill' to implement send signals to housekeeping and prolog/epilog processes, but the 'flux imp kill' subcommand is being deprecated in favor of having the IMP forwarding signals. Don't configure bulk-exec with the imp path so that bulk_exec_kill() will use flux_subprocess_kill(). Fixes flux-framework#6409
This was referenced Nov 1, 2024
garlick
added a commit
to garlick/flux-core
that referenced
this issue
Nov 4, 2024
Problem: housekeeping and perilog use 'flux imp kill' to send signals to housekeeping and prolog/epilog processes, but the IMP will now forward signals and 'flux imp kill' is deprecated. Don't call bulk_exec_set_imp_path() in housekeeping and perilog. Fixes flux-framework#6409
garlick
added a commit
to garlick/flux-core
that referenced
this issue
Nov 4, 2024
Problem: housekeeping and perilog use 'flux imp kill' to send signals to housekeeping and prolog/epilog processes, but the IMP will now forward signals and 'flux imp kill' is deprecated. Don't call bulk_exec_set_imp_path() in housekeeping and perilog. Fixes flux-framework#6409
garlick
added a commit
to garlick/flux-core
that referenced
this issue
Nov 4, 2024
Problem: housekeeping and perilog use 'flux imp kill' to send signals to housekeeping and prolog/epilog processes, but the IMP will now forward signals and 'flux imp kill' is deprecated. Don't call bulk_exec_set_imp_path() in housekeeping and perilog. Fixes flux-framework#6409
garlick
added a commit
to garlick/flux-core
that referenced
this issue
Nov 6, 2024
Problem: housekeeping and perilog use 'flux imp kill' to send signals to housekeeping and prolog/epilog processes, but the IMP will now forward signals and 'flux imp kill' is deprecated. Don't call bulk_exec_set_imp_path() in housekeeping and perilog. Fixes flux-framework#6409
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem:
flux imp kill
will be deprecated but the job manager uses it to terminate housekeeping and prolog/epilog tasks.Just use regular
subprocess_kill()
and the IMP should forward signals.First we need flux-framework/flux-security#188 though.
The text was updated successfully, but these errors were encountered: