mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
perf-test: cache unpacked corpus
Unpacking is not really the expensive step (compared to the initial notmuch new), but this is a pre-requisite to caching the database.
This commit is contained in:
parent
925ebd1fde
commit
74a883562b
3 changed files with 36 additions and 18 deletions
1
performance-test/.gitignore
vendored
1
performance-test/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
tmp.*/
|
||||
corpus/
|
||||
|
|
|
@ -29,4 +29,4 @@ $(TXZFILE):
|
|||
download-corpus:
|
||||
wget -O ${TXZFILE} ${DEFAULT_URL}
|
||||
|
||||
CLEAN := $(CLEAN) $(dir)/tmp.*
|
||||
CLEAN := $(CLEAN) $(dir)/tmp.* $(dir)/corpus
|
||||
|
|
|
@ -39,17 +39,27 @@ add_email_corpus ()
|
|||
{
|
||||
rm -rf ${MAIL_DIR}
|
||||
|
||||
case "$1" in
|
||||
--small)
|
||||
arg="mail/enron/bailey-s"
|
||||
case "$corpus_size" in
|
||||
small)
|
||||
mail_subdir="mail/enron/bailey-s"
|
||||
check_for="${TEST_DIRECTORY}/corpus/$mail_subdir"
|
||||
;;
|
||||
--medium)
|
||||
arg="mail/notmuch-archive"
|
||||
medium)
|
||||
mail_subdir="mail/notmuch-archive"
|
||||
check_for="${TEST_DIRECTORY}/corpus/$mail_subdir"
|
||||
;;
|
||||
*)
|
||||
arg=mail
|
||||
mail_subdir=mail
|
||||
check_for="${TEST_DIRECTORY}/corpus/$mail_subdir/enron/wolfe-j"
|
||||
esac
|
||||
|
||||
MAIL_CORPUS="${TEST_DIRECTORY}/corpus/$mail_subdir"
|
||||
args=()
|
||||
if [ ! -d "$check_for" ] ; then
|
||||
args+=("notmuch-email-corpus/$mail_subdir")
|
||||
fi
|
||||
|
||||
if [[ ${#args[@]} > 0 ]]; then
|
||||
if command -v pixz > /dev/null; then
|
||||
XZ=pixz
|
||||
else
|
||||
|
@ -57,15 +67,22 @@ add_email_corpus ()
|
|||
fi
|
||||
|
||||
printf "Unpacking corpus\n"
|
||||
mkdir -p "${TEST_DIRECTORY}/corpus"
|
||||
|
||||
tar --checkpoint=.5000 --extract --strip-components=1 \
|
||||
--directory ${TMP_DIRECTORY} \
|
||||
--directory ${TEST_DIRECTORY}/corpus \
|
||||
--use-compress-program ${XZ} \
|
||||
--file ../download/notmuch-email-corpus-${PERFTEST_VERSION}.tar.xz \
|
||||
notmuch-email-corpus/"$arg"
|
||||
"${args[@]}"
|
||||
|
||||
printf "\n"
|
||||
|
||||
fi
|
||||
|
||||
cp -lr $MAIL_CORPUS $MAIL_DIR
|
||||
}
|
||||
|
||||
|
||||
print_header () {
|
||||
printf "[v%4s %6s] Wall(s)\tUsr(s)\tSys(s)\tRes(K)\tIn/Out(512B)\n" \
|
||||
${PERFTEST_VERSION} ${corpus_size}
|
||||
|
|
Loading…
Reference in a new issue