Whamcloud - gitweb
b=20698
[fs/lustre-release.git] / lustre / tests / sanity-benchmark.sh
1 #!/bin/bash
2 #
3 # Test basic functionality of the filesystem using simple
4 # benchmarks.
5 #
6
7 set -e
8
9 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
10 . $LUSTRE/tests/test-framework.sh
11 init_test_env $@
12 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
13
14 MAX_THREADS=${MAX_THREADS:-20}
15 RAMKB=`awk '/MemTotal:/ { print $2 }' /proc/meminfo`
16 if [ -z "$THREADS" ]; then
17         THREADS=$((RAMKB / 16384))
18         [ $THREADS -gt $MAX_THREADS ] && THREADS=$MAX_THREADS
19 fi
20 SIZE=${SIZE:-$((RAMKB * 2))}
21 RSIZE=${RSIZE:-512}
22
23 DEBUG_LVL=${DEBUG_LVL:-0}
24 DEBUG_OFF=${DEBUG_OFF:-"eval lctl set_param debug=\"$DEBUG_LVL\""}
25 DEBUG_ON=${DEBUG_ON:-"eval lctl set_param debug=0x33f0484"}
26
27 PIOSBIN=${PIOSBIN:-$(which pios 2> /dev/null || true)}
28
29 pios_THREADCOUNT=${pios_THREADCOUNT:-"1,8,40"}
30 [ "$SLOW" = "no" ] && pios_THREADCOUNT=8
31
32 pios_REGIONCOUNT=${pios_REGIONCOUNT:-1024}
33 pios_CHUNKSIZE=${pios_CHUNKSIZE:-1M}
34 pios_REGIONSIZE=${pios_REGIONSIZE:-8M}
35 pios_OFFSET=${pios_OFFSET:-16M}
36
37 [ "$SLOW" = "no" ] && EXCEPT_SLOW="iozone"
38
39 build_test_filter
40 check_and_setup_lustre
41
42 assert_DIR
43 rm -rf $DIR/[df][0-9]*
44
45 test_dbench() {
46     if ! which dbench > /dev/null 2>&1 ; then
47         skip_env "No dbench installed"
48         return
49     fi
50
51     DBENCHDIR=$MOUNT/d0.$HOSTNAME
52     mkdir -p $DBENCHDIR
53     local SPACE=`df -P $MOUNT | tail -n 1 | awk '{ print $4 }'`
54     DB_THREADS=$((SPACE / 50000))
55     [ $THREADS -lt $DB_THREADS ] && DB_THREADS=$THREADS
56     
57     $DEBUG_OFF
58     myUID=$RUNAS_ID
59     myRUNAS=$RUNAS
60     FAIL_ON_ERROR=false check_runas_id_ret $myUID $myUID $myRUNAS || { myRUNAS="" && myUID=$UID; }
61     chown $myUID:$myUID $DBENCHDIR
62     local duration=""
63     [ "$SLOW" = "no" ] && duration=" -t 120"
64     if [ "$SLOW" != "no" -o $DB_THREADS -eq 1 ]; then
65         $myRUNAS bash rundbench -D $DBENCHDIR 1 $duration || error "dbench failed!"
66         $DEBUG_ON
67     fi
68     if [ $DB_THREADS -gt 1 ]; then
69         $DEBUG_OFF
70         $myRUNAS bash rundbench -D $DBENCHDIR $DB_THREADS $duration
71         $DEBUG_ON
72     fi
73     rm -rf $DBENCHDIR
74 }
75 run_test dbench "dbench"
76
77 test_bonnie() {
78     if ! which bonnie++ > /dev/null 2>&1; then
79         skip_env "No bonnie++ installed"
80         return 0
81     fi
82     BONDIR=$MOUNT/d0.bonnie
83     mkdir -p $BONDIR
84     $LFS setstripe -c -1 $BONDIR
85     sync
86     local MIN=`lctl get_param -n osc.*.kbytesavail | sort -n | head -n1`
87     local SPACE=$(( OSTCOUNT * MIN ))
88     [ $SPACE -lt $SIZE ] && SIZE=$((SPACE * 3 / 4))
89     log "min OST has ${MIN}kB available, using ${SIZE}kB file size"
90     $DEBUG_OFF
91     myUID=$RUNAS_ID
92     myRUNAS=$RUNAS
93     FAIL_ON_ERROR=false check_runas_id_ret $myUID $myUID $myRUNAS || { myRUNAS="" && myUID=$UID; }
94     chown $myUID:$myUID $BONDIR         
95     $myRUNAS bonnie++ -f -r 0 -s$((SIZE / 1024)) -n 10 -u$myUID:$myUID -d$BONDIR
96     $DEBUG_ON
97 }
98 run_test bonnie "bonnie++"
99
100 test_iozone() {
101     if ! which iozone > /dev/null 2>&1; then
102         skip_env "No iozone installed"
103         return 0
104     fi
105
106     export O_DIRECT
107     
108     IOZDIR=$MOUNT/d0.iozone
109     mkdir -p $IOZDIR
110     $LFS setstripe -c -1 $IOZDIR
111     sync
112     local MIN=`lctl get_param -n osc.*.kbytesavail | sort -n | head -n1`
113     local SPACE=$(( OSTCOUNT * MIN ))
114     [ $SPACE -lt $SIZE ] && SIZE=$((SPACE * 3 / 4))
115     log "min OST has ${MIN}kB available, using ${SIZE}kB file size"
116     IOZONE_OPTS="-i 0 -i 1 -i 2 -e -+d -r $RSIZE"
117     IOZFILE="$IOZDIR/iozone"
118     IOZLOG=$TMP/iozone.log
119                 # $SPACE was calculated with all OSTs
120     $DEBUG_OFF
121     myUID=$RUNAS_ID
122     myRUNAS=$RUNAS
123     FAIL_ON_ERROR=false check_runas_id_ret $myUID $myUID $myRUNAS || { myRUNAS="" && myUID=$UID; }
124     chown $myUID:$myUID $IOZDIR
125     $myRUNAS iozone $IOZONE_OPTS -s $SIZE -f $IOZFILE 2>&1 | tee $IOZLOG
126     tail -1 $IOZLOG | grep -q complete || \
127         { error "iozone (1) failed" && return 1; }
128     rm -f $IOZLOG
129     $DEBUG_ON
130     
131     # check if O_DIRECT support is implemented in kernel
132     if [ -z "$O_DIRECT" ]; then
133         touch $MOUNT/f.iozone
134         if ! ./directio write $MOUNT/f.iozone 0 1; then
135             log "SKIP iozone DIRECT IO test"
136             O_DIRECT=no
137         fi
138         rm -f $MOUNT/f.iozone
139     fi
140     if [ "$O_DIRECT" != "no" -a "$IOZONE_DIR" != "no" ]; then
141         $DEBUG_OFF
142         $myRUNAS iozone -I $IOZONE_OPTS -s $SIZE -f $IOZFILE.odir 2>&1 | tee $IOZLOG
143         tail -1 $IOZLOG | grep -q complete || \
144             { error "iozone (2) failed" && return 1; }
145         rm -f $IOZLOG
146         $DEBUG_ON
147     fi
148
149     SPACE=`df -P $MOUNT | tail -n 1 | awk '{ print $4 }'`
150     IOZ_THREADS=$((SPACE / SIZE * 2 / 3 ))
151     [ $THREADS -lt $IOZ_THREADS ] && IOZ_THREADS=$THREADS
152     IOZVER=`iozone -v | awk '/Revision:/ {print $3}' | tr -d .`
153     if [ "$IOZ_THREADS" -gt 1 -a "$IOZVER" -ge 3145 ]; then
154         $LFS setstripe -c -1 $IOZDIR
155         $DEBUG_OFF
156         THREAD=1
157         IOZFILE=" "
158         while [ $THREAD -le $IOZ_THREADS ]; do
159             IOZFILE="$IOZFILE $IOZDIR/iozone.$THREAD"
160             THREAD=$((THREAD + 1))
161         done
162         $myRUNAS iozone $IOZONE_OPTS -s $((SIZE / IOZ_THREADS)) -t $IOZ_THREADS -F $IOZFILE 2>&1 | tee $IOZLOG
163         tail -1 $IOZLOG | grep -q complete || \
164             { error "iozone (3) failed" && return 1; }
165         rm -f $IOZLOG
166         $DEBUG_ON
167     elif [ $IOZVER -lt 3145 ]; then
168         VER=`iozone -v | awk '/Revision:/ { print $3 }'`
169         echo "iozone $VER too old for multi-thread test"
170     fi
171 }
172 run_test iozone "iozone"
173
174 test_fsx() {
175     FSX_SIZE=$SIZE
176     FSX_COUNT=1000
177     local SPACE=`df -P $MOUNT | tail -n 1 | awk '{ print $4 }'`
178     [ $SPACE -lt $FSX_SIZE ] && FSX_SIZE=$((SPACE * 3 / 4))
179     $DEBUG_OFF
180     FSX_SEED=${FSX_SEED:-$RANDOM}
181     rm -f $MOUNT/fsxfile
182     $LFS setstripe -c -1 $MOUNT/fsxfile
183     echo Using FSX_SEED=$FSX_SEED FSX_SIZE=$FSX_SIZE FSX_COUNT=$FSX_COUNT
184     fsx -c 50 -p 1000 -S $FSX_SEED -P $TMP -l $FSX_SIZE \
185         -N $(($FSX_COUNT * 100)) $MOUNT/fsxfile
186     $DEBUG_ON
187 }
188 run_test fsx "fsx"
189
190
191 ############################################################
192 # PIOS
193 #
194
195 iterpr_KMGT () {
196     local str=$1
197     local num=${str:0:${#str}-1}
198     case ${str:${#str}-1} in
199         k|K ) num=$((num << 10));; #
200         m|M ) num=$((num << 20));; # emacs is confsued by the <<  and
201         g|G ) num=$((num << 30));; # these comments help it out.
202         t|T ) num=$((num << 40));; #
203           * ) num=$str;;
204     esac
205     echo $num
206 }
207
208 space_check () {
209     # space estimation
210     # /* Adding 10% to total test size for filesystem overhead */
211     #  size = size + (double)(size) * (double) (0.1);
212     # 
213     #  total_test_size = runarg->stream[n - 1].max_offset +
214     #                            runarg->regionsize;
215
216     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
217     local size=$(($(iterpr_KMGT $pios_REGIONCOUNT) * \
218                   $(iterpr_KMGT $pios_OFFSET) + \
219                   $(iterpr_KMGT $pios_REGIONSIZE) ))
220     size=$(( size + size / 10 ))
221     if [ $((space * 1024)) -le $size ]; then 
222         echo "Need free space atleast $size, have $((space * 1024))"
223         return 10
224     fi
225 }
226
227 pios_setup() { 
228     local testdir=$DIR/$tdir
229     mkdir -p $testdir
230
231     stripes=1
232     [ "$1" == "--stripe" ] && stripes=-1
233     $LFS setstripe $testdir -c $stripes
234     echo "Test directory stripe count: $stripes"
235 }
236
237 pios_cleanup() {
238     local rc=$1
239     local testdir=$DIR/$tdir
240     [ $rc = 0 ] && rm -rf $testdir
241 }
242
243 run_pios () {
244     local testdir=$DIR/$tdir
245     local cmd="$PIOSBIN  -t $pios_THREADCOUNT -n $pios_REGIONCOUNT \
246                          -c $pios_CHUNKSIZE -s $pios_REGIONSIZE    \
247                          -o $pios_OFFSET  $@ -p $testdir"
248     
249     if [ ! -d $testdir ]; then  
250         error "No test directory created, setup_pios must have failed"
251         return 20
252     fi
253
254     log "$cmd"
255
256     local rc=0
257     eval $cmd
258     rc=$?
259
260     return $rc
261 }
262
263 test_pios_ssf() {
264     if  [ -z "$PIOSBIN" ]; then
265         skip_env "$0 : pios not found PIOSBIN=$PIOSBIN"
266         return
267     fi
268
269     local rc=0
270     space_check || { skip_env "not enough space" && return 0; }
271     pios_setup --stripe || return
272     run_pios || return
273     run_pios  --verify || rc=$? 
274     pios_cleanup $rc
275     return $rc
276 }
277 run_test pios_ssf "pios shared single file"
278
279 test_pios_fpp() {
280     if  [ -z "$PIOSBIN" ]; then
281         skip_env "pios not found PIOSBIN=$PIOSBIN"
282         return
283     fi
284
285     local rc=0
286     space_check || { skip_env "not enough space" && return 0; }
287     pios_setup || return
288     run_pios -L fpp || return
289     run_pios -L fpp --verify || rc=$?
290     pios_cleanup $rc
291     return $rc
292 }
293 run_test pios_fpp "pios file per process"
294
295 equals_msg `basename $0`: test complete, cleaning up
296 check_and_cleanup_lustre
297 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true