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

Update pre-sets limits to avoid overlap. #1891

Merged
merged 9 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions internal/pkg/config/defaults/gt10000_limits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
num_agents:
min: 10000
max: 12500
max: 12499
recommended_min_ram: 8192
cache_limits:
num_counters: 160000
Expand All @@ -23,4 +23,4 @@ server_limits:
ack_limit:
interval: 500us
burst: 4000
max: 8000
max: 8000
2 changes: 1 addition & 1 deletion internal/pkg/config/defaults/gt12500_limits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
num_agents:
min: 12500
max: 30000
max: 29999
recommended_min_ram: 16384
cache_limits:
num_counters: 160000
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/config/defaults/gt5000_limits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
num_agents:
min: 5000
max: 7500
max: 7499
recommended_min_ram: 2048
cache_limits:
num_counters: 40000
Expand All @@ -23,4 +23,4 @@ server_limits:
ack_limit:
interval: 2ms
burst: 1000
max: 2000
max: 2000
4 changes: 2 additions & 2 deletions internal/pkg/config/defaults/gt50_limits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
num_agents:
min: 50
max: 5000
max: 4999
recommended_min_ram: 1024
cache_limits:
num_counters: 20000
Expand All @@ -23,4 +23,4 @@ server_limits:
ack_limit:
interval: 4ms
burst: 500
max: 1000
max: 1000
4 changes: 2 additions & 2 deletions internal/pkg/config/defaults/gt7500_limits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
num_agents:
min: 7500
max: 10000
max: 9999
recommended_min_ram: 4096
cache_limits:
num_counters: 80000
Expand All @@ -23,4 +23,4 @@ server_limits:
ack_limit:
interval: 1ms
burst: 2000
max: 4000
max: 4000
4 changes: 2 additions & 2 deletions internal/pkg/config/defaults/lte50_limits.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
num_agents:
max: 50
max: 49
recommended_min_ram: 0
cache_limits:
num_counters: 2000
Expand All @@ -22,4 +22,4 @@ server_limits:
ack_limit:
interval: 10ms
burst: 20
max: 20
max: 20
2 changes: 1 addition & 1 deletion internal/pkg/config/env_defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions internal/pkg/config/env_defaults_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.