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