2018-08-27 22:21:45 +02:00
|
|
|
package job
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
2018-09-23 23:04:31 +02:00
|
|
|
"github.com/problame/go-streamrpc"
|
2018-09-08 07:03:41 +02:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2018-08-27 22:21:45 +02:00
|
|
|
"github.com/zrepl/zrepl/config"
|
|
|
|
"github.com/zrepl/zrepl/daemon/connecter"
|
|
|
|
"github.com/zrepl/zrepl/daemon/filters"
|
2018-08-30 11:52:05 +02:00
|
|
|
"github.com/zrepl/zrepl/daemon/pruner"
|
2018-08-27 22:21:45 +02:00
|
|
|
"github.com/zrepl/zrepl/endpoint"
|
|
|
|
"github.com/zrepl/zrepl/replication"
|
|
|
|
"sync"
|
2018-08-31 16:26:11 +02:00
|
|
|
"github.com/zrepl/zrepl/daemon/logging"
|
2018-09-04 23:46:02 +02:00
|
|
|
"github.com/zrepl/zrepl/daemon/snapper"
|
2018-08-27 22:21:45 +02:00
|
|
|
)
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
type ActiveSide struct {
|
|
|
|
mode activeMode
|
|
|
|
name string
|
|
|
|
clientFactory *connecter.ClientFactory
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-08-30 17:40:45 +02:00
|
|
|
prunerFactory *pruner.PrunerFactory
|
2018-08-29 19:00:45 +02:00
|
|
|
|
2018-09-04 23:46:02 +02:00
|
|
|
|
2018-09-08 07:03:41 +02:00
|
|
|
promRepStateSecs *prometheus.HistogramVec // labels: state
|
|
|
|
promPruneSecs *prometheus.HistogramVec // labels: prune_side
|
|
|
|
promBytesReplicated *prometheus.CounterVec // labels: filesystem
|
|
|
|
|
2018-08-27 22:21:45 +02:00
|
|
|
mtx sync.Mutex
|
|
|
|
replication *replication.Replication
|
|
|
|
}
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
type activeMode interface {
|
|
|
|
SenderReceiver(client *streamrpc.Client) (replication.Sender, replication.Receiver, error)
|
|
|
|
Type() Type
|
|
|
|
RunPeriodic(ctx context.Context, wakeUpCommon chan<- struct{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type modePush struct {
|
|
|
|
fsfilter endpoint.FSFilter
|
|
|
|
snapper *snapper.Snapper
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *modePush) SenderReceiver(client *streamrpc.Client) (replication.Sender, replication.Receiver, error) {
|
|
|
|
sender := endpoint.NewSender(m.fsfilter)
|
|
|
|
receiver := endpoint.NewRemote(client)
|
|
|
|
return sender, receiver, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *modePush) Type() Type { return TypePush }
|
|
|
|
|
|
|
|
func (m *modePush) RunPeriodic(ctx context.Context, wakeUpCommon chan <- struct{}) {
|
|
|
|
m.snapper.Run(ctx, wakeUpCommon)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func modePushFromConfig(g *config.Global, in *config.PushJob) (*modePush, error) {
|
|
|
|
m := &modePush{}
|
|
|
|
fsf, err := filters.DatasetMapFilterFromConfig(in.Filesystems)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "cannnot build filesystem filter")
|
|
|
|
}
|
|
|
|
m.fsfilter = fsf
|
|
|
|
|
|
|
|
if m.snapper, err = snapper.FromConfig(g, fsf, &in.Snapshotting); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "cannot build snapper")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func activeSide(g *config.Global, in *config.ActiveJob, mode activeMode) (j *ActiveSide, err error) {
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
j = &ActiveSide{mode: mode}
|
2018-08-27 22:21:45 +02:00
|
|
|
j.name = in.Name
|
2018-09-08 07:03:41 +02:00
|
|
|
j.promRepStateSecs = prometheus.NewHistogramVec(prometheus.HistogramOpts{
|
|
|
|
Namespace: "zrepl",
|
|
|
|
Subsystem: "replication",
|
|
|
|
Name: "state_time",
|
|
|
|
Help: "seconds spent during replication",
|
|
|
|
ConstLabels: prometheus.Labels{"zrepl_job":j.name},
|
|
|
|
}, []string{"state"})
|
|
|
|
j.promBytesReplicated = prometheus.NewCounterVec(prometheus.CounterOpts{
|
|
|
|
Namespace: "zrepl",
|
|
|
|
Subsystem: "replication",
|
|
|
|
Name: "bytes_replicated",
|
|
|
|
Help: "number of bytes replicated from sender to receiver per filesystem",
|
|
|
|
ConstLabels: prometheus.Labels{"zrepl_job":j.name},
|
|
|
|
}, []string{"filesystem"})
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-09-04 23:44:45 +02:00
|
|
|
j.clientFactory, err = connecter.FromConfig(g, in.Connect)
|
2018-08-31 21:51:44 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "cannot build client")
|
|
|
|
}
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-09-08 07:03:41 +02:00
|
|
|
j.promPruneSecs = prometheus.NewHistogramVec(prometheus.HistogramOpts{
|
|
|
|
Namespace: "zrepl",
|
|
|
|
Subsystem: "pruning",
|
|
|
|
Name: "time",
|
|
|
|
Help: "seconds spent in pruner",
|
|
|
|
ConstLabels: prometheus.Labels{"zrepl_job":j.name},
|
|
|
|
}, []string{"prune_side"})
|
|
|
|
j.prunerFactory, err = pruner.NewPrunerFactory(in.Pruning, j.promPruneSecs)
|
2018-08-30 11:52:05 +02:00
|
|
|
if err != nil {
|
2018-08-30 17:40:45 +02:00
|
|
|
return nil, err
|
2018-08-30 11:52:05 +02:00
|
|
|
}
|
|
|
|
|
2018-08-27 22:21:45 +02:00
|
|
|
return j, nil
|
|
|
|
}
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
func (j *ActiveSide) RegisterMetrics(registerer prometheus.Registerer) {
|
2018-09-08 07:03:41 +02:00
|
|
|
registerer.MustRegister(j.promRepStateSecs)
|
|
|
|
registerer.MustRegister(j.promPruneSecs)
|
|
|
|
registerer.MustRegister(j.promBytesReplicated)
|
|
|
|
}
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
func (j *ActiveSide) Name() string { return j.name }
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
type ActiveSideStatus struct {
|
2018-09-23 21:08:03 +02:00
|
|
|
Replication *replication.Report
|
|
|
|
}
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
func (j *ActiveSide) Status() *Status {
|
2018-08-29 19:18:54 +02:00
|
|
|
rep := func() *replication.Replication {
|
|
|
|
j.mtx.Lock()
|
|
|
|
defer j.mtx.Unlock()
|
|
|
|
if j.replication == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return j.replication
|
|
|
|
}()
|
2018-09-23 23:04:31 +02:00
|
|
|
s := &ActiveSideStatus{}
|
|
|
|
t := j.mode.Type()
|
2018-08-29 19:18:54 +02:00
|
|
|
if rep == nil {
|
2018-09-23 23:04:31 +02:00
|
|
|
return &Status{Type: t, JobSpecific: s}
|
2018-08-29 19:18:54 +02:00
|
|
|
}
|
2018-09-23 21:08:03 +02:00
|
|
|
s.Replication = rep.Report()
|
2018-09-23 23:04:31 +02:00
|
|
|
return &Status{Type: t, JobSpecific: s}
|
2018-08-27 22:21:45 +02:00
|
|
|
}
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
func (j *ActiveSide) Run(ctx context.Context) {
|
2018-08-27 22:21:45 +02:00
|
|
|
log := GetLogger(ctx)
|
2018-09-23 23:04:31 +02:00
|
|
|
ctx = logging.WithSubsystemLoggers(ctx, log)
|
2018-08-27 22:21:45 +02:00
|
|
|
|
|
|
|
defer log.Info("job exiting")
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
periodicDone := make(chan struct{})
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
|
|
|
go j.mode.RunPeriodic(ctx, periodicDone)
|
2018-09-04 23:46:02 +02:00
|
|
|
|
2018-08-27 22:21:45 +02:00
|
|
|
invocationCount := 0
|
|
|
|
outer:
|
|
|
|
for {
|
2018-08-31 16:26:11 +02:00
|
|
|
log.Info("wait for wakeups")
|
2018-08-27 22:21:45 +02:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
log.WithError(ctx.Err()).Info("context")
|
|
|
|
break outer
|
2018-09-04 23:46:02 +02:00
|
|
|
|
2018-08-27 22:21:45 +02:00
|
|
|
case <-WaitWakeup(ctx):
|
2018-09-23 23:04:31 +02:00
|
|
|
case <-periodicDone:
|
2018-08-27 22:21:45 +02:00
|
|
|
}
|
2018-09-04 23:46:02 +02:00
|
|
|
invocationCount++
|
|
|
|
invLog := log.WithField("invocation", invocationCount)
|
|
|
|
j.do(WithLogger(ctx, invLog))
|
2018-08-27 22:21:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
func (j *ActiveSide) do(ctx context.Context) {
|
2018-08-27 22:21:45 +02:00
|
|
|
|
|
|
|
log := GetLogger(ctx)
|
2018-08-31 16:26:11 +02:00
|
|
|
ctx = logging.WithSubsystemLoggers(ctx, log)
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-08-31 21:51:44 +02:00
|
|
|
client, err := j.clientFactory.NewClient()
|
2018-08-27 22:21:45 +02:00
|
|
|
if err != nil {
|
2018-08-31 21:51:44 +02:00
|
|
|
log.WithError(err).Error("factory cannot instantiate streamrpc client")
|
2018-08-27 22:21:45 +02:00
|
|
|
}
|
2018-08-31 16:26:11 +02:00
|
|
|
defer client.Close(ctx)
|
2018-08-27 22:21:45 +02:00
|
|
|
|
2018-09-23 23:04:31 +02:00
|
|
|
sender, receiver, err := j.mode.SenderReceiver(client)
|
2018-08-27 22:21:45 +02:00
|
|
|
|
|
|
|
j.mtx.Lock()
|
2018-09-08 07:03:41 +02:00
|
|
|
j.replication = replication.NewReplication(j.promRepStateSecs, j.promBytesReplicated)
|
2018-08-27 22:21:45 +02:00
|
|
|
j.mtx.Unlock()
|
|
|
|
|
2018-08-31 16:26:11 +02:00
|
|
|
log.Info("start replication")
|
2018-08-29 19:18:54 +02:00
|
|
|
j.replication.Drive(ctx, sender, receiver)
|
2018-08-29 19:00:45 +02:00
|
|
|
|
2018-08-31 16:26:11 +02:00
|
|
|
log.Info("start pruning sender")
|
2018-09-03 22:19:56 +02:00
|
|
|
senderPruner := j.prunerFactory.BuildSenderPruner(ctx, sender, sender)
|
2018-08-30 17:40:45 +02:00
|
|
|
senderPruner.Prune()
|
2018-08-29 19:00:45 +02:00
|
|
|
|
2018-08-31 16:26:11 +02:00
|
|
|
log.Info("start pruning receiver")
|
2018-09-03 22:19:56 +02:00
|
|
|
receiverPruner := j.prunerFactory.BuildReceiverPruner(ctx, receiver, sender)
|
2018-08-30 17:40:45 +02:00
|
|
|
receiverPruner.Prune()
|
2018-08-29 19:00:45 +02:00
|
|
|
|
2018-08-27 22:21:45 +02:00
|
|
|
}
|