bumps per stream default rate limits (#4228)

After some testing, this seems a more reasonable balance between protecting ingesters and good defaults out of the box
pull/4231/head
Owen Diehl 4 years ago committed by GitHub
parent cfb4fc1f55
commit 79d53317dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkg/validation/limits.go

@ -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

Loading…
Cancel
Save