forked from raystack/entropy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker.go
80 lines (67 loc) · 1.98 KB
/
worker.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package cli
import (
"context"
"time"
"github.com/MakeNowJust/heredoc"
"github.com/goto/entropy/core"
"github.com/goto/entropy/core/module"
"github.com/goto/entropy/pkg/logger"
"github.com/goto/entropy/pkg/telemetry"
"github.com/newrelic/go-agent/v3/newrelic"
"github.com/spf13/cobra"
"go.uber.org/zap"
"golang.org/x/sync/errgroup"
)
func cmdWorker() *cobra.Command {
cmd := &cobra.Command{
Use: "worker",
Short: "Start workers",
Example: heredoc.Doc(`
$ entropy worker
`),
Annotations: map[string]string{
"group:other": "server",
},
}
cmd.RunE = handleErr(func(cmd *cobra.Command, args []string) error {
cfg, err := loadConfig(cmd)
if err != nil {
return err
}
err = logger.Setup(&cfg.Log)
if err != nil {
return err
}
ctx := cmd.Context()
telemetry.Init(ctx, cfg.Telemetry)
_, err = newrelic.NewApplication(
newrelic.ConfigAppName(cfg.Telemetry.ServiceName),
newrelic.ConfigLicense(cfg.Telemetry.NewRelicAPIKey),
)
if err != nil {
zap.L().Error("error initializing opentelemetry", zap.Error(err))
}
return StartWorkers(ctx, cfg)
})
return cmd
}
func StartWorkers(ctx context.Context, cfg Config) error {
store := setupStorage(cfg.PGConnStr, cfg.Syncer, cfg.Service)
moduleService := module.NewService(setupRegistry(), store, cfg.SecretMask)
resourceService := core.New(store, moduleService, time.Now, cfg.Syncer.SyncBackoffInterval, cfg.Syncer.MaxRetries)
eg := &errgroup.Group{}
spawnWorkers(ctx, resourceService, cfg.Syncer.Workers, cfg.Syncer.SyncInterval, eg)
if err := eg.Wait(); err != nil {
return err
}
return nil
}
func spawnWorkers(ctx context.Context, resourceService *core.Service, workerModules map[string]WorkerConfig, syncInterval time.Duration, eg *errgroup.Group) {
if len(workerModules) == 0 {
resourceService.RunSyncer(ctx, 1, syncInterval, map[string][]string{}, eg)
} else {
for _, module := range workerModules {
resourceService.RunSyncer(ctx, module.Count, syncInterval, module.Scope, eg)
}
}
}