From 3cffeef48302936ef5f79952a9cc52e0bb0b64a0 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 9 Sep 2025 22:58:33 +1000 Subject: [PATCH] ci: reduce target bitrate for UDP perf tests to 600Mbit/s (#10312) To achieve a more stable CI, we need to reduce the target bitrate of the UDP perf tests. Now that we no longer have GSO enabled in the tests, the most we can achieve in CI is 600Mbit/s. Forcing more packets through the tunnel results in all sorts of warnings which end up failing CI. --- scripts/tests/perf/direct-udp-client2server.sh | 2 +- scripts/tests/perf/direct-udp-server2client.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tests/perf/direct-udp-client2server.sh b/scripts/tests/perf/direct-udp-client2server.sh index 767df812f..4dc5f1ea1 100755 --- a/scripts/tests/perf/direct-udp-client2server.sh +++ b/scripts/tests/perf/direct-udp-client2server.sh @@ -7,7 +7,7 @@ source "./scripts/tests/lib.sh" docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \ --time 30 \ --udp \ - --bandwidth 1G \ + --bandwidth 600M \ --client 172.20.0.110 \ --json' >>"${TEST_NAME}.json" diff --git a/scripts/tests/perf/direct-udp-server2client.sh b/scripts/tests/perf/direct-udp-server2client.sh index 9b19369bb..c74ac4d96 100755 --- a/scripts/tests/perf/direct-udp-server2client.sh +++ b/scripts/tests/perf/direct-udp-server2client.sh @@ -8,7 +8,7 @@ docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \ --time 30 \ --reverse \ --udp \ - --bandwidth 1G \ + --bandwidth 600M \ --client 172.20.0.110 \ --json' >>"${TEST_NAME}.json"