From be781b7ad5385792b470bf92fe900614b3719f32 Mon Sep 17 00:00:00 2001 From: Balaji Arun Date: Mon, 2 Dec 2024 19:13:54 -0800 Subject: [PATCH 1/2] [forge] update memory thresholds for Forge stable --- testsuite/forge-cli/src/suites/realistic_environment.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/forge-cli/src/suites/realistic_environment.rs b/testsuite/forge-cli/src/suites/realistic_environment.rs index 28a1e6e20e2b8..dfa3ba868b885 100644 --- a/testsuite/forge-cli/src/suites/realistic_environment.rs +++ b/testsuite/forge-cli/src/suites/realistic_environment.rs @@ -262,9 +262,9 @@ pub(crate) fn realistic_env_graceful_overload(duration: Duration) -> ForgeConfig // overload test uses more CPUs than others, so increase the limit // Check that we don't use more than 28 CPU cores for 20% of the time. MetricsThreshold::new(28.0, 20), - // Memory starts around 6GB, and grows around 8GB/hr in this test. + // Memory starts around 7GB, and grows around 8GB/hr in this test. // Check that we don't use more than final expected memory for more than 20% of the time. - MetricsThreshold::new_gb(6.5 + 8.0 * (duration.as_secs_f64() / 3600.0), 20), + MetricsThreshold::new_gb(7.5 + 8.0 * (duration.as_secs_f64() / 3600.0), 20), )) .add_latency_threshold(10.0, LatencyType::P50) .add_latency_threshold(30.0, LatencyType::P90) From b48e2b1586c124b945ac4dc8ce505c624dd9f0c7 Mon Sep 17 00:00:00 2001 From: Balaji Arun Date: Wed, 4 Dec 2024 13:11:27 -0800 Subject: [PATCH 2/2] revert pipeline flag --- testsuite/forge/src/config.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/testsuite/forge/src/config.rs b/testsuite/forge/src/config.rs index 7d173941b8e26..940589e7fb3b1 100644 --- a/testsuite/forge/src/config.rs +++ b/testsuite/forge/src/config.rs @@ -238,10 +238,6 @@ impl ForgeConfig { ["enable_storage_sharding"] = true.into(); helm_values["validator"]["config"]["indexer_db_config"]["enable_event"] = true.into(); helm_values["fullnode"]["config"]["indexer_db_config"]["enable_event"] = true.into(); - // enable new pipeline - helm_values["validator"]["config"]["consensus"]["enable_pipeline"] = true.into(); - helm_values["fullnode"]["config"]["consensus_observer"]["enable_pipeline"] = - true.into(); })) }