Skip to content

Commit

Permalink
operator: Modify ingestionRate for respective shirt size (grafana#7617)
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-GV authored Nov 10, 2022
1 parent a6df09b commit 764ee7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions operator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Main

- [7617](https://github.com/grafana/loki/pull/7617) **Red-GV**: Modify ingestionRate for respective shirt size
- [7592](https://github.com/grafana/loki/pull/7592) **aminesnow**: Update API docs generation using gen-crd-api-reference-docs
- [7448](https://github.com/grafana/loki/pull/7448) **periklis**: Add TLS support for compactor delete client
- [7596](https://github.com/grafana/loki/pull/7596) **periklis**: Fix fresh-installs with built-in cert management enabled
Expand Down
4 changes: 2 additions & 2 deletions operator/internal/manifests/internal/sizes.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ var StackSizeTable = map[lokiv1.LokiStackSizeType]lokiv1.LokiStackSpec{
Global: &lokiv1.LimitsTemplateSpec{
IngestionLimits: &lokiv1.IngestionLimitSpec{
// Custom for 1x.small
IngestionRate: 10,
IngestionRate: 15,
IngestionBurstSize: 20,
MaxGlobalStreamsPerTenant: 10000,
// Defaults from Loki docs
Expand Down Expand Up @@ -315,7 +315,7 @@ var StackSizeTable = map[lokiv1.LokiStackSizeType]lokiv1.LokiStackSpec{
Global: &lokiv1.LimitsTemplateSpec{
IngestionLimits: &lokiv1.IngestionLimitSpec{
// Custom for 1x.medium
IngestionRate: 10,
IngestionRate: 50,
IngestionBurstSize: 20,
MaxGlobalStreamsPerTenant: 25000,
// Defaults from Loki docs
Expand Down

0 comments on commit 764ee7c

Please sign in to comment.