This is an automated email from the ASF dual-hosted git repository. hubcio pushed a commit to branch server_perf_cut_extra_work in repository https://gitbox.apache.org/repos/asf/iggy.git
commit c2f5633fd8710a9f5f4148b7408696bed82ec853 Author: Hubert Gruszecki <[email protected]> AuthorDate: Mon Sep 14 19:59:18 2026 +0200 test(integration): raise segment rotation memory limit --- .../tests/server/scenarios/segment_rotation_race_scenario.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/integration/tests/server/scenarios/segment_rotation_race_scenario.rs b/core/integration/tests/server/scenarios/segment_rotation_race_scenario.rs index fb963ad0a..ba0071d3f 100644 --- a/core/integration/tests/server/scenarios/segment_rotation_race_scenario.rs +++ b/core/integration/tests/server/scenarios/segment_rotation_race_scenario.rs @@ -50,7 +50,7 @@ const SEGMENT_SIZE: u64 = 1024 * 1024; /// this rolls ~240 at the same server memory footprint. The old 512 B cap /// rolled one per batch (~50k), which no legal segment size can reproduce. const PAYLOAD_FILLER_LEN: usize = 2 * 1024; -const MAX_ALLOWED_MEMORY_BYTES: u64 = 200 * 1024 * 1024; +const MAX_ALLOWED_MEMORY_BYTES: u64 = 300 * 1024 * 1024; /// Runs the segment rotation race condition test with multiple protocols. /// Uses all available transports from the harness (TCP, HTTP, QUIC, WebSocket).
