Whamcloud - gitweb
b=10960
[fs/lustre-release.git] / lustre-iokit / obdfilter-survey / obdfilter-survey
1 #!/bin/bash
2
3 ######################################################################
4 # customize per survey
5
6 # specify obd instances to exercise
7 # these can be either...
8 # obdfilter instances (set 'ost_names')
9 # ...or...
10 # echo_client instances (set 'client_names')
11 # ... use 'host:name' for obd instances on other nodes.
12 # allow these to be passed in via string...
13 # OR
14 # one can specify only case=disk or case=network or case=netdisk through 
15 # command line.
16
17 # Perquisite: For "disk" case and "netdisk" case you need to have lustre setup
18 #             with one or more ost's. For "network" case  you need to have all
19 #             modules (those llmount.sh loades) loaded in kernel. And the 
20 #             'lctl dl' output must be blank.
21
22 # How to run test:
23 # case 1 (local disk):
24 #   $ nobjhi=2 thrhi=2 size=1024 case=disk sh obdfilter-survey
25 #   instead of case=disk one can also run test as follows
26 #   $ nobjhi=2 thrhi=2 size=1024 OSTS="lustre-OST0000 lustre-OST0001 ..." sh obdfilter-survey
27 # case 2 (network):
28 #   $ nobjhi=2 thrhi=2 size=1024 server_nid="<name/nid_of_server>" case=network sh obdfilter-survey
29 #   where, server_nid is name or ip address of system, which you want to 
30 #   set as server.
31 # case 3 (network and disk):
32 #   $ nobjhi=2 thrhi=2 size=1024 case=netdisk sh obdfilter-survey
33 #   instead of case="netdisk" one can also run test as follows
34 #   $ nobjhi=2 thrhi=2 size=1024 ECHO_CLIENTS="ECHO_<osc_name> ..." sh obdfilter-survey
35 #[ NOTE: It is advised to have automated login (passwordless entry) between server and 
36 #  client systems on which this test runs.]
37
38 # include library 
39 source libecho
40
41 # The following variables can be set in the environment, or on the
42 # command line
43 # result file prefix (date/time + hostname makes unique)
44 # NB ensure path to it exists
45 rslt_loc=${rslt_loc:-"/tmp"}
46 rslt=${rslt:-"$rslt_loc/obdfilter_survey_`date +%F@%R`_`uname -n`"}
47
48 # Set this true to check file contents
49 verify=${verify:-0}
50
51 # total size (MBytes) per obd instance
52 # large enough to avoid cache effects 
53 # and to make test startup/shutdown overhead insignificant
54 size=${size:-16384}
55
56 # record size (KBytes)
57 rszlo=${rszlo:-1024}
58 rszhi=${rszhi:-1024}
59
60 # number of objects per OST
61 nobjlo=${nobjlo:-1}
62 #was nobjhi=${nobjhi:-512}
63 nobjhi=${nobjhi:-16}
64
65 # threads per OST (1024 max)
66 thrlo=${thrlo:-1}
67 thrhi=${thrhi:-16}
68
69 # End of variables
70
71 # create a set of objects, check there are 'n' contiguous ones and
72 # return the first or 'ERROR'
73 # parameter: 1. hostname
74 #            2. device number
75 #            3. number of object to be created (specified by user)
76 #            4. tempfile name
77 create_objects () {
78     local host=$1
79     local devno=$2
80     local nobj=$3
81     local rfile=$4
82     remote_shell $host $lctl --device $devno create $nobj > $rfile 2>&1
83     first=0
84     prev=0
85     count=0
86     error=0
87     while read line; do
88         echo "$line" | grep -q 'is object id'
89         if [ $?  -ne 0 ]; then
90             continue
91         fi
92         if [ $first -eq 0 ]; then
93             first=$(echo $line | awk '{print $6}')
94             first=$(printf "%d" $first)
95             prev=$first
96             count=1
97         else
98             obj=$(echo $line | awk '{print $6}') 
99             obj=$(printf "%d" $obj) 
100             diff=$((obj - (prev+1))) 
101             if [ $diff -ne 0 ]; then 
102                 error=1 
103             fi 
104             prev=$obj 
105             count=$((count+1)) 
106         fi 
107     done < $rfile 
108     if [ $nobj -ne $count ]; then 
109         echo "ERROR: $nobj != $count" >&2 
110         cat $rfile >&2 
111         echo "ERROR" 
112     elif [ $error -ne 0 ]; then 
113         echo "ERROR: non contiguous objs found" >&2 
114     else 
115         echo $first 
116     fi
117 }
118
119 # destroys all objects created in create_objects routine
120 # parameter: 3. start obj id.
121 destroy_objects () {
122     local host=$1
123     local devno=$2
124     local obj0=$3
125     local nobj=$4
126     local rfile=$5
127     remote_shell $host $lctl --device $devno destroy $obj0 $nobj > $rfile 2>&1
128 }
129
130 get_stats () {
131     local rfile=$1
132     gawk < $rfile \
133         '/^Selected device [0-9]+$/ {n = 0; next}\
134         /error/ {n = -1; exit}\
135         /^[0-9]+\/[0-9]+ Total: [0-9]+\.[0-9]+\/second$/ {n++; v=strtonum($3); \
136                                                           if (n == 1 || v < min) min = v;\
137                                                           if (n == 1 || v > max) max = v;\
138                                                           next}\
139         {if (n != 0) {n = -1; exit}}\
140         END {printf "%d %f %f\n", n, min, max}'
141 }
142
143 get_global_stats () {
144     local rfile=$1
145     awk < $rfile 'BEGIN {n = 0;}\
146                   {n++; if (n == 1) {err = $1; min = $2; max = $3} else\
147                                     {if ($1 < err) err = $1;\
148                                      if ($2 < min) min = $2;\
149                                      if ($3 > max) max = $3}}\
150                   END {if (n == 0) err = 0;\
151                        printf "%d %f %f\n", err, min, max}'
152 }
153
154 # enable or disable data check.
155 # parameter: 1. read/write
156 testname2type () {
157     # 'x' disables data check
158     if ((verify)); then
159         x=""
160     else
161         x="x"
162     fi
163     case $1 in
164         *write*)  echo "w$x";;
165         *)        echo "r$x";;
166     esac
167 }
168
169 print_summary () {
170     if [ "$1" = "-n" ]; then
171         minusn=$1; shift
172     else
173         minusn=""
174     fi
175     echo $minusn "$*" >> $rsltf
176     echo $minusn "$*"
177 }
178
179 # Customisation variables
180 #####################################################################
181 # One can change variable values in this section as per requirements
182
183 OSTS=${OSTS:-""}
184 server_nid=${server_nid:-""}
185 case=${case:-"disk"}
186 if [ -n "$OSTS" ]; then
187     declare -a ost_names
188     count=0
189     for name in $OSTS; do
190         ost_names[$count]=$name
191         count=$((count+1))
192     done
193 fi
194 ECHO_CLIENTS=${ECHO_CLIENTS:-""}
195 if [ -n "$ECHO_CLIENTS" ]; then
196     # make sure we unset ost_names so that our client_names get noticed... 
197     unset ost_names
198     declare -a client_names
199     count=0
200     for name in $ECHO_CLIENTS; do
201         client_names[$count]=$name
202         count=$((count+1))
203     done
204 fi
205
206
207 # what tests to run (first must be write)
208 tests_str=${tests_str:-""}
209 if [ -n "$tests_str" ]; then
210     declare -a tests
211     count=0
212     for name in $tests_str; do
213         tests[$count]=$name
214         count=$((count+1))
215     done
216 else
217     #tests=(write rewrite read reread rewrite_again)
218     tests=(write rewrite read)
219 fi
220
221 # restart from here iff all are defined
222 restart_rsz=
223 restart_thr=1
224 restart_nobj=1
225
226 # machine's page size (K)
227 if [ -z "$PAGE_SIZE" ]; then
228     if which python >/dev/null; then
229         PAGE_SIZE=`echo 'import resource; print resource.getpagesize()/1024;' |python`
230     fi
231 fi
232 PAGE_SIZE=${PAGE_SIZE:-4}
233
234 # max buffer_mem (total_threads * buffer size)
235 # (to avoid lctl ENOMEM problems)
236 max_buffer_mem=$((1024 * 1024))
237 snap=1
238
239 # Customisation variables ends here. 
240 #####################################################################
241 # leave the rest of this alone unless you know what you're doing...
242
243 # check and insert obdecho module
244 if ! lsmod | grep obdecho > /dev/null; then
245     modprobe obdecho
246 fi
247 if [ ${#tests[@]} -eq 0 -o "${tests[0]}" != "write" ]; then
248     echo "tests: ${tests[@]}"
249     echo "First test must be 'write'" 1>&2
250     exit 1
251 fi
252
253 rsltf="${rslt}.summary"
254 workf="${rslt}.detail"
255 cmdsf="${rslt}.script"
256 vmstatf="${rslt}.vmstat"
257 echo -n > $rsltf
258 echo -n > $workf
259
260 # hide a little trick to unset this from the command line
261 if [ "$lustre_root" == " " ]; then
262     unset lustre_root
263 fi
264
265 if [ -z "$lustre_root" ]; then
266     lctl=lctl
267 else
268     lctl=${lustre_root}/utils/lctl
269 fi
270
271 if [ $case == "network" ]; then
272     if [ -z "$server_nid" ]; then
273         echo "Specify the server NID"
274         exit 1;
275     fi
276     # check for obdecho module on server
277     if ! dsh $server_nid root "lsmod | grep obdecho > /dev/null"; then
278         dsh $server_nid root "modprobe obdecho"
279     fi
280     # Now do the server setup
281     setup_srv_obd $server_nid "echo_srv"
282     oss_on_srv=`dsh $server_nid root "lctl dl | grep OSS | awk '{ print $4 }'"`
283     if [ ! $oss_on_srv ]; then
284         setup_OSS $server_nid
285         clean_srv_OSS=1
286     fi
287     if ! dsh $server_nid root "lctl dl | grep obdecho > /dev/null 2>&1"; then
288         echo "obdecho not setup on server"
289         exit 1
290     fi
291     if ! dsh $server_nid root "lctl dl | grep ost > /dev/null 2>&1"; then
292         echo "ost not setup on server"
293         exit 1
294     fi
295     # Now start client setup
296     osc_names_str=$(lctl dl)
297     if [ -n "$osc_names_str" ]; then
298         echo "The existing setup must be cleaned";
299         exit 0;
300     fi
301     ec_using_srv_nid $server_nid "osc_testfs" "test_obdfs"
302     declare -a client_names
303     client_names[0]="ECHO_osc_testfs"
304 fi
305
306 if [ -z "$ECHO_CLIENTS" ]; then
307     if [ $case == "netdisk" ]; then
308         declare -a osc_names
309         declare -a osc_uuids
310         osc_names_str=$(lctl dl |grep osc | awk "{if (\$2 == \"UP\" && \$3 == \"osc\") {print \$4} }")
311         count=0;
312         for name in $osc_names_str; do
313             osc_names[$count]=$name
314             count=$((count+1))
315         done
316         osc_uuid_str=$(lctl dl |grep osc | awk "{if (\$2 == \"UP\" && \$3 == \"osc\") {print \$5} }")
317         count=0;
318         for uuid in $osc_uuid_str; do
319             osc_uuids[$count]=$uuid
320             count=$((count+1))
321         done
322         for ((  i = 0 ;  i < $count;  i++  ))
323         do
324             ec_using_osc ${osc_names[$i]} ${osc_uuids[$i]}
325         done
326         ECHO_CLIENTS=$(lctl dl | grep echo_client | awk "{if (\$2 == \"UP\" && \$3 == \"echo_client\") {print \$4} }")
327         cnt=0;
328         for name in $ECHO_CLIENTS; do
329             client_names[$cnt]=$name
330             cnt=$((cnt+1))
331         done
332     fi
333 fi
334
335 if [ -z "$OSTS" ]; then
336     if [ $case == "disk" ]; then
337         get_targets     
338     fi  
339 fi
340
341 # split out hostnames from client/ost names
342 ndevs=${#client_names[@]}
343 if ((ndevs != 0)); then
344     if ((${#ost_names[@]} != 0)); then
345         echo "Please specify client_names or ost_names, but not both" 1>&2
346         exit 1
347     fi
348     for ((i = 0; i < ndevs; i++)); do
349         str=(`split_hostname ${client_names[$i]}`)
350         host_names[$i]=${str[0]}
351         client_names[$i]=${str[1]}
352     done
353 else
354     ndevs=${#ost_names[@]}
355     if ((ndevs == 0)); then
356         echo "Please specify either client_names or ost_names" 1>&2
357         exit 1
358     fi
359     for ((i = 0; i < ndevs; i++)); do
360         str=(`split_hostname ${ost_names[$i]}`)
361         host_names[$i]=${str[0]}
362         ost_names[$i]=${str[1]}
363     done
364 fi
365
366 # get vmstat started
367 # disable portals debug and get obdecho loaded on all relevant hosts
368 unique_hosts=(`unique ${host_names[@]}`)
369 pidcount=0
370 for host in ${unique_hosts[@]}; do
371     host_vmstatf=${vmstatf}_${host}
372     echo -n > $host_vmstatf
373     remote_shell $host "vmstat 5 >> $host_vmstatf" &
374     pid=$!
375     vmstatpids[$pidcount]=$pid
376     pidcount=$((pidcount+1))
377     do_unload_obdecho[$host]=0
378     if obdecho_loaded $host; then
379         continue
380     fi
381     load_obdecho $host
382     if obdecho_loaded $host; then
383         do_unload_obdecho[$host]=1
384         continue
385         fi
386     echo "Can't load obdecho on $host" 1>&2
387     exit 1
388 done
389
390 # get all the echo_client device numbers and names
391 for ((i=0; i < ndevs; i++)); do
392     host=${host_names[$i]}
393     devno=(`get_ec_devno $host "${client_names[$i]}" "${ost_names[$i]}"`)
394     if ((${#devno[@]} != 3)); then
395         exit 1
396     fi
397     devnos[$i]=${devno[0]}
398     client_names[$i]=${devno[1]}
399     do_teardown_ec[$i]=${devno[2]}
400 done
401 print_summary "$(date) Obdfilter-survey for case=$case from $(hostname)"
402 for ((rsz = $rszlo; rsz <= $rszhi; rsz*=2)); do
403     for ((nobj = $nobjlo; nobj <= $nobjhi; nobj*=2)); do 
404         for ((thr = $thrlo; thr <= $thrhi; thr*=2)); do
405             if ((thr % nobj)); then
406                 continue
407             fi
408             # restart?
409             if [ -n "$restart_rsz" -a\
410                  -n "$restart_nobj" -a\
411                  -n "$restart_thr" ]; then
412                 if ((rsz < restart_rsz ||\
413                      (rsz == restart_rsz &&\
414                       (nobj < restart_nobj ||\
415                        (nobj == restart_nobj &&\
416                         thr < restart_thr))))); then
417                     continue;
418                 fi
419             fi
420             # compute parameters
421             total_thr=$((ndevs*thr))
422             total_nobj=$((ndevs*nobj))
423             pages=$((rsz/PAGE_SIZE))
424             actual_rsz=$((pages*PAGE_SIZE))
425             count=$((size*1024/(actual_rsz*thr)))
426             actual_size=$((actual_rsz*count*thr))
427             total_size=$((actual_size*ndevs))
428             # show computed parameters
429             str=`printf 'ost %2d sz %8dK rsz %4d obj %4d thr %4d ' \
430                      $ndevs $total_size $actual_rsz $total_nobj $total_thr`
431             echo "=======================> $str" >> $workf
432             print_summary -n "$str"
433             if ((total_thr * actual_rsz > max_buffer_mem)); then
434                 print_summary "Too much buffer space"
435                 continue
436             fi
437             # create the objects
438             tmpf="${workf}_tmp"
439             for ((idx = 0; idx < ndevs; idx++)); do
440                 host=${host_names[$idx]}
441                 devno=${devnos[$idx]}
442                 client_name="${host}:${client_names[$idx]}"
443                 echo "=============> Create $nobj on $client_name" >> $workf
444                 first_obj=`create_objects $host $devno $nobj $tmpf`
445                 cat $tmpf >> $workf
446                 rm $tmpf
447                 if [ $first_obj = "ERROR" ]; then
448                     print_summary "created object #s on $client_name not contiguous"
449                     exit 1
450                 fi
451                 first_objs[$idx]=$first_obj
452             done
453             # run tests
454             for test in ${tests[@]}; do
455                 declare -a pidarray
456                 for host in ${unique_hosts[@]}; do
457                     echo "starting run for test: $test rsz: $rsz threads: $thr objects: $nobj" >> ${vmstatf}_${host}
458                 done
459                 print_summary -n "$test "
460                 # create per-host script files
461                 for host in ${unique_hosts[@]}; do
462                     echo -n > ${cmdsf}_${host}
463                 done
464                 for ((idx = 0; idx < ndevs; idx++)); do
465                     host=${host_names[$idx]}
466                     devno=${devnos[$idx]}
467                     tmpfi="${tmpf}_$idx"
468                     first_obj=${first_objs[$idx]}
469                     thr_per_obj=$((${thr}/${nobj}))
470                     echo >> ${cmdsf}_${host} \
471                         "$lctl > $tmpfi 2>&1 \\
472                          --threads $thr -$snap $devno \\
473                          test_brw $count `testname2type $test` q $pages ${thr_per_obj}t${first_obj} &"
474                 done
475                 pidcount=0
476                 for host in ${unique_hosts[@]}; do
477                     echo "wait" >> ${cmdsf}_${host}
478                     pidarray[$pidcount]=0
479                     pidcount=$((pidcount+1))
480                 done
481                 # timed run of all the per-host script files
482                 t0=`date +%s.%N`
483                 pidcount=0
484                 for host in ${unique_hosts[@]}; do
485                     remote_shell $host bash < ${cmdsf}_${host} &
486                     pidarray[$pidcount]=$!
487                     pidcount=$((pidcount+1))
488                 done
489                 pidcount=0
490                 for host in ${unique_hosts[@]}; do
491                     wait ${pidarray[$pidcount]}
492                     pidcount=$((pidcount+1))
493                 done
494                 #wait
495                 t1=`date +%s.%N`
496                 # clean up per-host script files
497                 for host in ${unique_hosts[@]}; do
498                     rm ${cmdsf}_${host}
499                 done
500                 # compute bandwidth from total data / elapsed time
501                 str=`awk "BEGIN {printf \"%7.2f \",\
502                          $total_size / (( $t1 - $t0 ) * 1024)}"`
503                 print_summary -n "$str"
504                 # collect/check individual OST stats
505                 echo -n > $tmpf
506                 for ((idx = 0; idx < ndevs; idx++)); do
507                     client_name="${host_names[$idx]}:${client_names[$idx]}"
508                     tmpfi="${tmpf}_$idx"
509                     echo "=============> $test $client_name" >> $workf
510                     host="${host_names[$idx]}"
511                     remote_shell $host cat $tmpfi >> $workf
512                     get_stats $tmpfi >> $tmpf
513                     rm $tmpfi
514                 done
515                 # compute/display global min/max stats
516                 echo "=============> $test global" >> $workf
517                 cat $tmpf >> $workf
518                 stats=(`get_global_stats $tmpf`)
519                 rm $tmpf
520                 if ((stats[0] <= 0)); then
521                     if ((stats[0] < 0)); then
522                         str=`printf "%17s " ERROR`
523                     else
524                         str=`printf "%17s " SHORT`
525                     fi
526                 else
527                     str=`awk "BEGIN {printf \"[%7.2f,%7.2f] \",\
528                              (${stats[1]} * $actual_rsz)/1024,\
529                              (${stats[2]} * $actual_rsz)/1024; exit}"`
530                 fi
531                 print_summary -n "$str"
532             done
533             print_summary ""
534             # destroy objects we created
535             for ((idx = 0; idx < ndevs; idx++)); do
536                 host=${host_names[$idx]}
537                 devno=${devnos[$idx]}
538                 client_name="${host}:${client_names[$idx]}"
539                 first_obj=${first_objs[$idx]}
540                 echo "=============> Destroy $nobj on $client_name" >> $workf
541                 destroy_objects $host $devno $first_obj $nobj $tmpf
542                 cat $tmpf >> $workf
543                 rm $tmpf
544             done
545         done
546     done
547 done
548 cleanup 0 $clean_srv_OSS
549 exit 0