mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
123 lines
2.8 KiB
Go
123 lines
2.8 KiB
Go
// Copyright 2017 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package compactor
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
|
|
pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
|
|
"github.com/coreos/etcd/mvcc"
|
|
|
|
"github.com/jonboulle/clockwork"
|
|
)
|
|
|
|
// Periodic compacts the log by purging revisions older than
|
|
// the configured retention time.
|
|
type Periodic struct {
|
|
clock clockwork.Clock
|
|
period time.Duration
|
|
|
|
rg RevGetter
|
|
c Compactable
|
|
|
|
revs []int64
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
|
|
// mu protects paused
|
|
mu sync.RWMutex
|
|
paused bool
|
|
}
|
|
|
|
// NewPeriodic creates a new instance of Periodic compactor that purges
|
|
// the log older than h Duration.
|
|
func NewPeriodic(h time.Duration, rg RevGetter, c Compactable) *Periodic {
|
|
return &Periodic{
|
|
clock: clockwork.NewRealClock(),
|
|
period: h,
|
|
rg: rg,
|
|
c: c,
|
|
}
|
|
}
|
|
|
|
// periodDivisor divides Periodic.period in into checkCompactInterval duration
|
|
const periodDivisor = 10
|
|
|
|
func (t *Periodic) Run() {
|
|
t.ctx, t.cancel = context.WithCancel(context.Background())
|
|
t.revs = make([]int64, 0)
|
|
clock := t.clock
|
|
checkCompactInterval := t.period / time.Duration(periodDivisor)
|
|
go func() {
|
|
last := clock.Now()
|
|
for {
|
|
t.revs = append(t.revs, t.rg.Rev())
|
|
select {
|
|
case <-t.ctx.Done():
|
|
return
|
|
case <-clock.After(checkCompactInterval):
|
|
t.mu.Lock()
|
|
p := t.paused
|
|
t.mu.Unlock()
|
|
if p {
|
|
continue
|
|
}
|
|
}
|
|
if clock.Now().Sub(last) < t.period {
|
|
continue
|
|
}
|
|
rev, remaining := t.getRev()
|
|
if rev < 0 {
|
|
continue
|
|
}
|
|
plog.Noticef("Starting auto-compaction at revision %d (retention: %v)", rev, t.period)
|
|
_, err := t.c.Compact(t.ctx, &pb.CompactionRequest{Revision: rev})
|
|
if err == nil || err == mvcc.ErrCompacted {
|
|
t.revs = remaining
|
|
plog.Noticef("Finished auto-compaction at revision %d", rev)
|
|
} else {
|
|
plog.Noticef("Failed auto-compaction at revision %d (%v)", rev, err)
|
|
plog.Noticef("Retry after %v", checkCompactInterval)
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
func (t *Periodic) Stop() {
|
|
t.cancel()
|
|
}
|
|
|
|
func (t *Periodic) Pause() {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
t.paused = true
|
|
}
|
|
|
|
func (t *Periodic) Resume() {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
t.paused = false
|
|
}
|
|
|
|
func (t *Periodic) getRev() (int64, []int64) {
|
|
i := len(t.revs) - periodDivisor
|
|
if i < 0 {
|
|
return -1, t.revs
|
|
}
|
|
return t.revs[i], t.revs[i+1:]
|
|
}
|