Whamcloud - gitweb
b=24228 fix test duration check to be more accurate
[fs/lustre-release.git] / lustre / tests / recovery-mds-scale.sh
1 #!/bin/bash
2
3 # Was Test 11 in cmd3.
4 # For duration of 24 hours repeatedly failover a random MDS at
5 # 10 minute intervals and verify that no application errors occur.
6
7 # Test runs one of CLIENT_LOAD progs on remote clients.
8
9 LUSTRE=${LUSTRE:-`dirname $0`/..}
10 SETUP=${SETUP:-""}
11 CLEANUP=${CLEANUP:-""}
12 . $LUSTRE/tests/test-framework.sh
13
14 init_test_env $@
15
16 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
17
18 TESTSUITELOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh)}
19 DEBUGLOG=$TESTSUITELOG.debug
20
21 cleanup_logs
22
23 exec 2>$DEBUGLOG
24 echo "--- env ---" >&2
25 env >&2
26 echo "--- env ---" >&2
27 set -x
28
29 [ "$SHARED_DIRECTORY" ] || \
30     { FAIL_ON_ERROR=true skip_env "$0 Empty SHARED_DIRECTORY" && exit 0; }
31
32 [ -n "$CLIENTS" ] || \
33     { FAIL_ON_ERROR=true skip_env "$0 Need two or more remote clients" && exit 0; }
34
35 [ $CLIENTCOUNT -ge 3 ] || \
36     { FAIL_ON_ERROR=true skip_env "$0 Need two or more remote clients, have $((CLIENTCOUNT - 1))" && exit 0; }
37
38 END_RUN_FILE=${END_RUN_FILE:-$SHARED_DIRECTORY/end_run_file}
39 LOAD_PID_FILE=${LOAD_PID_FILE:-$TMP/client-load.pid}
40
41 remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
42 remote_ost_nodsh && skip "remote OST with nodsh" && exit 0
43
44 build_test_filter
45
46 check_and_setup_lustre
47 rm -rf $DIR/[df][0-9]*
48
49 max_recov_time=$(max_recovery_time)
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 OSTS=$(get_facets OST)
63
64 ERRORS_OK=""    # No application failures should occur during this test.
65 FLAVOR=${FLAVOR:-"MDS"}
66
67 if [ "$FLAVOR" == "MDS" ]; then
68     SERVERS=$MDTS
69 else
70     SERVERS=$OSTS
71 fi
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 server_numfailovers () {
86     local facet=$1
87     local var=${facet}_numfailovers
88     local val=0
89
90     [[ ${!var} ]] && val=${!var}
91     echo $val
92 }
93
94 servers_numfailovers () {
95     local facet
96     local var
97
98     for facet in $MDTS ${OSTS//,/ }; do
99         echo "$facet: $(server_numfailovers $facet) times"
100     done
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     echo $(date +'%F %H:%M:%S') Terminating clients loads ...
132     echo "$0" >> $END_RUN_FILE
133     local result=PASS
134     [ $rc -eq 0 ] || result=FAIL
135
136     log "Duration:                $DURATION
137 Server failover period: $SERVER_FAILOVER_PERIOD seconds
138 Exited after:           $ELAPSED seconds
139 Number of failovers before exit:
140 $(servers_numfailovers)
141 Status: $result: rc=$rc"
142
143     # stop the vmstats on the OSTs
144     if [ "$VMSTAT" ]; then
145         do_nodes $(comma_list $(osts_nodes)) "test -f /tmp/vmstat.pid && \
146             { kill -s TERM \$(cat /tmp/vmstat.pid); rm -f /tmp/vmstat.pid; \
147             gzip -f9 $vmstatLOG-\$(hostname); }"
148     fi
149
150     # make sure the client loads die
151     do_nodes $NODES_TO_USE "set -x; test -f $LOAD_PID_FILE && \
152         { kill -s TERM \$(cat $LOAD_PID_FILE) || true; }"
153
154     # and free up the pdshes that started them, if any are still around
155     if [ -n "$CLIENT_LOAD_PIDS" ]; then
156         kill $CLIENT_LOAD_PIDS || true
157         sleep 5
158         kill -9 $CLIENT_LOAD_PIDS || true
159     fi
160     if [ $rc -ne 0 ]; then
161         # we are interested in only on failed clients and servers
162         local failedclients=$(cat $END_RUN_FILE | grep -v $0)
163         # FIXME: need ostfailover-s nodes also for FLAVOR=OST
164         local product=$(gather_logs $(comma_list $(osts_nodes) \
165                                  $mds_HOST $mdsfailover_HOST $failedclients))
166         echo logs files $product
167     fi
168
169     [ $rc -eq 0 ] && zconf_mount $(hostname) $MOUNT
170
171     exit $rc
172 }
173
174 #
175 # MAIN 
176 #
177 log "-----============= $0 starting =============-----"
178
179 trap summary_and_cleanup EXIT INT
180
181 ELAPSED=0
182
183 # vmstat the osts
184 if [ "$VMSTAT" ]; then
185     do_nodes $(comma_list $(osts_nodes)) "vmstat 1 > $vmstatLOG-\$(hostname) 2>/dev/null </dev/null & echo \$! > /tmp/vmstat.pid"
186 fi
187
188 # Start client loads.
189 start_client_loads $NODES_TO_USE
190
191 echo clients load pids:
192 if ! do_nodesv $NODES_TO_USE "cat $LOAD_PID_FILE"; then
193         exit 3
194 fi
195
196 MINSLEEP=${MINSLEEP:-120}
197 REQFAIL_PERCENT=${REQFAIL_PERCENT:-3}   # bug17839 comment 62
198 REQFAIL=${REQFAIL:-$(( DURATION / SERVER_FAILOVER_PERIOD * REQFAIL_PERCENT / 100))}
199 reqfail=0
200 sleep=0
201
202 START_TS=$(date +%s)
203 CURRENT_TS=$START_TS
204
205 while [ $ELAPSED -lt $DURATION -a ! -e $END_RUN_FILE ]; do
206
207     # In order to perform the 
208     # expected number of failovers, we need to account the following :
209     # 1) the time that has elapsed during the client load checking
210     # 2) time takes for failover
211
212     it_time_start=$(date +%s)
213     
214     SERVERFACET=$(get_random_entry $SERVERS)
215     var=${SERVERFACET}_numfailovers
216
217     # Check that our client loads are still running. If any have died, 
218     # that means they have died outside of recovery, which is unacceptable.    
219
220     log "==== Checking the clients loads BEFORE failover -- failure NOT OK \
221     ELAPSED=$ELAPSED DURATION=$DURATION PERIOD=$SERVER_FAILOVER_PERIOD" 
222
223     if ! check_client_loads $NODES_TO_USE; then
224         exit 4
225     fi
226
227     log "Wait $SERVERFACET recovery complete before doing next failover ...."
228
229     if ! wait_recovery_complete $SERVERFACET ; then
230         echo "$SERVERFACET recovery is not completed!"
231         exit 7
232     fi
233
234     log "Checking clients are in FULL state before doing next failover"
235     if ! wait_clients_import_state $NODES_TO_USE $SERVERFACET FULL; then
236         echo "Clients import not FULL, please consider to increase SERVER_FAILOVER_PERIOD=$SERVER_FAILOVER_PERIOD !"
237         
238     fi
239     log "Starting failover on $SERVERFACET"
240
241     facet_failover "$SERVERFACET" || exit 1
242
243     # Check that our client loads are still running during failover.
244     # No application failures should occur.
245
246     log "==== Checking the clients loads AFTER  failover -- failure NOT OK"
247     if ! check_client_loads $NODES_TO_USE; then
248         log "Client load failed during failover. Exiting"
249         exit 5
250     fi
251
252     # Increment the number of failovers
253     val=$((${!var} + 1))
254     eval $var=$val
255  
256     CURRENT_TS=$(date +%s)
257     ELAPSED=$((CURRENT_TS - START_TS))
258  
259     sleep=$((SERVER_FAILOVER_PERIOD-(CURRENT_TS - it_time_start)))
260
261     # keep count the number of itterations when
262     # time spend to failover and two client loads check exceeded 
263     # the value ( SERVER_FAILOVER_PERIOD - MINSLEEP )
264     if [ $sleep -lt $MINSLEEP ]; then
265         reqfail=$((reqfail +1))
266         log "WARNING: failover and two check_client_loads time exceeded SERVER_FAILOVER_PERIOD - MINSLEEP !
267 Failed to load the filesystem with I/O for a minimum period of $MINSLEEP $reqfail times ( REQFAIL=$REQFAIL ).
268 This iteration, the load was only applied for sleep=$sleep seconds.
269 Estimated max recovery time : $max_recov_time
270 Probably the hardware is taking excessively long to boot.
271 Try to increase SERVER_FAILOVER_PERIOD (current is $SERVER_FAILOVER_PERIOD), bug 20918"
272         [ $reqfail -gt $REQFAIL ] && exit 6 
273     fi  
274
275     log "$SERVERFACET has failed over ${!var} times, and counting..."
276
277     if [ $((ELAPSED + sleep)) -ge $DURATION ]; then
278          break
279     fi
280
281     if [ $sleep -gt 0 ]; then 
282         echo "sleeping $sleep seconds ... "
283         sleep $sleep
284     fi
285 done
286
287 exit 0