summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2022-04-23 03:20:17 +0200
committerMark Wielaard <mark@klomp.org>2022-04-23 03:20:17 +0200
commit318807e7f968fd70b80408e3df029c04365c47d8 (patch)
treed7094c781e233c7e808497ef7826f196283b6589 /tests
parent7b046b7c060acc32c00748ee66ac350f77bc6571 (diff)
downloadelfutils-318807e7f968fd70b80408e3df029c04365c47d8.tar.gz
tests: Lower parallel lookups in run-debuginfod-webapi-concurrency.sh
With 100 parallel lookups we sometimes see: Server reached connection limit. Closing inbound connection. Lower parallel lookups to 64 Signed-off-by: Mark Wielaard <mark@klomp.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/ChangeLog4
-rwxr-xr-xtests/run-debuginfod-webapi-concurrency.sh7
2 files changed, 8 insertions, 3 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index c734b260..2286f53f 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,7 @@
+2022-04-23 Mark Wielaard <mark@klomp.org>
+
+ * run-debuginfod-webapi-concurrency.sh: Lower parallel lookups.
+
2022-03-01 Di Chen <dichen@redhat.com>
* alldts.c (dtflags): Put DT_NULL last.
diff --git a/tests/run-debuginfod-webapi-concurrency.sh b/tests/run-debuginfod-webapi-concurrency.sh
index 402a6307..4928f6d0 100755
--- a/tests/run-debuginfod-webapi-concurrency.sh
+++ b/tests/run-debuginfod-webapi-concurrency.sh
@@ -47,12 +47,13 @@ do
wait_ready $PORT1 'thread_busy{role="scan"}' 0
# Do a bunch of lookups in parallel
- for jobs in `seq 100`; do
+ lookup_nr=64
+ for jobs in `seq $lookup_nr`; do
curl -s http://localhost:$PORT1/buildid/cee13b2ea505a7f37bd20d271c6bc7e5f8d2dfcb/debuginfo > /dev/null &
done
- # all 100 curls should succeed
- wait_ready $PORT1 'http_responses_transfer_bytes_count{code="200",type="debuginfo"}' 100
+ # all curls should succeed
+ wait_ready $PORT1 'http_responses_transfer_bytes_count{code="200",type="debuginfo"}' $lookup_nr
(sleep 5;
curl -s http://localhost:$PORT1/metrics | egrep 'error|responses';