Whamcloud - gitweb
LU-2955 tests: make replay-ost-single/8b SLOW for ZFS
[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 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
17 assert_env CLIENTS MDSRATE SINGLECLIENT MPIRUN
18
19 MACHINEFILE=${MACHINEFILE:-$TMP/$(basename $0 .sh).machines}
20 # Do not use name [df][0-9]* to avoid cleanup by rm, bug 18045
21 BASEDIR=$MOUNT/mdsrate
22
23 # Requirements
24 NUM_DIRS=${NUM_DIRS:-10}
25 NUM_FILES=${NUM_FILES:-1000000}
26 TIME_PERIOD=${TIME_PERIOD:-600}                        # seconds
27
28 LOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
29 CLIENT=$SINGLECLIENT
30 NODES_TO_USE=${NODES_TO_USE:-$CLIENTS}
31 NUM_CLIENTS=$(get_node_count ${NODES_TO_USE//,/ })
32
33 rm -f $LOG
34
35 [ ! -x ${MDSRATE} ] && error "${MDSRATE} not built."
36
37 log "===== $0 ====== " 
38
39 check_and_setup_lustre
40
41 mkdir -p $BASEDIR
42 chmod 0777 $BASEDIR
43 $LFS setstripe $BASEDIR -c 1
44 get_stripe $BASEDIR
45
46 IFree=$(($(mdsrate_inodes_available) - NUM_DIRS))
47 if [ $IFree -lt $((NUM_FILES * NUM_DIRS)) ]; then
48     NUM_FILES=$((IFree / NUM_DIRS))
49 fi
50
51 generate_machine_file $NODES_TO_USE $MACHINEFILE || error "can not generate machinefile"
52
53 DIRfmt="${BASEDIR}/lookup-%d"
54
55 if [ -n "$NOCREATE" ]; then
56     echo "NOCREATE=$NOCREATE  => no file creation."
57 else
58     # FIXME: does it make sense to add the possibility to unlink dirfmt to mdsrate?
59     for i in $(seq 0 $NUM_DIRS); do
60         mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES $BASEDIR/lookup-$i 'f%%d' --ignore
61     done
62
63     log "===== $0 Test preparation: creating ${NUM_DIRS} dirs with ${NUM_FILES} files."
64
65     COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --mknod
66                         --ndirs ${NUM_DIRS} --dirfmt '${DIRfmt}'
67                         --nfiles ${NUM_FILES} --filefmt 'f%%d'"
68
69         echo "+" ${COMMAND}
70         # For files creation we can use -np equal to NUM_DIRS
71         # This is just a test preparation, does not matter how many threads we
72         # use for files creation; we just should be aware that NUM_DIRS is less
73         # than or equal to the number of threads np
74         mpi_run -np ${NUM_DIRS} ${MACHINEFILE_OPTION} ${MACHINEFILE} \
75                 ${COMMAND} 2>&1
76
77     # No lookup if error occurs on file creation, abort.
78     [ ${PIPESTATUS[0]} != 0 ] && error "mdsrate file creation failed, aborting"
79 fi
80
81 COMMAND="${MDSRATE} ${MDSRATE_DEBUG} --lookup --time ${TIME_PERIOD} ${SEED_OPTION}
82         --ndirs ${NUM_DIRS} --dirfmt '${DIRfmt}'
83         --nfiles ${NUM_FILES} --filefmt 'f%%d'"
84
85 # 1
86 if [ -n "$NOSINGLE" ]; then
87     echo "NO Test for lookups on a single client."
88 else
89         log "===== $0 ### 1 NODE LOOKUPS ###"
90         echo "+" ${COMMAND}
91         mpi_run -np 1 ${MACHINEFILE_OPTION} ${MACHINEFILE} ${COMMAND} |
92                 tee ${LOG}
93
94     if [ ${PIPESTATUS[0]} != 0 ]; then
95         [ -f $LOG ] && sed -e "s/^/log: /" $LOG
96         error "mdsrate lookups on a single client failed, aborting"
97     fi
98 fi
99
100 # 2
101 [ $NUM_CLIENTS -eq 1 ] && NOMULTI=yes
102 if [ -n "$NOMULTI" ]; then
103     echo "NO test for lookups on multiple nodes."
104 else
105         log "===== $0 ### ${NUM_CLIENTS} NODES LOOKUPS ###"
106         echo "+" ${COMMAND}
107         mpi_run -np ${NUM_CLIENTS} ${MACHINEFILE_OPTION} ${MACHINEFILE} \
108                 ${COMMAND} | tee ${LOG}
109
110     if [ ${PIPESTATUS[0]} != 0 ]; then
111         [ -f $LOG ] && sed -e "s/^/log: /" $LOG
112         error "mdsrate lookups on multiple nodes failed, aborting"
113     fi
114 fi
115
116 complete $SECONDS
117 # FIXME: does it make sense to add the possibility to unlink dirfmt to mdsrate?
118 for i in $(seq 0 $NUM_DIRS); do
119         mdsrate_cleanup $NUM_CLIENTS $MACHINEFILE $NUM_FILES \
120                 $BASEDIR/lookup-$i 'f%%d' --ignore
121 done
122
123 rmdir $BASEDIR || true
124 rm -f $MACHINEFILE
125 check_and_cleanup_lustre
126 #rm -f $LOG
127
128 exit 0