Whamcloud - gitweb
allow vars to be overriden from the command line
[fs/lustre-release.git] / lustre-iokit / sgpdd-survey / sgpdd-survey
index 8f7cd1f..16709e3 100755 (executable)
@@ -4,11 +4,11 @@
 # customize per survey
 
 # the SCSI devices to measure
-scsidevs="/dev/sde /dev/sdh"
+scsidevs=${scsidevs:-"/dev/sde /dev/sdh"}
 
-# result file prefix
+# result file prefix.  date/time+hostname makes unique
 # NB ensure the path exists if it includes subdirs
-rslt=/tmp/sg_dd_rslt
+rslt=${rslt:-"/tmp/sgpdd_survey_`date +%F@%R`_`uname -n`"}
 
 # what to do (read or write)
 actions="write read"
@@ -22,22 +22,23 @@ rszlo=1024
 rszhi=1024
 
 # Concurrent regions per device
-crglo=1
-crghi=128
+crglo=${crglo:-1}
+crghi=${crghi:-256}
 
 # threads to share between concurrent regions per device
-# NB survey skips over #thr < #regions
-thrlo=1
-thrhi=128
+# NB survey skips over #thr < #regions and #thr/#regions > SG_MAX_QUEUE
+thrlo=${thrlo:-1}
+thrhi=${thrhi:-4096}
 
 #####################################################################
+# leave the rest of this alone unless you know what you're doing...
 
-# disk block size (Bytes)
+# sgp_dd's idea of disk sector size (Bytes)
 bs=512
-
-# max # threads per individual sgp_dd instance
+# and max # threads one instance will spawn
 SG_MAX_QUEUE=16
 
+# map given device names into SG device names
 i=0
 devs=()
 for d in $scsidevs; do
@@ -50,12 +51,10 @@ for d in $scsidevs; do
 done
 ndevs=${#devs[@]}
 
-start=`date +%F@%R`
-rsltf=${rslt}_${start}.summary
+rsltf=${rslt}.summary
+workf=${rslt}.detail
 echo -n > $rsltf
-workf=${rslt}_${start}.detail
 echo -n > $workf
-tmpf=${rslt}_${start}.tmp
 
 print_summary () {
     if [ "$1" = "-n" ]; then
@@ -80,7 +79,7 @@ for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do
            # show computed parameters
            actual_rsz=$((bpt*bs/1024))
            actual_size=$((bs*count*crg/1024))
-           str=`printf 'total_size %8dK rsz %4d crg %5d thr %3d ' \
+           str=`printf 'total_size %8dK rsz %4d crg %5d thr %5d ' \
                         $((actual_size*ndevs)) $actual_rsz $((crg*ndevs)) $((thr*ndevs))`
            echo "==============> $str" >> $workf
            print_summary -n "$str"
@@ -89,9 +88,11 @@ for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do
                print_summary "ENOMEM"
                continue
            fi
+           # run tests
            for action in $actions; do
                print_summary -n "$action "
                echo "=====> $action" >> $workf
+               tmpf=${workf}_tmp
                 # start test
                t0=`date +%s.%N`
                for ((i=0;i<ndevs;i++)); do
@@ -113,7 +114,7 @@ for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do
                done 
                wait
                t1=`date +%s.%N`
-               # collect all results in 1 file
+               # collect/check individual stats
                echo > $tmpf
                ok=0
                for ((i=0;i<ndevs;i++)); do
@@ -131,11 +132,11 @@ for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do
                    print_summary -n "$((ndevs*crg - ok)) failed "
                else
                    # compute MB/sec from elapsed
-                   bw=`awk "BEGIN {printf \"%7.2f MB/s\", $actual_size / (( $t1 - $t0 ) * 1024); exit}"`
+                   bw=`awk "BEGIN {printf \"%7.2f MB/s\", $actual_size * $ndevs / (( $t1 - $t0 ) * 1024); exit}"`
                    # compute MB/sec from nregions*slowest
                    check=`awk < $tmpf \
                        '/time to transfer data/ {mb=$8/1.048576; if (n == 0 || mb < min) min = mb; n++}\
-                       END {printf "%3d x %6.2f = %7.2f MB/s", n, min, min * n}'`
+                       END {printf "%5d x %6.2f = %7.2f MB/s", n, min, min * n}'`
                    print_summary -n "$bw $check "
                fi
                rm $tmpf
@@ -143,4 +144,4 @@ for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do
            print_summary ""
        done
     done
-done
\ No newline at end of file
+done