1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
15 "git.arvados.org/arvados.git/lib/controller/dblock"
16 "git.arvados.org/arvados.git/sdk/go/arvados"
17 "github.com/jmoiron/sqlx"
18 "github.com/sirupsen/logrus"
21 // RunOptions controls runtime behavior. The flags/options that belong
22 // here are the ones that are useful for interactive use. For example,
23 // "CommitTrash" is a runtime option rather than a config item because
24 // it invokes a troubleshooting feature rather than expressing how
25 // balancing is meant to be done at a given site.
27 // RunOptions fields are controlled by command line flags.
28 type RunOptions struct {
32 CommitConfirmedFields bool
34 Logger logrus.FieldLogger
35 Dumper logrus.FieldLogger
37 // SafeRendezvousState from the most recent balance operation,
38 // or "" if unknown. If this changes from one run to the next,
39 // we need to watch out for races. See
40 // (*Balancer)ClearTrashLists.
41 SafeRendezvousState string
47 Cluster *arvados.Cluster
48 ArvClient *arvados.Client
52 Logger logrus.FieldLogger
53 Dumper logrus.FieldLogger
58 // CheckHealth implements service.Handler.
59 func (srv *Server) CheckHealth() error {
63 // Done implements service.Handler.
64 func (srv *Server) Done() <-chan struct{} {
68 func (srv *Server) run(ctx context.Context) {
70 if srv.RunOptions.Once {
71 _, err = srv.runOnce(ctx)
73 err = srv.runForever(ctx)
83 func (srv *Server) runOnce(ctx context.Context) (*Balancer, error) {
89 LostBlocksFile: srv.Cluster.Collections.BlobMissingReport,
90 ChunkPrefix: srv.RunOptions.ChunkPrefix,
93 srv.RunOptions, err = bal.Run(ctx, srv.ArvClient, srv.Cluster, srv.RunOptions)
97 // RunForever runs forever, or until ctx is cancelled.
98 func (srv *Server) runForever(ctx context.Context) error {
101 ticker := time.NewTicker(time.Duration(srv.Cluster.Collections.BalancePeriod))
103 // The unbuffered channel here means we only hear SIGUSR1 if
104 // it arrives while we're waiting in select{}.
105 sigUSR1 := make(chan os.Signal)
106 signal.Notify(sigUSR1, syscall.SIGUSR1)
108 logger.Info("acquiring service lock")
109 dblock.KeepBalanceService.Lock(ctx, func(context.Context) (*sqlx.DB, error) { return srv.DB, nil })
110 defer dblock.KeepBalanceService.Unlock()
112 logger.Printf("starting up: will scan every %v and on SIGUSR1", srv.Cluster.Collections.BalancePeriod)
115 if !srv.RunOptions.CommitPulls && !srv.RunOptions.CommitTrash {
116 logger.Print("WARNING: Will scan periodically, but no changes will be committed.")
117 logger.Print("======= Consider using -commit-pulls and -commit-trash flags.")
120 if !dblock.KeepBalanceService.Check() {
124 _, err := srv.runOnce(ctx)
126 logger.Print("run failed: ", err)
128 logger.Print("run succeeded")
136 logger.Print("timer went off")
138 logger.Print("received SIGUSR1, resetting timer")
139 // Reset the timer so we don't start the N+1st
140 // run too soon after the Nth run is triggered
143 ticker = time.NewTicker(time.Duration(srv.Cluster.Collections.BalancePeriod))
145 logger.Print("starting next run")