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