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] update memory thresholds for Forge stable #15492

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Changes from 1 commit
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
4 changes: 2 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,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)
Expand Down
Loading