perf: increase UDP send rate for performance test (#4793)

Now that we've worked out the flakiness from the iperf tests, we should
increase the UDP send rate so we have some benchmark of how many packets
we can actually handle before dropping.
This commit is contained in:
Jamil
2024-04-26 14:11:44 -07:00
committed by GitHub
parent a4d4b4fbfc
commit a43f39ae8b
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ source "./scripts/tests/lib.sh"
docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \
--udp \
--bandwidth 50M \
--bandwidth 500M \
--client 172.20.0.110 \
--json' >>"${TEST_NAME}.json"

View File

@@ -7,7 +7,7 @@ source "./scripts/tests/lib.sh"
docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \
--reverse \
--udp \
--bandwidth 50M \
--bandwidth 500M \
--client 172.20.0.110 \
--json' >>"${TEST_NAME}.json"

View File

@@ -7,7 +7,7 @@ install_iptables_drop_rules
docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \
--udp \
--bandwidth 50M \
--bandwidth 500M \
--client 172.20.0.110 \
--json' >>"${TEST_NAME}.json"

View File

@@ -8,7 +8,7 @@ install_iptables_drop_rules
docker compose exec --env RUST_LOG=info -it client /bin/sh -c 'iperf3 \
--reverse \
--udp \
--bandwidth 50M \
--bandwidth 500M \
--client 172.20.0.110 \
--json' >>"${TEST_NAME}.json"