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