Whamcloud - gitweb
b=20748
[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 TESTDIR=$MOUNT/mdsrate
23
24 # Requirements
25 NUM_FILES=${NUM_FILES:-1000000}
26 TIME_PERIOD=${TIME_PERIOD:-600}                        # seconds
27
28 # --random_order (default) -OR- --readdir_order
29 DIR_ORDER=${DIR_ORDER:-"--readdir_order"}
30
31 LOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
32 CLIENT=$SINGLECLIENT
33 NODES_TO_USE=${NODES_TO_USE:-$CLIENTS}
34 NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
35
36 rm -f $LOG
37
38 [ ! -x ${MDSRATE} ] && error "${MDSRATE} not built."
39
40 log "===== $0 ====== " 
41
42 check_and_setup_lustre
43 mkdir -p $TESTDIR
44 chmod 0777 $TESTDIR
45
46 IFree=$(inodes_available)
47 if [ $IFree -lt $NUM_FILES ]; then
48     NUM_FILES=$IFree
49 fi
50
51 generate_machine_file $NODES_TO_USE $MACHINEFILE || error "can not generate machinefile"
52
53 $LFS setstripe $TESTDIR -c -1
54 get_stripe $TESTDIR
55
56 if [ -n "$NOCREATE" ]; then
57     echo "NOCREATE=$NOCREATE  => no file creation."
58 else
59     mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $TESTDIR 'f%%d' --ignore
60
61     log "===== $0 Test preparation: creating ${NUM_FILES} files."
62
63     COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --create --dir ${TESTDIR}
64                         --nfiles ${NUM_FILES} --filefmt 'f%%d'"
65     echo "+" ${COMMAND}
66
67     NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
68     NUM_THREADS=$((NUM_CLIENTS * MDSCOUNT))
69     if [ $NUM_CLIENTS -gt 50 ]; then
70         NUM_THREADS=$NUM_CLIENTS
71     fi
72
73     mpi_run -np ${NUM_THREADS} -machinefile ${MACHINEFILE} ${COMMAND} 2>&1
74     [ ${PIPESTATUS[0]} != 0 ] && error "mdsrate file creation failed, aborting"
75
76 fi
77
78 COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --stat --time ${TIME_PERIOD}
79         --dir ${TESTDIR} --nfiles ${NUM_FILES} --filefmt 'f%%d'
80         ${DIR_ORDER} ${SEED_OPTION}"
81
82 # 1
83 if [ -n "$NOSINGLE" ]; then
84     echo "NO Test for stats on a single client."
85 else
86     log "===== $0 ### 1 NODE STAT ###"
87     echo "+" ${COMMAND}
88
89     mpi_run -np 1 -machinefile ${MACHINEFILE} ${COMMAND} | tee ${LOG}
90
91     if [ ${PIPESTATUS[0]} != 0 ]; then
92         [ -f $LOG ] && sed -e "s/^/log: /" $LOG
93         error "mdsrate stats on a single client failed, aborting"
94     fi
95 fi
96
97 # 2
98 [ $NUM_CLIENTS -eq 1 ] && NOMULTI=yes
99 if [ -n "$NOMULTI" ]; then
100     echo "NO test for stats on multiple nodes."
101 else
102     log "===== $0 ### ${NUM_CLIENTS} NODES STAT ###"
103     echo "+" ${COMMAND}
104
105     mpi_run -np ${NUM_CLIENTS} -machinefile ${MACHINEFILE} ${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 equals_msg `basename $0`: test complete, cleaning up
114 mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $TESTDIR 'f%%d'
115 rm -f $MACHINEFILE
116 check_and_cleanup_lustre
117 #rm -f $LOG
118
119 exit 0