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