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

bumps per stream default rate limits #4228

Merged
merged 1 commit into from
Aug 27, 2021
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
bumps per stream default rate limits
After some testing, this seems a more reasonable balance between protecting ingesters and good defaults out of the box
  • Loading branch information
owen-d committed Aug 27, 2021
commit 5eb09304d9e602745e1504b675ebb1385a15328e
4 changes: 2 additions & 2 deletions pkg/validation/limits.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const (

bytesInMB = 1048576

defaultPerStreamRateLimit = 1 << 20 // 1MB
defaultPerStreamBurstLimit = 2 * defaultPerStreamRateLimit
defaultPerStreamRateLimit = 3 << 20 // 3MB
defaultPerStreamBurstLimit = 5 * defaultPerStreamRateLimit
)

// Limits describe all the limits for users; can be used to describe global default
Expand Down