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