mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
e8babf1048
* fix: reduce load on view tables * create prerelease * linting: pass context to view handlers * fix error handling of refresh token handler * fix: improve processing of successful instanceIDs on views * fix revert intended change in .golangci.yaml * fix: set timeout for processInstances in spooler * fix: reduce update to active tokens on profile change * change token expiration query to db now() * remove branch from .releaserc.js
37 lines
1.3 KiB
Go
37 lines
1.3 KiB
Go
package spooler
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
|
|
"github.com/zitadel/zitadel/internal/auth/repository/eventsourcing/handler"
|
|
"github.com/zitadel/zitadel/internal/auth/repository/eventsourcing/view"
|
|
sd "github.com/zitadel/zitadel/internal/config/systemdefaults"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
v1 "github.com/zitadel/zitadel/internal/eventstore/v1"
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/spooler"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
)
|
|
|
|
type SpoolerConfig struct {
|
|
BulkLimit uint64
|
|
FailureCountUntilSkip uint64
|
|
ConcurrentWorkers int
|
|
ConcurrentInstances int
|
|
Handlers handler.Configs
|
|
}
|
|
|
|
func StartSpooler(ctx context.Context, c SpoolerConfig, es v1.Eventstore, esV2 *eventstore.Eventstore, view *view.View, client *sql.DB, systemDefaults sd.SystemDefaults, queries *query.Queries) *spooler.Spooler {
|
|
spoolerConfig := spooler.Config{
|
|
Eventstore: es,
|
|
EventstoreV2: esV2,
|
|
Locker: &locker{dbClient: client},
|
|
ConcurrentWorkers: c.ConcurrentWorkers,
|
|
ConcurrentInstances: c.ConcurrentInstances,
|
|
ViewHandlers: handler.Register(ctx, c.Handlers, c.BulkLimit, c.FailureCountUntilSkip, view, es, systemDefaults, queries),
|
|
}
|
|
spool := spoolerConfig.New()
|
|
spool.Start()
|
|
return spool
|
|
}
|