From 33af16acf0731cb561f1ea3382e045230c78c39f Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Wed, 29 Jul 2020 11:22:06 +0200 Subject: [PATCH] Default to more (m)threads for bulk and fix a typo in test-recursor-bulk --- build-scripts/test-recursor-bulk | 2 +- regression-tests/recursor-test | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-scripts/test-recursor-bulk b/build-scripts/test-recursor-bulk index 9921b9e896..981dd4b9c7 100755 --- a/build-scripts/test-recursor-bulk +++ b/build-scripts/test-recursor-bulk @@ -17,7 +17,7 @@ wget -c -N http://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip unzip top-1m.csv.zip -numdomains="1000 5000 10000 50000 100000 500000 100000" +numdomains="1000 5000 10000 50000 100000 500000 1000000" if [ ! -z "$1" ]; then numdomains="$1" fi diff --git a/regression-tests/recursor-test b/regression-tests/recursor-test index e65bbc257c..184e5676d7 100755 --- a/regression-tests/recursor-test +++ b/regression-tests/recursor-test @@ -4,9 +4,9 @@ port=$1 limit=$2 [ -z "$limit" ] && limit=100000 threads=$3 -[ -z "$threads" ] && threads=2 +[ -z "$threads" ] && threads=8 mthreads=$4 -[ -z "$mthreads" ] && mthreads=100 +[ -z "$mthreads" ] && mthreads=2048 shards=$5 [ -z "$shards" ] && shards=1024 -- 2.47.2