Whamcloud - gitweb
LU-17705 ptlrpc: replace synchronize_rcu() with rcu_barrier()
[fs/lustre-release.git] / lustre / tests / mdsrate-lookup-10dirs.sh
1 #!/bin/bash
2 #
3 # This test was used in a set of CMD3 tests (cmd3-5 test).
4
5 # Directory lookup retrieval rate 10 directories 1 million files each
6 # 6000 random lookups/sec per client node 62,000 random lookups/sec aggregate
7 #
8 # In 10 dirs containing 1 million files each the mdsrate Test Program will
9 # perform lookups for 10 minutes. This test is run from a single node for
10 # #1 and from all nodes for #2 aggregate test to measure lookup performance.
11 # TEst performs lookups across all 10 directories.
12
13 LUSTRE=${LUSTRE:-$(dirname $0)/..}
14 . $LUSTRE/tests/test-framework.sh
15 init_test_env $@
16
17 assert_env CLIENTS MDSRATE SINGLECLIENT MPIRUN
18
19 # Do not use name [df][0-9]* to avoid cleanup by rm, bug 18045
20 BASEDIR=$MOUNT/mdsrate
21
22 # Requirements
23 NUM_DIRS=${NUM_DIRS:-10}
24 NUM_FILES=${NUM_FILES:-1000000}
25 TIME_PERIOD=${TIME_PERIOD:-600}                        # seconds
26
27 LOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
28 CLIENT=$SINGLECLIENT
29 NODES_TO_USE=${NODES_TO_USE:-$CLIENTS}
30 NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
31
32 rm -f $LOG
33
34 [ ! -x ${MDSRATE} ] && error "${MDSRATE} not built."
35
36 log "===== $0 ====== "
37
38 check_and_setup_lustre
39
40 mkdir -p $BASEDIR
41 chmod 0777 $BASEDIR
42 mdsrate_STRIPEPARAMS=${mdsrate_STRIPEPARAMS:-${fs_STRIPEPARAMS:-"-c 1"}}
43 setstripe_getstripe $BASEDIR $mdsrate_STRIPEPARAMS
44
45 IFree=$(($(mdsrate_inodes_available) - NUM_DIRS))
46 if [ $IFree -lt $((NUM_FILES * NUM_DIRS)) ]; then
47     NUM_FILES=$((IFree / NUM_DIRS))
48 fi
49
50 generate_machine_file $NODES_TO_USE $MACHINEFILE || error "can not generate machinefile"
51
52 DIRfmt="${BASEDIR}/lookup-%d"
53
54 #
55 # Unlink the files created in the directories under $BASEDIR.
56 # FIXME: does it make sense to add the possibility to unlink dirfmt to mdsrate?
57 #
58 mdsrate_cleanup_all() {
59         local i
60         for i in $(seq 0 $NUM_DIRS); do
61                 mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES \
62                                 $BASEDIR/lookup-$i 'f%%d' --ignore
63         done
64 }
65
66 if [ -n "$NOCREATE" ]; then
67     echo "NOCREATE=$NOCREATE  => no file creation."
68 else
69         mdsrate_cleanup_all
70
71     log "===== $0 Test preparation: creating ${NUM_DIRS} dirs with ${NUM_FILES} files."
72
73     COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --mknod
74                         --ndirs ${NUM_DIRS} --dirfmt '${DIRfmt}'
75                         --nfiles ${NUM_FILES} --filefmt 'f%%d'"
76
77         echo "+" ${COMMAND}
78         # For files creation we can use -np equal to NUM_DIRS
79         # This is just a test preparation, does not matter how many threads we
80         # use for files creation; we just should be aware that NUM_DIRS is less
81         # than or equal to the number of threads np
82         mpi_run ${MACHINEFILE_OPTION} ${MACHINEFILE} -np ${NUM_DIRS} \
83                 ${COMMAND} 2>&1
84
85         # No lookup if error occurs on file creation, abort.
86         if [ ${PIPESTATUS[0]} != 0 ]; then
87                 error_noexit "mdsrate file creation failed, aborting"
88                 mdsrate_cleanup_all
89                 exit 1
90         fi
91 fi
92
93 COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --lookup --time ${TIME_PERIOD} ${SEED_OPTION}
94         --ndirs ${NUM_DIRS} --dirfmt '${DIRfmt}'
95         --nfiles ${NUM_FILES} --filefmt 'f%%d'"
96
97 # 1
98 if [ -n "$NOSINGLE" ]; then
99     echo "NO Test for lookups on a single client."
100 else
101         log "===== $0 ### 1 NODE LOOKUPS ###"
102         echo "+" ${COMMAND}
103         mpi_run ${MACHINEFILE_OPTION} ${MACHINEFILE} -np 1 ${COMMAND} |
104                 tee ${LOG}
105
106         if [ ${PIPESTATUS[0]} != 0 ]; then
107                 [ -f $LOG ] && sed -e "s/^/log: /" $LOG
108                 error_noexit "mdsrate lookup on single client failed, aborting"
109                 mdsrate_cleanup_all
110                 exit 1
111         fi
112 fi
113
114 # 2
115 [ $NUM_CLIENTS -eq 1 ] && NOMULTI=yes
116 if [ -n "$NOMULTI" ]; then
117     echo "NO test for lookups on multiple nodes."
118 else
119         log "===== $0 ### ${NUM_CLIENTS} NODES LOOKUPS ###"
120         echo "+" ${COMMAND}
121         mpi_run ${MACHINEFILE_OPTION} ${MACHINEFILE} -np ${NUM_CLIENTS} \
122                 ${COMMAND} | tee ${LOG}
123
124         if [ ${PIPESTATUS[0]} != 0 ]; then
125                 [ -f $LOG ] && sed -e "s/^/log: /" $LOG
126                 error_noexit "mdsrate lookup on multiple nodes failed, aborting"
127                 mdsrate_cleanup_all
128                 exit 1
129         fi
130 fi
131
132 complete $SECONDS
133 mdsrate_cleanup_all
134 rmdir $BASEDIR || true
135 rm -f $MACHINEFILE
136 check_and_cleanup_lustre
137 #rm -f $LOG
138
139 exit 0