Whamcloud - gitweb
b:11171, 10961
[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 #   one can also run test with user defined targets as follows,
26 #   $ nobjhi=2 thrhi=2 size=1024 targets="lustre-OST0000 lustre-OST0001 ..." sh obdfilter-survey
27 # case 2 (network):
28 #   $ nobjhi=2 thrhi=2 size=1024 targets="<name/ip_of_server>" case=network sh obdfilter-survey
29 #   where, targets 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 #   one can also run test with user defined targets as follows,
34 #   $ nobjhi=2 thrhi=2 size=1024 targets="<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) ( 7168 max)
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 targets=${targets:-""}
184 case=${case:-"disk"}
185 if [ -n "$targets" ]; then
186     declare -a ost_names
187     declare -a client_names
188     count=0
189     for name in $targets; do
190         if [ $case == "disk" ]; then
191             ost_names[$count]=$name
192         else
193             client_names[$count]=$name
194         fi
195         count=$((count+1))
196     done
197 fi
198
199 # what tests to run (first must be write)
200 tests_str=${tests_str:-""}
201 if [ -n "$tests_str" ]; then
202     declare -a tests
203     count=0
204     for name in $tests_str; do
205         tests[$count]=$name
206         count=$((count+1))
207     done
208 else
209     #tests=(write rewrite read reread rewrite_again)
210     #tests=(write rewrite read)
211     tests=(write)
212 fi
213
214 # restart from here iff all are defined
215 restart_rsz=
216 restart_thr=1
217 restart_nobj=1
218
219 # machine's page size (K)
220 if [ -z "$PAGE_SIZE" ]; then
221     if which python >/dev/null; then
222         PAGE_SIZE=`echo 'import resource; print resource.getpagesize()/1024;' |python`
223     fi
224 fi
225 PAGE_SIZE=${PAGE_SIZE:-4}
226
227 # max buffer_mem (total_threads * buffer size)
228 # (to avoid lctl ENOMEM problems)
229 max_buffer_mem=$((1024 * 1024))
230 snap=1
231 clean_srv_OSS=0
232 # Customisation variables ends here. 
233 #####################################################################
234 # leave the rest of this alone unless you know what you're doing...
235
236 # check and insert obdecho module
237 if ! lsmod | grep obdecho > /dev/null; then
238     modprobe obdecho
239 fi
240 if [ ${#tests[@]} -eq 0 -o "${tests[0]}" != "write" ]; then
241     echo "tests: ${tests[@]}"
242     echo "First test must be 'write'" 1>&2
243     exit 1
244 fi
245
246 rsltf="${rslt}.summary"
247 workf="${rslt}.detail"
248 cmdsf="${rslt}.script"
249 vmstatf="${rslt}.vmstat"
250 echo -n > $rsltf
251 echo -n > $workf
252
253 # hide a little trick to unset this from the command line
254 if [ "$lustre_root" == " " ]; then
255     unset lustre_root
256 fi
257
258 if [ -z "$lustre_root" ]; then
259     lctl=lctl
260 else
261     lctl=${lustre_root}/utils/lctl
262 fi
263
264 # split out hostnames from client/ost names
265 ndevs=0
266 for trgt in $targets; do
267     str=(`split_hostname $trgt`)
268     host_names[$ndevs]=${str[0]}
269     client_names[$ndevs]=${str[1]}
270     ndevs=$((ndevs+1))
271 done
272 if [ $case == "netdisk" ]; then
273     if [ "$targets" ]; then
274         for ((i = 0; i < $ndevs; i++)); do
275              setup_osc_for_remote_ost ${host_names[$i]} ${client_names[$i]} $i
276              cleanup_oscs="$cleanup_oscs ${client_names[$i]}_osc"
277              host_names[$i]=localhost
278         done
279     fi
280         declare -a osc_names
281         declare -a osc_uuids
282         osc_names_str=$(lctl dl |grep osc | awk "{if (\$2 == \"UP\" && \$3 == \"osc\") {print \$4} }")
283         count=0;
284         for name in $osc_names_str; do
285             osc_names[$count]=$name
286             count=$((count+1))
287         done
288         osc_uuid_str=$(lctl dl |grep osc | awk "{if (\$2 == \"UP\" && \$3 == \"osc\") {print \$5} }")
289         count=0;
290         for uuid in $osc_uuid_str; do
291             osc_uuids[$count]=$uuid
292             count=$((count+1))
293         done
294         for (( i = 0; i < $count; i++ ))
295         do
296             ec_using_osc ${osc_names[$i]}
297         done
298         echo_clients=$(lctl dl | grep echo_client | awk "{if (\$2 == \"UP\" && \$3 == \"echo_client\") {print \$4} }")
299         cnt=0;
300         for name in $echo_clients; do
301             client_names[$cnt]=$name
302             host_names[$cnt]=localhost
303             cnt=$((cnt+1))
304         done
305         ndevs=${#client_names[@]}
306 fi
307 if [ $case == "network" ]; then
308     server_nid=$targets
309     if [ -z "$server_nid" ]; then
310         echo "Specify hostname or ip-address of server"
311         exit 1;
312     fi
313     # check for obdecho module on server
314     if ! dsh $server_nid root "lsmod | grep obdecho > /dev/null"; then
315         dsh $server_nid root "modprobe obdecho"
316     fi
317     # Now do the server setup
318     setup_srv_obd $server_nid "echo_srv"
319     oss_on_srv=`dsh $server_nid root "lctl dl | grep OSS" | awk '{ print $4 }'`
320     if [ -z $oss_on_srv ]; then
321         setup_OSS $server_nid
322         clean_srv_OSS=1
323     fi
324     if ! dsh $server_nid root "lctl dl | grep obdecho > /dev/null 2>&1"; then
325         echo "obdecho not setup on server"
326         exit 1
327     fi
328     if ! dsh $server_nid root "lctl dl | grep ost > /dev/null 2>&1"; then
329         echo "ost not setup on server"
330         exit 1
331     fi
332     # Now start client setup
333     osc_names_str=$(lctl dl)
334     if [ -n "$osc_names_str" ]; then
335         echo "The existing setup must be cleaned";
336         exit 0;
337     fi
338     ec_using_srv_nid $server_nid "echotmp" "echotmp_UUID"
339     client_names[0]="echotmp_ecc"
340 fi
341 if [ -z "$targets" ]; then
342     if [ $case == "disk" ]; then
343         get_targets
344         ndevs=${#ost_names[@]}  
345     fi  
346 fi
347 # get vmstat started
348 # disable portals debug and get obdecho loaded on all relevant hosts
349 unique_hosts=(`unique ${host_names[@]}`)
350 pidcount=0
351 for host in ${unique_hosts[@]}; do
352     host_vmstatf=${vmstatf}_${host}
353     echo -n > $host_vmstatf
354     remote_shell $host "vmstat 5 >> $host_vmstatf" &
355     pid=$!
356     vmstatpids[$pidcount]=$pid
357     pidcount=$((pidcount+1))
358     do_unload_obdecho[$host]=0
359     if obdecho_loaded $host; then
360         continue
361     fi
362     load_obdecho $host
363     if obdecho_loaded $host; then
364         do_unload_obdecho[$host]=1
365         continue
366         fi
367     echo "Can't load obdecho on $host" 1>&2
368     exit 1
369 done
370 # get all the echo_client device numbers and names
371 for ((i=0; i < $ndevs; i++)); do
372     host=${host_names[$i]}
373     devno=(`get_ec_devno $host "${client_names[$i]}" "${ost_names[$i]}"`)
374     if ((${#devno[@]} != 3)); then
375         exit 1
376     fi
377     devnos[$i]=${devno[0]}
378     client_names[$i]=${devno[1]}
379     do_teardown_ec[$i]=${devno[2]}
380 done
381 if (($ndevs <= 0 || ${#host_names[@]} <= 0)); then
382     echo "no devices or hosts specified"
383     cleanup 0 $clean_srv_OSS $cleanup_oscs
384 fi
385 print_summary "$(date) Obdfilter-survey for case=$case from $(hostname)"
386 for ((rsz = $rszlo; rsz <= $rszhi; rsz*=2)); do
387     for ((nobj = $nobjlo; nobj <= $nobjhi; nobj*=2)); do 
388         for ((thr = $thrlo; thr <= $thrhi; thr*=2)); do
389             if ((thr % nobj)); then
390                 continue
391             fi
392             # restart?
393             if [ -n "$restart_rsz" -a\
394                  -n "$restart_nobj" -a\
395                  -n "$restart_thr" ]; then
396                 if ((rsz < restart_rsz ||\
397                      (rsz == restart_rsz &&\
398                       (nobj < restart_nobj ||\
399                        (nobj == restart_nobj &&\
400                         thr < restart_thr))))); then
401                     continue;
402                 fi
403             fi
404             # compute parameters
405             total_thr=$((ndevs*thr))
406             total_nobj=$((ndevs*nobj))
407             pages=$((rsz/PAGE_SIZE))
408             actual_rsz=$((pages*PAGE_SIZE))
409             count=$((size*1024/(actual_rsz*thr)))
410             actual_size=$((actual_rsz*count*thr))
411             total_size=$((actual_size*ndevs))
412             # show computed parameters
413             str=`printf 'ost %2d sz %8dK rsz %4d obj %4d thr %4d ' \
414                      $ndevs $total_size $actual_rsz $total_nobj $total_thr`
415             echo "=======================> $str" >> $workf
416             print_summary -n "$str"
417             if ((total_thr * actual_rsz > max_buffer_mem)); then
418                 print_summary "Too much buffer space"
419                 continue
420             fi
421             # create the objects
422             tmpf="${workf}_tmp"
423             for ((idx = 0; idx < $ndevs; idx++)); do
424                 host=${host_names[$idx]}
425                 devno=${devnos[$idx]}
426                 client_name="${host}:${client_names[$idx]}"
427                 echo "=============> Create $nobj on $client_name" >> $workf
428                 first_obj=`create_objects $host $devno $nobj $tmpf`
429                 cat $tmpf >> $workf
430                 rm $tmpf
431                 if [ $first_obj = "ERROR" ]; then
432                     print_summary "created object #s on $client_name not contiguous"
433                     exit 1
434                 fi
435                 first_objs[$idx]=$first_obj
436             done
437             # run tests
438             for test in ${tests[@]}; do
439                 declare -a pidarray
440                 for host in ${unique_hosts[@]}; do
441                     echo "starting run for test: $test rsz: $rsz threads: $thr objects: $nobj" >> ${vmstatf}_${host}
442                 done
443                 print_summary -n "$test "
444                 # create per-host script files
445                 for host in ${unique_hosts[@]}; do
446                     echo -n > ${cmdsf}_${host}
447                 done
448                 for ((idx = 0; idx < $ndevs; idx++)); do
449                     host=${host_names[$idx]}
450                     devno=${devnos[$idx]}
451                     tmpfi="${tmpf}_$idx"
452                     first_obj=${first_objs[$idx]}
453                     thr_per_obj=$((${thr}/${nobj}))
454                     echo >> ${cmdsf}_${host} \
455                         "$lctl > $tmpfi 2>&1 \\
456                          --threads $thr -$snap $devno \\
457                          test_brw $count `testname2type $test` q $pages ${thr_per_obj}t${first_obj} &"
458                 done
459                 pidcount=0
460                 for host in ${unique_hosts[@]}; do
461                     echo "wait" >> ${cmdsf}_${host}
462                     pidarray[$pidcount]=0
463                     pidcount=$((pidcount+1))
464                 done
465                 # timed run of all the per-host script files
466                 t0=`date +%s.%N`
467                 pidcount=0
468                 for host in ${unique_hosts[@]}; do
469                     remote_shell $host bash < ${cmdsf}_${host} &
470                     pidarray[$pidcount]=$!
471                     pidcount=$((pidcount+1))
472                 done
473                 pidcount=0
474                 for host in ${unique_hosts[@]}; do
475                     wait ${pidarray[$pidcount]}
476                     pidcount=$((pidcount+1))
477                 done
478                 #wait
479                 t1=`date +%s.%N`
480                 # clean up per-host script files
481                 for host in ${unique_hosts[@]}; do
482                     rm ${cmdsf}_${host}
483                 done
484                 # compute bandwidth from total data / elapsed time
485                 str=`awk "BEGIN {printf \"%7.2f \",\
486                          $total_size / (( $t1 - $t0 ) * 1024)}"`
487                 print_summary -n "$str"
488                 # collect/check individual OST stats
489                 echo -n > $tmpf
490                 for ((idx = 0; idx < $ndevs; idx++)); do
491                     client_name="${host_names[$idx]}:${client_names[$idx]}"
492                     tmpfi="${tmpf}_$idx"
493                     echo "=============> $test $client_name" >> $workf
494                     host="${host_names[$idx]}"
495                     remote_shell $host cat $tmpfi >> $workf
496                     get_stats $tmpfi >> $tmpf
497                     rm $tmpfi
498                 done
499                 # compute/display global min/max stats
500                 echo "=============> $test global" >> $workf
501                 cat $tmpf >> $workf
502                 stats=(`get_global_stats $tmpf`)
503                 rm $tmpf
504                 if ((stats[0] <= 0)); then
505                     if ((stats[0] < 0)); then
506                         str=`printf "%17s " ERROR`
507                     else
508                         str=`printf "%17s " SHORT`
509                     fi
510                 else
511                     str=`awk "BEGIN {printf \"[%7.2f,%7.2f] \",\
512                              (${stats[1]} * $actual_rsz)/1024,\
513                              (${stats[2]} * $actual_rsz)/1024; exit}"`
514                 fi
515                 print_summary -n "$str"
516             done
517             print_summary ""
518             # destroy objects we created
519             for ((idx = 0; idx < $ndevs; idx++)); do
520                 host=${host_names[$idx]}
521                 devno=${devnos[$idx]}
522                 client_name="${host}:${client_names[$idx]}"
523                 first_obj=${first_objs[$idx]}
524                 echo "=============> Destroy $nobj on $client_name" >> $workf
525                 destroy_objects $host $devno $first_obj $nobj $tmpf
526                 cat $tmpf >> $workf
527                 rm $tmpf
528             done
529         done
530     done
531 done
532 cleanup 0 $clean_srv_OSS $cleanup_oscs
533 exit 0