Whamcloud - gitweb
3d995f253ee3b6082f60c61301eef3db7f007433
[fs/lustre-release.git] / lustre / tests / recovery-random-scale.sh
1 #!/bin/bash
2
3 # client failure does not affect other clients
4
5 # Start load on clients (each client works on it's own directory).
6 # At defined (5-10 minutes) interval fail one random client and then fail mds.
7 # Reintegrate failed client after recovery completed,
8 # application errors are allowed for that client but not on other clients.
9 # 10 minute intervals and verify that no application errors occur.
10
11 # Test runs one of CLIENT_LOAD progs on remote clients.
12
13 LUSTRE=${LUSTRE:-`dirname $0`/..}
14 SETUP=${SETUP:-""}
15 CLEANUP=${CLEANUP:-""}
16 . $LUSTRE/tests/test-framework.sh
17
18 init_test_env $@
19
20 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
21 init_logging
22
23 TESTSUITELOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh)}
24 DEBUGLOG=$TESTSUITELOG.debug
25
26 cleanup_logs
27
28 exec 2>$DEBUGLOG
29 echo "--- env ---" >&2
30 env >&2
31 echo "--- env ---" >&2
32 set -x
33
34 [ "$SHARED_DIRECTORY" ] || \
35     { FAIL_ON_ERROR=true skip_env "$0 Empty SHARED_DIRECTORY" && exit 0; }
36
37 [ -n "$CLIENTS" ] || \
38     { FAIL_ON_ERROR=true skip_env "$0 Need two or more remote clients" && exit 0; }
39
40 [ $CLIENTCOUNT -ge 3 ] || \
41     { FAIL_ON_ERROR=true skip_env "$0 Need two or more remote clients, have $((CLIENTCOUNT - 1))" && exit 0; }
42
43 END_RUN_FILE=${END_RUN_FILE:-$SHARED_DIRECTORY/end_run_file}
44 LOAD_PID_FILE=${LOAD_PID_FILE:-$TMP/client-load.pid}
45
46 remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
47
48 [[ $FAILURE_MODE = SOFT ]] && \
49     log "WARNING: $0 is not functional with FAILURE_MODE = SOFT, bz22797"
50
51 build_test_filter
52
53 check_and_setup_lustre
54 rm -rf $DIR/[df][0-9]*
55
56 max_recov_time=$(max_recovery_time)
57
58 # the test node needs to be insulated from a lustre failure as much as possible,
59 # so not even loading the lustre modules is ideal.
60 # -- umount lustre
61 # -- remove hostname from clients list
62 zconf_umount $(hostname) $MOUNT
63 NODES_TO_USE=${NODES_TO_USE:-$CLIENTS}
64 NODES_TO_USE=$(exclude_items_from_list $NODES_TO_USE $(hostname))
65
66 check_progs_installed $NODES_TO_USE ${CLIENT_LOADS[@]}
67
68 MDTS=$(get_facets MDS)
69
70 if [ "$SLOW" = "no" ]; then
71     DURATION=${DURATION:-$((60 * 30))}
72     SERVER_FAILOVER_PERIOD=${SERVER_FAILOVER_PERIOD:-$((60 * 5))}
73 else
74     DURATION=${DURATION:-$((60 * 60 * 24))}
75     SERVER_FAILOVER_PERIOD=${SERVER_FAILOVER_PERIOD:-$((60 * 10))} # 10 minutes
76 fi
77
78 rm -f $END_RUN_FILE
79
80 vmstatLOG=${TESTSUITELOG}_$(basename $0 .sh).vmstat
81
82 numfailovers () {
83     local facet
84     local var
85
86     for facet in $MDTS ${failed_clients//,/ }; do
87         var=${facet}_nums
88         val=${!var}
89         if [ "$val" ] ; then
90             echo "$facet failed  over  $val times"
91         fi
92     done
93 }
94
95 # list is comma separated
96 print_logs () {
97     local list=$1
98
99     do_nodes $list "node=\\\$(hostname)
100 var=\\\${node}_load
101 log=${TESTSUITELOG}_run_${!var}.sh-\\\$node.debug
102 if [ -e \\\$log ] ; then
103 echo Node \\\$node debug log:
104 cat \\\$log
105 fi"
106 }
107
108 summary_and_cleanup () {
109
110     local rc=$?
111     local var
112     trap 0
113
114     # Having not empty END_RUN_FILE means the failed loads only
115     if [ -s $END_RUN_FILE ]; then
116         echo "Found the END_RUN_FILE file: $END_RUN_FILE"
117         cat $END_RUN_FILE
118         local END_RUN_NODE=
119         read END_RUN_NODE < $END_RUN_FILE
120
121     # a client load will end (i.e. fail) if it finds
122     # the end run file.  that does not mean that that client load
123     # actually failed though.  the first node in the END_RUN_NODE is
124     # the one we are really interested in.
125         if [ -n "$END_RUN_NODE" ]; then
126             var=$(node_var_name $END_RUN_NODE)_load
127             echo "Client load failed on node $END_RUN_NODE"
128             echo
129             echo "client $END_RUN_NODE load stdout and debug files :
130               ${TESTSUITELOG}_run_${!var}.sh-${END_RUN_NODE}
131               ${TESTSUITELOG}_run_${!var}.sh-${END_RUN_NODE}.debug"
132         fi
133         rc=1
134     fi
135
136
137     echo $(date +'%F %H:%M:%S') Terminating clients loads ...
138     echo "$0" >> $END_RUN_FILE
139     local result=PASS
140     [ $rc -eq 0 ] || result=FAIL
141
142     log "Duration:                $DURATION
143 Server failover period: $SERVER_FAILOVER_PERIOD seconds
144 Exited after:           $ELAPSED seconds
145 Number of failovers before exit:
146 $(numfailovers)
147 Status: $result: rc=$rc"
148
149     # stop the vmstats on the OSTs
150     if [ "$VMSTAT" ]; then
151         do_nodes $(comma_list $(osts_nodes)) "test -f /tmp/vmstat.pid && \
152             { kill -s TERM \$(cat /tmp/vmstat.pid); rm -f /tmp/vmstat.pid; \
153             gzip -f9 $vmstatLOG-\$(hostname); }"
154     fi
155
156     # make sure the client loads die
157     do_nodes $NODES_TO_USE "set -x; test -f $LOAD_PID_FILE && \
158         { kill -s TERM \$(cat $LOAD_PID_FILE) || true; }"
159
160     # and free up the pdshes that started them, if any are still around
161     if [ -n "$CLIENT_LOAD_PIDS" ]; then
162         kill $CLIENT_LOAD_PIDS || true
163         sleep 5
164         kill -9 $CLIENT_LOAD_PIDS || true
165     fi
166
167     if [ $rc -ne 0 ]; then
168         print_logs $NODES_TO_USE
169         # we are interested in only on failed clients and servers
170         local failedclients=$(cat $END_RUN_FILE | grep -v $0)
171         # FIXME: need ostfailover-s nodes also for FLAVOR=OST
172         local product=$(gather_logs $(comma_list $(osts_nodes) \
173                         $(mdts_nodes) $mdsfailover_HOST $failedclients) 1)
174         echo logs files $product
175     fi
176
177     [ $rc -eq 0 ] && zconf_mount $(hostname) $MOUNT
178
179     exit $rc
180 }
181
182 #
183 # MAIN 
184 #
185 log "-----============= $0 starting =============-----"
186
187 trap summary_and_cleanup EXIT # INT
188
189 ELAPSED=0
190
191 # vmstat the osts
192 if [ "$VMSTAT" ]; then
193     do_nodes $(comma_list $(osts_nodes)) "vmstat 1 > $vmstatLOG-\$(hostname) 2>/dev/null </dev/null & echo \$! > /tmp/vmstat.pid"
194 fi
195
196 # Start client loads.
197 start_client_loads $NODES_TO_USE
198
199 echo clients load pids:
200 if ! do_nodesv $NODES_TO_USE "cat $LOAD_PID_FILE"; then
201         exit 3
202 fi
203
204 START_TS=$(date +%s)
205 CURRENT_TS=$START_TS
206
207 MINSLEEP=${MINSLEEP:-120}
208 REQFAIL_PERCENT=${REQFAIL_PERCENT:-3}   # bug17839 comment 62
209 REQFAIL=${REQFAIL:-$(( DURATION / SERVER_FAILOVER_PERIOD * REQFAIL_PERCENT / 100))}
210 reqfail=0
211 sleep=0
212
213 # This is used for FAIL_CLIENT only
214 ERRORS_OK="yes"
215 while [ $ELAPSED -lt $DURATION -a ! -e $END_RUN_FILE ]; do
216
217     # In order to perform the 
218     # expected number of failovers, we need to account the following :
219     # 1) the time that has elapsed during the client load checking
220     # 2) time takes for failover
221
222     it_time_start=$(date +%s)
223     
224     FAIL_CLIENT=$(get_random_entry $NODES_TO_USE)
225     client_var=$(node_var_name $FAIL_CLIENT)_nums
226
227     # store the list of failed clients
228     # lists are comma separated
229     failed_clients=$(expand_list $failed_clients $FAIL_CLIENT)
230
231     SERVERFACET=$(get_random_entry $MDTS)
232     var=${SERVERFACET}_nums
233
234     # Check that our client loads are still running. If any have died, 
235     # that means they have died outside of recovery, which is unacceptable.    
236
237     log "==== Checking the clients loads BEFORE failover -- failure NOT OK \
238     ELAPSED=$ELAPSED DURATION=$DURATION PERIOD=$SERVER_FAILOVER_PERIOD" 
239
240     if ! check_client_loads $NODES_TO_USE; then
241         exit 4
242     fi
243
244     log "FAIL CLIENT $FAIL_CLIENT ... "
245     shutdown_client $FAIL_CLIENT
246
247     log "Starting failover on $SERVERFACET"
248
249     facet_failover "$SERVERFACET" || exit 1
250     if ! wait_recovery_complete $SERVERFACET ; then
251         echo "$SERVERFACET recovery is not completed!"
252         exit 7
253     fi
254
255     boot_node $FAIL_CLIENT
256     echo "Reintegrating $FAIL_CLIENT"
257     zconf_mount $FAIL_CLIENT $MOUNT || exit $?
258
259     # Increment the number of failovers
260     val=$((${!var} + 1))
261     eval $var=$val
262     val=$((${!client_var} + 1))
263     eval $client_var=$val
264
265     # load script on failed clients could create END_RUN_FILE
266     # We shuold remove it and ignore the failure if this
267     # file contains the failed client only.
268     # We can not use ERRORS_OK when start all loads at the start of this script
269     # because the application errors allowed for random failed client only, but
270     # not for all clients.
271     if [ -e $END_RUN_FILE ]; then
272         read END_RUN_NODE < $END_RUN_FILE
273         [[ $END_RUN_NODE = $FAIL_CLIENT ]] &&
274             rm -f $END_RUN_FILE || exit 13
275     fi
276
277     restart_client_loads $FAIL_CLIENT $ERRORS_OK || exit $?
278
279     # Check that not failed clients loads are still running.
280     # No application failures should occur on clients that was not failed.
281
282     log "==== Checking the clients loads AFTER failed client reintegrated -- failure NOT OK"
283     if ! ERRORS_OK= check_client_loads $(exclude_items_from_list $NODES_TO_USE $FAIL_CLIENT); then
284         log "Client load failed. Exiting"
285         exit 5
286     fi
287
288     CURRENT_TS=$(date +%s)
289     ELAPSED=$((CURRENT_TS - START_TS))
290     sleep=$((SERVER_FAILOVER_PERIOD-(CURRENT_TS - it_time_start)))
291
292     # keep count the number of itterations when
293     # time spend to failover and two client loads check exceeded 
294     # the value ( SERVER_FAILOVER_PERIOD - MINSLEEP )
295     if [ $sleep -lt $MINSLEEP ]; then
296         reqfail=$((reqfail +1))
297         log "WARNING: failover, client reintegration and check_client_loads time exceeded SERVER_FAILOVER_PERIOD - MINSLEEP !
298 Failed to load the filesystem with I/O for a minimum period of $MINSLEEP $reqfail times ( REQFAIL=$REQFAIL ).
299 This iteration, the load was only applied for sleep=$sleep seconds.
300 Estimated max recovery time : $max_recov_time
301 Probably the hardware is taking excessively long to boot.
302 Try to increase SERVER_FAILOVER_PERIOD (current is $SERVER_FAILOVER_PERIOD), bug 20918"
303         [ $reqfail -gt $REQFAIL ] && exit 6
304     fi
305
306     log " Number of failovers:
307 $(numfailovers)                and counting..."
308
309     if [ $((ELAPSED + sleep)) -ge $DURATION ]; then
310          break
311     fi
312
313     if [ $sleep -gt 0 ]; then
314         echo "sleeping $sleep seconds ... "
315         sleep $sleep
316     fi
317 done
318
319 exit 0