1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
#!/usr/bin/env expect
############################################################################
# Purpose: Test federated arrays
#
# Reqs: 1. Using slurmdbd accounting storage type and is up
# 2. fed_slurm_base is defined in globals.local - set to directory that
# has access to each federation configure (fedc1, fedc2, fedc3).
# Eg.
# fedr/slurm/ (src)
# fedr/fed1/bin
# fedr/fed1/sbin
# fedr/fed1/etc
# fedr/fed1/...
# fedr/fed2/...
# fedr/fed3/...
# 3. controllers are up and running.
############################################################################
# Copyright (C) 2017 SchedMD LLC.
# Written by Isaac Hartung <ihartung@schedmd.com>
#
# This file is part of Slurm, a resource management program.
# For details, see <https://slurm.schedmd.com/>.
# Please also read the included file: DISCLAIMER.
#
# Slurm is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# Slurm is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with Slurm; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
############################################################################
source ./globals
source ./globals_accounting
source ./globals_federation
set fed_name "feda"
set user_name ""
set srun_job_cnt 0
set my_sbatch "${fed_slurm_base}/$fedc1/bin/sbatch"
set my_squeue "${fed_slurm_base}/$fedc1/bin/squeue"
#
# Check accounting config and bail if not found.
#
if {[get_config_param "AccountingStorageType"] ne "accounting_storage/slurmdbd"} {
skip "This test can't be run without a usable AccountStorageType"
}
if {[get_admin_level] ne "Administrator"} {
skip "This test can't be run without being an Accounting administrator. Use: sacctmgr mod user \$USER set admin=admin"
}
proc sbatch { options regex } {
global number bin_sleep my_sbatch fedc1 fedc2 fedc3
set matches 0
set job_id 0
set capture 0
set command "$my_sbatch -N1 --exclusive -t1 -a1-15 -o/dev/null "
append command $options
append command " --wrap \"sleep 20\""
if {[string match $regex ""]} {
set capture 1
set regex "Submitted batch job ($number)"
}
spawn {*}$command
expect {
-re "$regex" {
incr matches
if {$capture} {
set job_id $expect_out(1,string)
}
}
timeout {
fail "sbatch not responding"
}
eof {
wait
}
}
if {$matches != 1} {
fail "Batch submit failure (expected $regex)"
}
return $job_id
}
proc squeue { regex } {
global my_squeue fedc1 fedc2 fedc3
set matches 0
set command "$my_squeue --noheader -a -M$fedc1,$fedc2,$fedc3"
spawn {*}$command
expect {
-re "$regex" {
incr matches
}
eof {
wait
}
}
if {$matches != 1} {
fail "Unexpected error in squeue (expected $regex)"
}
}
proc cancel_federation_jobs { } {
global scancel user_name fedc1 fedc2 fedc3
spawn $scancel -M$fedc1,$fedc2,$fedc3 --user $user_name
expect {
eof {
wait
}
}
sleep 5
}
proc cleanup { } {
global fed_name bin_bash bin_rm test_name
cancel_federation_jobs
delete_federations $fed_name
exec $bin_bash -c "$bin_rm -f $test_name*.out"
}
# Start test
if {![check_federation_setup]} {
skip "This test can't be run without fed_slurm_base, fedc1, fedc2, fedc3 setup in globals.local"
}
if {![check_federation_up]} {
skip "This test can't be run without all clusters up"
}
set user_name [get_my_user_name]
# Remove existing setup
cleanup
# Add clusters to federation
if {[setup_federation $fed_name]} {
fail "Failed to setup federation"
}
log_info "################################################################"
log_info "Setup cluster features"
log_info "################################################################"
set matches 0
spawn $sacctmgr -i modify cluster $fedc1 set features=fa
expect {
-re "Setting$eol" {
incr matches
exp_continue
}
-re "^\\s+Feature\\s+=\\s+fa" {
incr matches
exp_continue
}
-re "Modified cluster...$eol" {
incr matches
exp_continue
}
-re "^\\s+$fedc1$eol" {
incr matches
exp_continue
}
timeout {
fail "sacctmgr mod not responding"
}
eof {
wait
}
}
if {$matches != 4} {
fail "Unexpected error (got $matches)"
}
set matches 0
spawn $sacctmgr -i modify cluster $fedc2 set features=fb
expect {
-re "Setting$eol" {
incr matches
exp_continue
}
-re "^\\s+Feature\\s+=\\s+fb" {
incr matches
exp_continue
}
-re "Modified cluster...$eol" {
incr matches
exp_continue
}
-re "^\\s+$fedc2$eol" {
incr matches
exp_continue
}
timeout {
fail "sacctmgr mod not responding"
}
eof {
wait
}
}
if {$matches != 4} {
fail "Unexpected error (got $matches)"
}
set matches 0
spawn $sacctmgr -i modify cluster $fedc3 set features=fc
expect {
-re "Setting$eol" {
incr matches
exp_continue
}
-re "^\\s+Feature\\s+=\\s+fc" {
incr matches
exp_continue
}
-re "Modified cluster...$eol" {
incr matches
exp_continue
}
-re "^\\s+$fedc3$eol" {
incr matches
exp_continue
}
timeout {
fail "sacctmgr mod not responding"
}
eof {
wait
}
}
if {$matches != 4} {
fail "Unexpected error (got $matches)"
}
log_info "################################################################"
log_info "Test federated arrays"
log_info "################################################################"
cancel_federation_jobs
set jid(0) [sbatch "" ""]
set jt "$jid(0)_1"
wait_for_fed_job $jt RUNNING $fedc1,$fedc2,$fedc3
set r0 "(\\s+($jid(0))_(\[1-9\]|10).+$eol)"
set r1 "(\\s+($jid(0))_\\\[11-15\\\].+$eol)"
set regf1 "CLUSTER: $fedc1$eol$r1$r0{10}"
set regf2 "CLUSTER: $fedc2$eol\\s*$eol"
set regf3 "CLUSTER: $fedc3$eol\\s*"
squeue "$regf1$regf2$regf3"
set jid(1) [sbatch "--cluster-constraint=fa" ""]
set r2 "(\\s+($jid(1))_\\\[1-15\\\].+$eol)"
set regf1 "CLUSTER: $fedc1$eol.*($r1|$r2){2}$r0{10}"
set regf2 "CLUSTER: $fedc2$eol\\s*$eol"
set regf3 "CLUSTER: $fedc3$eol\\s*"
squeue "$regf1$regf2$regf3"
set jt "$jid(0)_15"
wait_for_fed_job $jt RUNNING $fedc1,$fedc2,$fedc3
sbatch "--cluster-constraint=fb" "sbatch: error: federated job arrays must run on local cluster${eol}sbatch: error: Batch job submission failed: No eligible clusters for federated job${eol}"
set jid(2) [sbatch "--cluster-constraint=fb -M$fedc2" ""]
set jt "$jid(2)_1"
wait_for_fed_job $jt RUNNING $fedc1,$fedc2,$fedc3
set r0 "(\\s+($jid(0))_1\[1-5\].+$eol)"
set r1 "(\\s+($jid(1))_\[1-5\].+$eol)"
set r2 "(\\s+($jid(1))_\\\[6-15\\\].+$eol)"
set r3 "(\\s+($jid(2))_(\[1-9\]|10).+$eol)"
set r4 "(\\s+($jid(2))_\\\[11-15\\\].+$eol)"
set regf1 "CLUSTER: $fedc1$eol$r2.*($r0|$r1){10}"
set regf2 "CLUSTER: $fedc2$eol\\s*$r4$r3{10}"
set regf3 "CLUSTER: $fedc3$eol\\s*"
squeue "$regf1$regf2$regf3"
sbatch "--cluster-constraint=fa -M$fedc2" "sbatch: error: Batch.+"
|