Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[forge] bump graceful_overload mem threshold temporarily #15511

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions testsuite/forge-cli/src/suites/realistic_environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,10 @@ 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 7GB, and grows around 8GB/hr in this test.
// TODO(ibalajiarun): Investigate the high utilization and adjust accordingly.
// Memory starts around 8GB, 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(7.5 + 8.0 * (duration.as_secs_f64() / 3600.0), 20),
MetricsThreshold::new_gb(8.5 + 8.0 * (duration.as_secs_f64() / 3600.0), 20),
))
.add_latency_threshold(10.0, LatencyType::P50)
.add_latency_threshold(30.0, LatencyType::P90)
Expand Down
Loading