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