3 # This test was used in a set of CMD3 tests (cmd3-7 test).
5 # File attribute retrieval rate for small file creation
6 # 3200 ops/sec for single node 29,000 ops/sec aggregate
8 # In a dir containing 10 million non-striped files, the mdsrate Test Program
9 # will perform directory ordered stat's (readdir) for 10 minutes. This test
10 # will be run from a single node for #1 and from all nodes for #2
11 # aggregate test to measure stat performance.
13 LUSTRE=${LUSTRE:-`dirname $0`/..}
14 . $LUSTRE/tests/test-framework.sh
16 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
18 assert_env CLIENTS MDSRATE SINGLECLIENT MPIRUN
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
26 NUM_FILES=${NUM_FILES:-1000000}
27 TIME_PERIOD=${TIME_PERIOD:-600} # seconds
29 LOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
31 NODES_TO_USE=${NODES_TO_USE:-$CLIENTS}
32 NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
36 [ ! -x ${MDSRATE} ] && error "${MDSRATE} not built."
38 log "===== $0 ====== "
40 check_and_setup_lustre
44 $LFS setstripe $BASEDIR -i 0 -c 1
47 IFree=$(mdsrate_inodes_available)
48 if [ $IFree -lt $NUM_FILES ]; then
52 generate_machine_file $NODES_TO_USE $MACHINEFILE || error "can not generate machinefile"
54 if [ -n "$NOCREATE" ]; then
55 echo "NOCREATE=$NOCREATE => no file creation."
57 mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $TESTDIR 'f%%d' --ignore
59 log "===== $0 Test preparation: creating ${NUM_FILES} files."
61 COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --mknod --dir ${TESTDIR}
62 --nfiles ${NUM_FILES} --filefmt 'f%%d'"
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
71 mpi_run -np ${NUM_THREADS} ${MACHINEFILE_OPTION} ${MACHINEFILE} \
73 [ ${PIPESTATUS[0]} != 0 ] &&
74 error "mdsrate file creation failed, aborting"
78 COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --stat --time ${TIME_PERIOD}
79 --dir ${TESTDIR} --nfiles ${NUM_FILES} --filefmt 'f%%d'"
82 if [ -n "$NOSINGLE" ]; then
83 echo "NO Test for stats on a single client."
85 log "===== $0 ### 1 NODE STAT ###"
88 mpi_run -np 1 ${MACHINEFILE_OPTION} ${MACHINEFILE} ${COMMAND} |
91 if [ ${PIPESTATUS[0]} != 0 ]; then
92 [ -f $LOG ] && sed -e "s/^/log: /" $LOG
93 error "mdsrate on a single client failed, aborting"
98 [ $NUM_CLIENTS -eq 1 ] && NOMULTI=yes
99 if [ -n "$NOMULTI" ]; then
100 echo "NO test for stats on multiple nodes."
102 log "===== $0 ### ${NUM_CLIENTS} NODES STAT ###"
105 mpi_run -np ${NUM_CLIENTS} ${MACHINEFILE_OPTION} ${MACHINEFILE} \
106 ${COMMAND} | tee ${LOG}
108 if [ ${PIPESTATUS[0]} != 0 ]; then
109 [ -f $LOG ] && sed -e "s/^/log: /" $LOG
110 error "mdsrate stats on multiple nodes failed, aborting"
115 mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $TESTDIR 'f%%d'
116 rmdir $BASEDIR || true
118 check_and_cleanup_lustre