Skip to content

Commit

Permalink
chore(blooms): removes bloom-gw & bloom-compactor from all non-micros…
Browse files Browse the repository at this point in the history
…ervice targets (#12381)
  • Loading branch information
owen-d authored Mar 27, 2024
1 parent 2b8db8b commit c9e5c7f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions pkg/loki/loki.go
Original file line number Diff line number Diff line change
Expand Up @@ -663,12 +663,9 @@ func (t *Loki) setupModuleManager() error {

Read: {QueryFrontend, Querier},
Write: {Ingester, Distributor},
Backend: {QueryScheduler, Ruler, Compactor, IndexGateway, BloomGateway, BloomCompactor},
Backend: {QueryScheduler, Ruler, Compactor, IndexGateway},

// TODO(salvacorts): We added the BloomCompactor component to the `all` target to ease testing.
// We should remove it before releasing the feature since we don’t think any user running
// the single binary will benefit from the blooms given their scale in terms of ingested data
All: {QueryScheduler, QueryFrontend, Querier, Ingester, Distributor, Ruler, Compactor, BloomCompactor},
All: {QueryScheduler, QueryFrontend, Querier, Ingester, Distributor, Ruler, Compactor},
}

if t.Cfg.Querier.PerRequestLimitsEnabled {
Expand Down

0 comments on commit c9e5c7f

Please sign in to comment.