summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-12-01 15:54:07 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-12-01 15:54:07 +0000
commitd216e7d74ee780a408ee89a77bd81c0477275ae3 (patch)
tree47d2f5684e9aabae74037c49051ea16fac0d613f /searchcore
parente5a6ebae583b0c2e0f84a3b5446375b5c755aa6f (diff)
Also test distributr directly on chain
Diffstat (limited to 'searchcore')
-rwxr-xr-xsearchcore/src/apps/vespa-feed-bm/runtest.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/searchcore/src/apps/vespa-feed-bm/runtest.sh b/searchcore/src/apps/vespa-feed-bm/runtest.sh
index fc67354f7f6..123cce6fdf0 100755
--- a/searchcore/src/apps/vespa-feed-bm/runtest.sh
+++ b/searchcore/src/apps/vespa-feed-bm/runtest.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-numdocs=2000000
+numdocs=500000
stripe_bits=8
base_cmd="numactl --cpunodebind=0 --localalloc perf stat -ddd env LD_PRELOAD=$HOME/vespa/lib64/vespa/malloc/libvespamalloc.so ./vespa-feed-bm --documents $numdocs --put-passes 1 --update-passes 10 --remove-passes 0 --indexing-sequencer throughput"
@@ -8,12 +8,13 @@ base_cmd="numactl --cpunodebind=0 --localalloc perf stat -ddd env LD_PRELOAD=$HO
spi_only="$base_cmd --max-pending 8000 --client-threads 1"
base_for_rest="$base_cmd --max-pending 2000 --client-threads 2 --response-threads 3"
-chain_base="$base_for_rest --use-storage-chain "
+chain_base="$base_for_rest --use-storage-chain"
chain_stripe="$chain_base --bucket-db-stripe-bits $stripe_bits"
chain_stripe_async="$chain_stripe --use-async-message-handling"
service_layer="$base_for_rest --enable-service-layer --bucket-db-stripe-bits $stripe_bits --use-async-message-handling"
service_layer_rpc="$service_layer --rpc-network-threads 3 --rpc-targets-per-node 14"
service_layer_mbus="$service_layer --use-message-bus"
+distributor_chain="$service_layer_rpc --enable-distributor --use-storage-chain"
distributor="$service_layer_rpc --enable-distributor"
echo "Running test: spi_only"
@@ -28,5 +29,7 @@ echo "Running test: service_layer_rpc"
$service_layer_rpc
echo "Running test: service_layer_mbus"
$service_layer_mbus
+echo "Running test: distributor_chain"
+$distributor_chain
echo "Running test: distributor"
$distributor