From 6d5c3b64b14e2a2069c91fbe41a45231d079c24a Mon Sep 17 00:00:00 2001 From: CarlosFelipeOR Date: Mon, 17 Aug 2026 14:29:51 -0300 Subject: [PATCH 1/2] Raise stateless test timeout to 1200s on slow builds and pin filesystem cache in 00154_avro Signed-off-by: CarlosFelipeOR --- ci/jobs/functional_tests.py | 1 + tests/queries/0_stateless/00154_avro.sql | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ci/jobs/functional_tests.py b/ci/jobs/functional_tests.py index e4aaa09c4348..c8ed62017e70 100644 --- a/ci/jobs/functional_tests.py +++ b/ci/jobs/functional_tests.py @@ -162,6 +162,7 @@ def run_tests( "parallel": "--no-sequential", "sequential": "--no-parallel", "amd_tsan": " --timeout 1200", # NOTE (strtgbb): tsan is slow, increase the timeout to avoid timeout errors + "amd_debug": " --timeout 1200", # NOTE (carlosfelipeor): debug is slow, increase the timeout to avoid timeout errors "flaky check": "--flaky-check", "targeted": "--flaky-check --no-self-parallel", } diff --git a/tests/queries/0_stateless/00154_avro.sql b/tests/queries/0_stateless/00154_avro.sql index 35e446604d97..ebcbf8fad18d 100644 --- a/tests/queries/0_stateless/00154_avro.sql +++ b/tests/queries/0_stateless/00154_avro.sql @@ -3,6 +3,9 @@ DROP TABLE IF EXISTS avro; SET max_threads = 1, max_insert_threads = 0, max_block_size = 8192, min_insert_block_size_rows = 8192, min_insert_block_size_bytes = 1048576; -- lower memory usage +-- test.hits lives on a cache-over-web disk; with the cache off every column read becomes a +-- remote round trip, which turns this test from under a second into minutes. +SET enable_filesystem_cache = 1; CREATE TABLE avro AS test.hits ENGINE = File(Avro); INSERT INTO avro SELECT * FROM test.hits LIMIT 10000; From d6266405ef2bc5684bd2fdc17c5e80973961739e Mon Sep 17 00:00:00 2001 From: CarlosFelipeOR Date: Mon, 17 Aug 2026 22:06:36 -0300 Subject: [PATCH 2/2] Give arm_binary and amd_binary the same 1200s stateless test timeout as amd_debug Signed-off-by: CarlosFelipeOR --- ci/jobs/functional_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/jobs/functional_tests.py b/ci/jobs/functional_tests.py index c8ed62017e70..61bb06baaf34 100644 --- a/ci/jobs/functional_tests.py +++ b/ci/jobs/functional_tests.py @@ -162,7 +162,9 @@ def run_tests( "parallel": "--no-sequential", "sequential": "--no-parallel", "amd_tsan": " --timeout 1200", # NOTE (strtgbb): tsan is slow, increase the timeout to avoid timeout errors - "amd_debug": " --timeout 1200", # NOTE (carlosfelipeor): debug is slow, increase the timeout to avoid timeout errors + "amd_debug": " --timeout 1200", # NOTE (carlosfelipeor): debug jobs hit network-latency tails on Altinity infra + "arm_binary": " --timeout 1200", # NOTE (carlosfelipeor): binary jobs hit network-latency tails on Altinity infra + "amd_binary": " --timeout 1200", # NOTE (carlosfelipeor): binary jobs hit network-latency tails on Altinity infra "flaky check": "--flaky-check", "targeted": "--flaky-check --no-self-parallel", }