forked from pool/slurm
Egbert Eich
ef6d6521aa
- updated to 23.02.0-0rc1 * Highlights + slurmctld - Add new RPC rate limiting feature. This is enabled through SlurmctldParameters=rl_enable, otherwise disabled by default. + Make scontrol reconfigure and sending a SIGHUP to the slurmctld behave the same. If you were using SIGHUP as a 'lighter' scontrol reconfigure to rotate logs please update your scripts to use SIGUSR2 instead. + Change cloud nodes to show by default. PrivateData=cloud is no longer needed. + sreport - Count planned (FKA reserved) time for jobs running in IGNORE_JOBS reservations. Previously was lumped into IDLE time. + job_container/tmpfs - Support running with an arbitrary list of private mount points (/tmp and /dev/shm are the default, but not required). + job_container/tmpfs - Set more environment variables in InitScript. + Make all cgroup directories created by Slurm owned by root. This was the behavior in cgroup/v2 but not in cgroup/v1 where by default the step directories ownership were set to the user and group of the job. + accounting_storage/mysql - change purge/archive to calculate record ages based on end time, rather than start or submission times. + job_submit/lua - add support for log_user() from slurm_job_modify(). + Run the following scripts in slurmscriptd instead of slurmctld: ResumeProgram, ResumeFailProgram, SuspendProgram, ResvProlog, ResvEpilog, and RebootProgram (only with SlurmctldParameters=reboot_from_controller). + Only permit changing log levels with 'srun --slurmd-debug' by root or SlurmUser. + slurmctld will fatal() when reconfiguring the job_submit plugin fails. + Add PowerDownOnIdle partition option to power down nodes after nodes become idle. + Add "[jobid.stepid]" prefix from slurmstepd and "slurmscriptd" prefix from slurmcriptd to Syslog logging. Previously was only happening when OBS-URL: https://build.opensuse.org/request/show/1067475 OBS-URL: https://build.opensuse.org/package/show/network:cluster/slurm?expand=0&rev=231
30 lines
1.4 KiB
Diff
30 lines
1.4 KiB
Diff
From: Egbert Eich <eich@suse.com>
|
|
Date: Mon Feb 20 21:35:37 2023 +0100
|
|
Subject: Fix test 38.11
|
|
Patch-mainline: Not yet
|
|
Git-commit: 80c7c8b897fde0c025f695b8301f4cbbc605581d
|
|
References:
|
|
|
|
Signed-off-by: Egbert Eich <eich@suse.com>
|
|
Signed-off-by: Egbert Eich <eich@suse.de>
|
|
---
|
|
testsuite/expect/test38.11 | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
diff --git a/testsuite/expect/test38.11 b/testsuite/expect/test38.11
|
|
index 3d2954f..89e5333 100755
|
|
--- a/testsuite/expect/test38.11
|
|
+++ b/testsuite/expect/test38.11
|
|
@@ -83,9 +83,9 @@ if {$het_job_id == 0} {
|
|
run_command -fail "$srun -N1 -n1 --het-group=0 mkdir -p $tmp_dir"
|
|
run_command -fail "$srun -N1 -n1 --het-group=1 mkdir -p $tmp_dir"
|
|
|
|
-run_command -fail "$sbcast -f --jobid=$het_job_id $srun $tmp_dir/file"
|
|
-run_command -fail "$sbcast -f --jobid=${het_job_id}+0 $srun $tmp_dir/file_comp0"
|
|
-run_command -fail "$sbcast -f --jobid=${het_job_id}+1 $srun $tmp_dir/file_comp1"
|
|
+run_command -fail "$sbcast -f --jobid=\$SLURM_JOBID $srun $tmp_dir/file"
|
|
+run_command -fail "$sbcast -f --jobid=\$SLURM_JOBID $srun $tmp_dir/file_comp0"
|
|
+run_command -fail "$sbcast -f --jobid=\$((SLURM_JOBID+1)) $srun $tmp_dir/file_comp1"
|
|
|
|
subtest {![run_command_status "$srun -N1 -n1 --het-group=0 ls $tmp_dir/file"]} "Verify main file is in node of component 0"
|
|
subtest {![run_command_status "$srun -N1 -n1 --het-group=1 ls $tmp_dir/file"]} "Verify main file is in node of component 1"
|