Whamcloud - gitweb
LU-676 tests: machinefile option for mpirun via a variable
[fs/lustre-release.git] / lustre / tests / mdsrate-stat-large.sh
1 #!/bin/sh
2 #
3 # This test was used in a set of CMD3 tests (cmd3-8 test).
4
5 # File attribute retrieval rate for large file creation
6 # 3300 ops/sec/OST for single node 28500 ops/sec/OST aggregate
7
8 # In a dir containing 10 million striped files, the mdsrate Test Program will
9 # perform directory ordered stat's (readdir) for 10 minutes. This test will be
10 # run from a single node for #1 and from all nodes for #2 aggregate test to
11 # measure stat performance.  
12
13 LUSTRE=${LUSTRE:-`dirname $0`/..}
14 . $LUSTRE/tests/test-framework.sh
15 init_test_env $@
16 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
17
18 assert_env CLIENTS MDSRATE SINGLECLIENT MPIRUN
19
20 MACHINEFILE=${MACHINEFILE:-$TMP/$(basename $0 .sh).machines}
21 # Do not use name [df][0-9]* to avoid cleanup by rm, bug 18045
22 BASEDIR=$MOUNT/mdsrate
23 TESTDIR=$MOUNT/stat
24
25 # Requirements
26 NUM_FILES=${NUM_FILES:-1000000}
27 TIME_PERIOD=${TIME_PERIOD:-600}                        # seconds
28
29 LOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
30 CLIENT=$SINGLECLIENT
31 NODES_TO_USE=${NODES_TO_USE:-$CLIENTS}
32 NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
33
34 rm -f $LOG
35
36 [ ! -x ${MDSRATE} ] && error "${MDSRATE} not built."
37
38 log "===== $0 ====== " 
39
40 check_and_setup_lustre
41
42 mkdir -p $BASEDIR
43 chmod 0777 $BASEDIR
44 $LFS setstripe $BASEDIR -c -1
45 get_stripe $BASEDIR
46
47 IFree=$(mdsrate_inodes_available)
48 if [ $IFree -lt $NUM_FILES ]; then
49     NUM_FILES=$IFree
50 fi
51
52 generate_machine_file $NODES_TO_USE $MACHINEFILE || error "can not generate machinefile"
53
54 if [ -n "$NOCREATE" ]; then
55     echo "NOCREATE=$NOCREATE  => no file creation."
56 else
57     mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $TESTDIR 'f%%d' --ignore
58
59     log "===== $0 Test preparation: creating ${NUM_FILES} files."
60
61     COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --create --dir ${TESTDIR}
62                         --nfiles ${NUM_FILES} --filefmt 'f%%d'"
63     echo "+" ${COMMAND}
64
65     NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
66     NUM_THREADS=$((NUM_CLIENTS * MDSCOUNT))
67     if [ $NUM_CLIENTS -gt 50 ]; then
68         NUM_THREADS=$NUM_CLIENTS
69     fi
70
71         mpi_run -np ${NUM_THREADS} ${MACHINEFILE_OPTION} ${MACHINEFILE} \
72                 ${COMMAND} 2>&1
73         [ ${PIPESTATUS[0]} != 0 ] &&
74                 error "mdsrate file creation failed, aborting"
75 fi
76
77 COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --stat --time ${TIME_PERIOD}
78         --dir ${TESTDIR} --nfiles ${NUM_FILES} --filefmt 'f%%d'"
79
80 # 1
81 if [ -n "$NOSINGLE" ]; then
82     echo "NO Test for stats on a single client."
83 else
84     log "===== $0 ### 1 NODE STAT ###"
85     echo "+" ${COMMAND}
86
87         mpi_run -np 1 ${MACHINEFILE_OPTION} ${MACHINEFILE} ${COMMAND} |
88                 tee ${LOG}
89
90     if [ ${PIPESTATUS[0]} != 0 ]; then
91         [ -f $LOG ] && sed -e "s/^/log: /" $LOG
92         error "mdsrate stats on a single client failed, aborting"
93     fi
94 fi
95
96 # 2
97 [ $NUM_CLIENTS -eq 1 ] && NOMULTI=yes
98 if [ -n "$NOMULTI" ]; then
99     echo "NO test for stats on multiple nodes."
100 else
101     log "===== $0 ### ${NUM_CLIENTS} NODES STAT ###"
102     echo "+" ${COMMAND}
103
104         mpi_run -np ${NUM_CLIENTS} ${MACHINEFILE_OPTION} ${MACHINEFILE} \
105                 ${COMMAND} | tee ${LOG}
106
107     if [ ${PIPESTATUS[0]} != 0 ]; then
108         [ -f $LOG ] && sed -e "s/^/log: /" $LOG
109         error "mdsrate stats on multiple nodes failed, aborting"
110     fi
111 fi
112
113
114 complete $SECONDS
115 mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $TESTDIR 'f%%d'
116 rmdir $BASEDIR || true
117 rm -f $MACHINEFILE
118 check_and_cleanup_lustre
119 #rm -f $LOG
120
121 exit 0