2 # -*- mode: Bash; tab-width: 4; indent-tabs-mode: t; -*-
3 # vim:shiftwidth=4:softtabstop=4:tabstop=4:
7 # ha.sh - test Lustre HA (aka failover) configurations
15 # ha.sh tests Lustre HA (aka failover) configurations with a CRM.
23 # Specify client nodes.
26 # Specify server nodes.
29 # Specify victim nodes to be rebooted.
32 # Choose a parent of the test directory. "/mnt/lustre" if not specified.
35 # Define a duration for the test. 86400 seconds if not specified.
38 # Define a max failover period. 10 minutes if not set.
41 # Only run the workloads; no failure will be introduced.
42 # -v, -s are ignored in this case.
44 # Workloads dry run for several seconds; no failures will be introduced.
45 # This option is useful to verify the loads.
46 # -u is ignored in this case
48 # Reboot victim nodes simultaneously.
53 # A Lustre file system is up and mounted on all client nodes. This script
54 # does not mount or unmount any Lustre targets or clients, let alone format
57 # Each target has a failnode, so that workloads can continue after a power
60 # CRM could be configured by 2 ways:
62 # Targets are automatically failed back when their primary node is back. This
63 # assumption avoids calling CRM-specific commands to trigger failbacks, making
64 # this script more CRM-neural.
66 # Targets are not automatically failed back when their primary node is back.
67 # CRM-specific command is executed to trigger failbacks.
69 # A crash dump mechanism is configured to catch LBUGs, panics, etc.
73 # Each client runs set of MPI and non-MPI workloads. These
74 # applications are run in short loops so that their exit status can be waited
75 # for and checked within reasonable time by ha_wait_loads.
76 # The set of MPI and non-MPI workloads are configurable by parameters:
78 # default set: dd, tar, iozone
80 # default set: ior, simul, mdtest
82 # The number of clients run MPI loads is configured by parameter
83 # ha_mpi_instances. Only one client runs MPI workloads by default.
85 # PROCESS STRUCTURE AND IPC
87 # On the node where this script is run, the processes look like this:
91 # ~ ha.sh (ha_repeat_mpi_load ior)
93 # ~ ha.sh (ha_repeat_mpi_load simul)
95 # ~ ha.sh (ha_repeat_mpi_load mdtest)
97 # ~ ... (one for each MPI load)
99 # ~ ha.sh (ha_repeat_nonmpi_load client2 dbench)
100 # ~ pdsh client2 dbench
101 # ~ ha.sh (ha_repeat_nonmpi_load client2 iozone)
102 # ~ pdsh client2 iozone
103 # ~ ha.sh (ha_repeat_nonmpi_load client5 iozone)
104 # ~ pdsh client5 iozone
105 # ~ ... (one for each non-MPI load on each client)
107 # Each tilde represents a process. Indentations imply parent-children
110 # IPC is done by files in the temporary directory.
115 SIMUL=${SIMUL:-$(which simul 2> /dev/null || true)}
116 IOR=${IOR:-$(which IOR 2> /dev/null || true)}
117 MDTEST=${MDTEST:-$(which mdtest 2> /dev/null || true)}
119 ior_blockSize=${ior_blockSize:-6g}
120 mpi_threads_per_client=${mpi_threads_per_client:-2}
122 iozone_SIZE=${iozone_SIZE:-262144} # 256m
124 mpirun=${MPIRUN:-$(which mpirun)}
125 LFS=${LFS:-$(which lfs)}
129 for ((load = 0; load < ${#ha_mpi_load_tags[@]}; load++)); do
130 local tag=${ha_mpi_load_tags[$load]}
131 local bin=$(echo $tag | tr '[:lower:]' '[:upper:]')
132 if [ x${!bin} = x ]; then
133 ha_error ha_mpi_loads: ${ha_mpi_loads}, $bin is not set
141 echo "$0: $(date +%H:%M:%S' '%s):" "$@"
146 local nodes=${1// /,}
148 ha_on $nodes "lctl mark $*"
160 ha_error "Trap ERR triggered by:"
161 ha_error " $BASH_COMMAND"
162 ha_error "Call trace:"
163 for ((i = 0; i < ${#FUNCNAME[@]}; i++)); do
164 ha_error " ${FUNCNAME[$i]} [${BASH_SOURCE[$i]}:${BASH_LINENO[$i]}]"
171 declare ha_tmp_dir=/tmp/$(basename $0)-$$
172 declare ha_stop_file=$ha_tmp_dir/stop
173 declare ha_fail_file=$ha_tmp_dir/fail
174 declare ha_status_file_prefix=$ha_tmp_dir/status
175 declare -a ha_status_files
176 declare ha_machine_file=$ha_tmp_dir/machine_file
177 declare ha_power_down_cmd=${POWER_DOWN:-"pm -0"}
178 declare ha_power_up_cmd=${POWER_UP:-"pm -1"}
179 declare ha_failback_delay=${DELAY:-5}
180 declare ha_failback_cmd=${FAILBACK:-""}
181 declare ha_stripe_params=${STRIPEPARAMS:-"-c 0"}
182 declare -a ha_clients
183 declare -a ha_servers
184 declare -a ha_victims
185 declare ha_test_dir=/mnt/lustre/$(basename $0)-$$
186 declare ha_start_time=$(date +%s)
187 declare ha_expected_duration=$((60 * 60 * 24))
188 declare ha_max_failover_period=10
189 declare ha_nr_loops=0
190 declare ha_stop_signals="SIGINT SIGTERM SIGHUP"
191 declare ha_load_timeout=$((60 * 10))
192 declare ha_workloads_only=false
193 declare ha_workloads_dry_run=false
194 declare ha_simultaneous=false
196 declare ha_mpi_instances=${ha_mpi_instances:-1}
198 declare ha_mpi_loads=${ha_mpi_loads="ior simul mdtest"}
199 declare -a ha_mpi_load_tags=($ha_mpi_loads)
201 declare ha_ior_params=${IORP:-'" -b $ior_blockSize -t 2m -w -W -T 1"'}
202 declare ha_simul_params=${SIMULP:-'" -n 10"'}
203 declare ha_mdtest_params=${MDTESTP:-'" -i 1 -n 1000"'}
204 declare ha_mpirun_options=${MPIRUN_OPTIONS:-""}
206 eval ha_params_ior=($ha_ior_params)
207 eval ha_params_simul=($ha_simul_params)
208 eval ha_params_mdtest=($ha_mdtest_params)
210 declare ha_nparams_ior=${#ha_params_ior[@]}
211 declare ha_nparams_simul=${#ha_params_simul[@]}
212 declare ha_nparams_mdtest=${#ha_params_mdtest[@]}
214 declare -A ha_mpi_load_cmds=(
215 [ior]="$IOR -o {}/f.ior {params}"
216 [simul]="$SIMUL {params} -d {}"
217 [mdtest]="$MDTEST {params} -d {}"
220 declare ha_nonmpi_loads=${ha_nonmpi_loads="dd tar iozone"}
221 declare -a ha_nonmpi_load_tags=($ha_nonmpi_loads)
222 declare -a ha_nonmpi_load_cmds=(
223 "dd if=/dev/zero of={}/f.dd bs=1M count=256"
224 "tar cf - /etc | tar xf - -C {}"
225 "iozone -a -e -+d -s $iozone_SIZE {}/f.iozone"
230 ha_info "Usage: $0 -c HOST[,...] -s HOST[,...]" \
231 "-v HOST[,...] [-d DIRECTORY] [-u SECONDS]"
234 ha_process_arguments()
238 while getopts hc:s:v:d:p:u:wrm opt; do
245 ha_clients=(${OPTARG//,/ })
248 ha_servers=(${OPTARG//,/ })
251 ha_victims=(${OPTARG//,/ })
254 ha_test_dir=$OPTARG/$(basename $0)-$$
257 ha_expected_duration=$OPTARG
260 ha_max_failover_period=$OPTARG
263 ha_workloads_only=true
266 ha_workloads_dry_run=true
278 if [ -z "${ha_clients[*]}" ]; then
279 ha_error "-c is mandatory"
283 if ! ($ha_workloads_dry_run ||
284 $ha_workloads_only) &&
285 ([ -z "${ha_servers[*]}" ] ||
286 [ -z "${ha_victims[*]}" ]); then
287 ha_error "-s, and -v are all mandatory"
301 # -S is to be used here to track the
302 # remote command return values
304 pdsh -S -w $nodes PATH=/usr/local/sbin:/usr/local/bin:/sbin:\
305 /bin:/usr/sbin:/usr/bin "$@" ||
312 touch "$ha_stop_file"
314 if [ -e "$ha_fail_file" ]; then
315 ha_info "Test directory $ha_test_dir not removed"
316 ha_info "Temporary directory $ha_tmp_dir not removed"
318 ha_on ${ha_clients[0]} rm -rf "$ha_test_dir"
319 ha_info "Please find the results in the directory $ha_tmp_dir"
323 ha_trap_stop_signals()
325 ha_info "${ha_stop_signals// /,} received"
326 touch "$ha_stop_file"
333 ha_info "Sleeping for ${n}s"
335 # sleep(1) could interrupted.
344 until mkdir "$lock" >/dev/null 2>&1; do
345 ha_sleep 1 >/dev/null
358 local nodes=${1// /,}
359 local file=/tmp/$(basename $0)-$$-$(date +%s).dk
360 local lock=$ha_tmp_dir/lock-dump-logs
363 ha_info "Dumping lctl log to $file"
366 # some nodes could crash, so
367 # do not exit with error if not all logs are dumped
369 ha_on $nodes "lctl dk >$file" ||
370 ha_error "not all logs are dumped! Some nodes are unreachable."
380 local tag=${ha_mpi_load_tags[$load]}
381 local cmd=${ha_mpi_load_cmds[$tag]}
382 local dir=$ha_test_dir/$client-$tag
383 local log=$ha_tmp_dir/$client-$tag
386 local start_time=$(date +%s)
388 cmd=${cmd//"{}"/$dir}
389 cmd=${cmd//"{params}"/$parameter}
391 ha_info "Starting $tag"
393 local machines="-machinefile $ha_machine_file"
394 while [ ! -e "$ha_stop_file" ] && ((rc == 0)); do
396 ha_on $client mkdir -p "$dir" &&
397 ha_on $client chmod a+xwr $dir &&
398 ha_on $client "su mpiuser sh -c \" $mpirun $ha_mpirun_options \
399 -np $((${#ha_clients[@]} * mpi_threads_per_client )) \
400 $machines $cmd \" " &&
401 ha_on $client rm -rf "$dir";
402 } >>"$log" 2>&1 || rc=$?
407 touch "$ha_fail_file"
408 touch "$ha_stop_file"
409 ha_dump_logs "${ha_clients[*]} ${ha_servers[*]}"
413 nr_loops=$((nr_loops + 1))
416 avg_loop_time=$((($(date +%s) - start_time) / nr_loops))
418 ha_info "$tag stopped: rc $rc avg loop time $avg_loop_time"
430 for client in ${ha_clients[@]}; do
431 ha_info ha_machine_file=$ha_machine_file
432 echo $client >> $ha_machine_file
434 local dirname=$(dirname $ha_machine_file)
435 for client in ${ha_clients[@]}; do
436 ha_on $client mkdir -p $dirname
437 scp $ha_machine_file $client:$ha_machine_file
440 # ha_mpi_instances defines the number of
441 # clients start mpi loads; should be <= ${#ha_clients[@]}
442 local inst=$ha_mpi_instances
443 (( inst <= ${#ha_clients[@]} )) || inst=${#ha_clients[@]}
445 for ((n = 0; n < $inst; n++)); do
446 client=${ha_clients[n]}
447 for ((load = 0; load < ${#ha_mpi_load_tags[@]}; load++)); do
448 tag=${ha_mpi_load_tags[$load]}
449 status=$ha_status_file_prefix-$tag-$client
452 local num=ha_nparams_$tag
454 local aref=ha_params_$tag[nparam]
455 local parameter=${!aref}
456 ha_repeat_mpi_load $client $load $status "$parameter" &
457 ha_status_files+=("$status")
462 ha_repeat_nonmpi_load()
467 local tag=${ha_nonmpi_load_tags[$load]}
468 local cmd=${ha_nonmpi_load_cmds[$load]}
469 local dir=$ha_test_dir/$client-$tag
470 local log=$ha_tmp_dir/$client-$tag
473 local start_time=$(date +%s)
475 cmd=${cmd//"{}"/$dir}
477 ha_info "Starting $tag on $client"
479 while [ ! -e "$ha_stop_file" ] && ((rc == 0)); do
480 ha_on $client "mkdir -p $dir && \
482 rm -rf $dir" >>"$log" 2>&1 || rc=$?
485 ha_dump_logs "${ha_clients[*]} ${ha_servers[*]}"
486 touch "$ha_fail_file"
487 touch "$ha_stop_file"
491 nr_loops=$((nr_loops + 1))
494 avg_loop_time=$((($(date +%s) - start_time) / nr_loops))
496 ha_info "$tag on $client stopped: rc $rc avg loop time ${avg_loop_time}s"
499 ha_start_nonmpi_loads()
506 for client in ${ha_clients[@]}; do
507 for ((load = 0; load < ${#ha_nonmpi_load_tags[@]}; load++)); do
508 tag=${ha_nonmpi_load_tags[$load]}
509 status=$ha_status_file_prefix-$tag-$client
510 ha_repeat_nonmpi_load $client $load $status &
511 ha_status_files+=("$status")
518 trap ha_trap_stop_signals $ha_stop_signals
519 ha_start_nonmpi_loads
526 trap - $ha_stop_signals
527 ha_info "Waiting for workloads to stop"
534 local end=$(($(date +%s) + ha_load_timeout))
536 ha_info "Waiting for workload status"
537 rm -f "${ha_status_files[@]}"
540 # return immediately if ha_stop_file exists,
541 # all status_files not needed to be checked
543 for file in "${ha_status_files[@]}"; do
544 if [ -e "$ha_stop_file" ]; then
545 ha_info "$ha_stop_file found! Stop."
549 # Wait status file created during ha_load_timeout.
550 # Existing file guarantees that some application
551 # is completed. If no status file was created
552 # this function guarantees that we allow
553 # applications to continue after/before
554 # failover/failback during ha_load_timeout time.
556 until [ -e "$file" ] || (($(date +%s) >= end)); do
558 # check ha_stop_file again, it could appear
559 # during ha_load_timeout
561 if [ -e "$ha_stop_file" ]; then
562 ha_info "$ha_stop_file found! Stop."
565 ha_sleep 1 >/dev/null
574 ha_info "Powering down $nodes"
575 $ha_power_down_cmd $nodes
582 ha_info "Powering up $nodes"
583 $ha_power_up_cmd $nodes
589 # Print a random integer within [0, MAX).
596 # See "5.2 Bash Variables" from "info bash".
598 echo -n $((RANDOM * max / 32768))
606 if $ha_simultaneous ; then
607 nodes=$(echo ${ha_victims[@]})
610 i=$(ha_rand ${#ha_victims[@]})
611 nodes=${ha_victims[$i]}
620 local end=$(($(date +%s) + 10 * 60))
622 ha_info "Waiting for $nodes to boot up"
623 until ha_on $nodes hostname >/dev/null 2>&1 ||
624 [ -e "$ha_stop_file" ] ||
625 (($(date +%s) >= end)); do
626 ha_sleep 1 >/dev/null
633 ha_info "Failback resources on $nodes in $ha_failback_delay sec"
635 ha_sleep $ha_failback_delay
636 [ "$ha_failback_cmd" ] ||
638 ha_info "No failback command set, skiping"
642 $ha_failback_cmd $nodes
647 ha_info "---------------8<---------------"
649 ha_info " Duration: $(($(date +%s) - $ha_start_time))s"
650 ha_info " Loops: $ha_nr_loops"
657 while (($(date +%s) < ha_start_time + ha_expected_duration)) &&
658 [ ! -e "$ha_stop_file" ]; do
659 ha_info "---------------8<---------------"
661 $ha_workloads_only || nodes=$(ha_aim)
663 ha_info "Failing $nodes"
664 $ha_workloads_only && ha_info " is skipped: workload only..."
666 ha_sleep $(ha_rand $ha_max_failover_period)
667 $ha_workloads_only || ha_power_down $nodes
669 ha_wait_loads || return
671 if [ -e $ha_stop_file ]; then
672 $ha_workloads_only || ha_power_up $nodes
676 ha_info "Bringing $nodes back"
677 ha_sleep $(ha_rand 10)
678 $ha_workloads_only ||
686 # Wait for the failback to start.
689 ha_wait_loads || return
691 ha_sleep $(ha_rand 20)
693 ha_nr_loops=$((ha_nr_loops + 1))
694 ha_info "Loop $ha_nr_loops done"
701 ha_process_arguments "$@"
704 ha_log "${ha_clients[*]} ${ha_servers[*]}" \
705 "START: $0: $(date +%H:%M:%S' '%s)"
706 trap ha_trap_exit EXIT
708 ha_on ${ha_clients[0]} mkdir "$ha_test_dir"
709 ha_on ${ha_clients[0]} " \
710 $LFS setstripe $ha_stripe_params $ha_test_dir"
715 if $ha_workloads_dry_run; then
719 ha_dump_logs "${ha_clients[*]} ${ha_servers[*]}"
724 if [ -e "$ha_fail_file" ]; then
727 ha_log "${ha_clients[*]} ${ha_servers[*]}" \
728 "END: $0: $(date +%H:%M:%S' '%s)"