48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package repairer
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
|
||
|
q "storj.io/storj/pkg/datarepair/queue"
|
||
|
"storj.io/storj/pkg/provider"
|
||
|
"storj.io/storj/storage/redis"
|
||
|
)
|
||
|
|
||
|
// Config contains configurable values for repairer
|
||
|
type Config struct {
|
||
|
QueueAddress string `help:"data repair queue address" default:"redis://localhost:6379?db=5&password=123"`
|
||
|
MaxRepair int `help:"maximum segments that can be repaired concurrently" default:"100"`
|
||
|
Interval time.Duration `help:"how frequently checker should audit segments" default:"3600s"`
|
||
|
}
|
||
|
|
||
|
// Initialize a repairer struct
|
||
|
func (c Config) initialize(ctx context.Context) (Repairer, error) {
|
||
|
var r repairer
|
||
|
r.ctx, r.cancel = context.WithCancel(ctx)
|
||
|
|
||
|
client, err := redis.NewClientFrom(c.QueueAddress)
|
||
|
if err != nil {
|
||
|
return nil, Error.Wrap(err)
|
||
|
}
|
||
|
r.queue = q.NewQueue(client)
|
||
|
|
||
|
r.cond.L = &r.mu
|
||
|
r.maxRepair = c.MaxRepair
|
||
|
r.interval = c.Interval
|
||
|
return &r, nil
|
||
|
}
|
||
|
|
||
|
// Run runs the repairer with configured values
|
||
|
func (c Config) Run(ctx context.Context, server *provider.Provider) (err error) {
|
||
|
r, err := c.initialize(ctx)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return r.Run()
|
||
|
}
|