2016-11-15 09:34:25 +00:00
|
|
|
// Package tsdb implements a time series storage for float64 sample data.
|
|
|
|
package tsdb
|
|
|
|
|
|
|
|
import (
|
2016-12-10 17:08:50 +00:00
|
|
|
"bytes"
|
2016-12-04 12:16:11 +00:00
|
|
|
"fmt"
|
2017-01-06 08:26:39 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"math"
|
2016-12-04 12:16:11 +00:00
|
|
|
"os"
|
2016-12-08 16:43:10 +00:00
|
|
|
"path/filepath"
|
2016-12-15 10:56:41 +00:00
|
|
|
"reflect"
|
2016-12-15 07:31:26 +00:00
|
|
|
"strconv"
|
2017-01-06 12:13:22 +00:00
|
|
|
"strings"
|
2016-12-08 16:43:10 +00:00
|
|
|
"sync"
|
2017-01-06 14:18:06 +00:00
|
|
|
"time"
|
2016-12-15 10:56:41 +00:00
|
|
|
"unsafe"
|
2016-11-15 09:34:25 +00:00
|
|
|
|
2016-12-15 07:31:26 +00:00
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
|
2017-01-03 14:43:26 +00:00
|
|
|
"github.com/coreos/etcd/pkg/fileutil"
|
2016-12-21 08:39:01 +00:00
|
|
|
"github.com/fabxc/tsdb/labels"
|
2016-12-14 17:38:46 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
2017-01-03 14:43:26 +00:00
|
|
|
"github.com/pkg/errors"
|
2016-12-31 08:48:49 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2016-11-15 09:34:25 +00:00
|
|
|
)
|
|
|
|
|
2016-12-09 09:00:14 +00:00
|
|
|
// DefaultOptions used for the DB. They are sane for setups using
|
2017-01-06 10:40:09 +00:00
|
|
|
// millisecond precision timestampdb.
|
2016-11-15 09:34:25 +00:00
|
|
|
var DefaultOptions = &Options{
|
2017-01-18 05:18:32 +00:00
|
|
|
WALFlushInterval: 5 * time.Second,
|
|
|
|
MaxBlockRange: 24 * 60 * 60 * 1000, // 1 day in milliseconds
|
2016-11-15 09:34:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Options of the DB storage.
|
|
|
|
type Options struct {
|
2017-01-06 14:18:06 +00:00
|
|
|
WALFlushInterval time.Duration
|
2017-01-18 05:18:32 +00:00
|
|
|
MaxBlockRange uint64
|
2016-11-15 09:34:25 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 19:17:49 +00:00
|
|
|
// Appender allows appending a batch of data. It must be completed with a
|
|
|
|
// call to Commit or Rollback and must not be reused afterwards.
|
2016-12-10 17:08:50 +00:00
|
|
|
type Appender interface {
|
2017-01-12 19:17:49 +00:00
|
|
|
// SetSeries ensures that a series with the given label set exists and
|
|
|
|
// returns a unique reference number identifying it. Returned reference
|
|
|
|
// numbers are ephemeral and may be rejected in calls to Add() at any point.
|
|
|
|
// A new reference number can then be requested with another call to
|
|
|
|
// SetSeries.
|
2017-01-12 18:18:51 +00:00
|
|
|
SetSeries(labels.Labels) (uint64, error)
|
2016-12-10 17:08:50 +00:00
|
|
|
|
2017-01-12 19:17:49 +00:00
|
|
|
// Add adds a sample pair for the referenced serie.
|
2017-01-12 18:18:51 +00:00
|
|
|
Add(ref uint64, t int64, v float64) error
|
2016-12-20 23:02:37 +00:00
|
|
|
|
|
|
|
// Commit submits the collected samples and purges the batch.
|
2016-12-10 17:08:50 +00:00
|
|
|
Commit() error
|
2017-01-12 19:17:49 +00:00
|
|
|
|
|
|
|
// Rollback rolls back all modifications made in the appender so far.
|
|
|
|
Rollback() error
|
2016-12-10 17:08:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-09 09:00:14 +00:00
|
|
|
const sep = '\xff'
|
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
// DB handles reads and writes of time series falling into
|
|
|
|
// a hashed partition of a seriedb.
|
|
|
|
type DB struct {
|
2017-01-06 08:26:39 +00:00
|
|
|
dir string
|
2017-01-02 21:24:35 +00:00
|
|
|
logger log.Logger
|
2017-01-06 10:40:09 +00:00
|
|
|
metrics *dbMetrics
|
2017-01-18 05:18:32 +00:00
|
|
|
opts *Options
|
2016-12-09 09:00:14 +00:00
|
|
|
|
2016-12-15 07:31:26 +00:00
|
|
|
mtx sync.RWMutex
|
2017-01-03 14:43:26 +00:00
|
|
|
persisted []*persistedBlock
|
2017-01-10 14:28:22 +00:00
|
|
|
heads []*headBlock
|
2017-01-12 18:18:51 +00:00
|
|
|
headGen uint8
|
|
|
|
|
2017-01-02 09:34:55 +00:00
|
|
|
compactor *compactor
|
2017-01-06 11:37:28 +00:00
|
|
|
|
|
|
|
compactc chan struct{}
|
2017-01-06 14:18:06 +00:00
|
|
|
cutc chan struct{}
|
2017-01-06 11:37:28 +00:00
|
|
|
donec chan struct{}
|
|
|
|
stopc chan struct{}
|
2016-12-09 09:00:14 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
type dbMetrics struct {
|
2017-01-06 11:37:28 +00:00
|
|
|
samplesAppended prometheus.Counter
|
|
|
|
compactionsTriggered prometheus.Counter
|
2016-12-31 08:48:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
func newDBMetrics(r prometheus.Registerer) *dbMetrics {
|
|
|
|
m := &dbMetrics{}
|
2017-01-03 14:43:26 +00:00
|
|
|
|
|
|
|
m.samplesAppended = prometheus.NewCounter(prometheus.CounterOpts{
|
2017-01-06 10:40:09 +00:00
|
|
|
Name: "tsdb_samples_appended_total",
|
|
|
|
Help: "Total number of appended sampledb.",
|
2017-01-03 14:43:26 +00:00
|
|
|
})
|
2017-01-06 11:37:28 +00:00
|
|
|
m.compactionsTriggered = prometheus.NewCounter(prometheus.CounterOpts{
|
|
|
|
Name: "tsdb_compactions_triggered_total",
|
|
|
|
Help: "Total number of triggered compactions for the partition.",
|
|
|
|
})
|
2016-12-31 08:48:49 +00:00
|
|
|
|
|
|
|
if r != nil {
|
|
|
|
r.MustRegister(
|
|
|
|
m.samplesAppended,
|
2017-01-09 18:14:21 +00:00
|
|
|
m.compactionsTriggered,
|
2016-12-31 08:48:49 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
// Open returns a new DB in the given directory.
|
2017-01-18 05:18:32 +00:00
|
|
|
func Open(dir string, logger log.Logger, opts *Options) (db *DB, err error) {
|
2017-01-06 08:26:39 +00:00
|
|
|
if !fileutil.Exist(dir) {
|
|
|
|
if err := os.MkdirAll(dir, 0777); err != nil {
|
2016-12-15 07:31:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2017-01-19 07:40:15 +00:00
|
|
|
// var r prometheus.Registerer
|
|
|
|
r := prometheus.DefaultRegisterer
|
2016-12-15 07:31:26 +00:00
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
if opts == nil {
|
|
|
|
opts = DefaultOptions
|
|
|
|
}
|
|
|
|
|
2017-01-06 11:37:28 +00:00
|
|
|
db = &DB{
|
|
|
|
dir: dir,
|
|
|
|
logger: logger,
|
2017-01-09 18:14:21 +00:00
|
|
|
metrics: newDBMetrics(r),
|
2017-01-18 05:18:32 +00:00
|
|
|
opts: opts,
|
2017-01-06 11:37:28 +00:00
|
|
|
compactc: make(chan struct{}, 1),
|
2017-01-06 14:18:06 +00:00
|
|
|
cutc: make(chan struct{}, 1),
|
2017-01-06 11:37:28 +00:00
|
|
|
donec: make(chan struct{}),
|
|
|
|
stopc: make(chan struct{}),
|
2017-01-06 08:26:39 +00:00
|
|
|
}
|
2017-01-18 05:18:32 +00:00
|
|
|
db.compactor = newCompactor(r, &compactorOptions{
|
|
|
|
maxBlockRange: opts.MaxBlockRange,
|
|
|
|
maxSize: 1 << 29, // 512MB
|
|
|
|
})
|
2017-01-06 11:37:28 +00:00
|
|
|
|
|
|
|
if err := db.initBlocks(); err != nil {
|
2016-12-15 07:31:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-06 08:26:39 +00:00
|
|
|
|
2017-01-06 11:37:28 +00:00
|
|
|
go db.run()
|
|
|
|
|
|
|
|
return db, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *DB) run() {
|
|
|
|
defer close(db.donec)
|
|
|
|
|
2017-01-20 06:58:19 +00:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-db.cutc:
|
|
|
|
db.mtx.Lock()
|
|
|
|
_, err := db.cut()
|
|
|
|
db.mtx.Unlock()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
db.logger.Log("msg", "cut failed", "err", err)
|
|
|
|
} else {
|
|
|
|
select {
|
|
|
|
case db.compactc <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Drain cut channel so we don't trigger immediately again.
|
2017-01-06 14:18:06 +00:00
|
|
|
select {
|
2017-01-20 06:58:19 +00:00
|
|
|
case <-db.cutc:
|
2017-01-06 14:18:06 +00:00
|
|
|
default:
|
|
|
|
}
|
2017-01-20 06:58:19 +00:00
|
|
|
case <-db.stopc:
|
2017-01-06 14:18:06 +00:00
|
|
|
}
|
2017-01-20 06:58:19 +00:00
|
|
|
}
|
|
|
|
}()
|
2017-01-06 14:18:06 +00:00
|
|
|
|
2017-01-20 06:58:19 +00:00
|
|
|
for {
|
|
|
|
select {
|
2017-01-06 11:37:28 +00:00
|
|
|
case <-db.compactc:
|
|
|
|
db.metrics.compactionsTriggered.Inc()
|
|
|
|
|
2017-01-20 06:58:19 +00:00
|
|
|
var infos []compactionInfo
|
|
|
|
for _, b := range db.compactable() {
|
|
|
|
m := b.Meta()
|
|
|
|
|
|
|
|
infos = append(infos, compactionInfo{
|
|
|
|
generation: m.Compaction.Generation,
|
|
|
|
mint: *m.MinTime,
|
|
|
|
maxt: *m.MaxTime,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
i, j, ok := db.compactor.pick(infos)
|
2017-01-18 05:18:32 +00:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err := db.compact(i, j); err != nil {
|
|
|
|
db.logger.Log("msg", "compaction failed", "err", err)
|
|
|
|
continue
|
|
|
|
}
|
2017-01-20 06:58:19 +00:00
|
|
|
db.logger.Log("msg", "compaction completed")
|
2017-01-18 05:18:32 +00:00
|
|
|
// Trigger another compaction in case there's more work to do.
|
|
|
|
select {
|
|
|
|
case db.compactc <- struct{}{}:
|
|
|
|
default:
|
2017-01-06 11:37:28 +00:00
|
|
|
}
|
2017-01-06 14:18:06 +00:00
|
|
|
|
2017-01-06 11:37:28 +00:00
|
|
|
case <-db.stopc:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
func (db *DB) getBlock(i int) Block {
|
|
|
|
if i < len(db.persisted) {
|
|
|
|
return db.persisted[i]
|
2017-01-06 11:37:28 +00:00
|
|
|
}
|
2017-01-18 05:18:32 +00:00
|
|
|
return db.heads[i-len(db.persisted)]
|
|
|
|
}
|
2017-01-06 11:37:28 +00:00
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
// removeBlocks removes the blocks in range [i, j] from the list of persisted
|
|
|
|
// and head blocks. The blocks are not closed and their files not deleted.
|
|
|
|
func (db *DB) removeBlocks(i, j int) {
|
|
|
|
for k := i; k <= j; k++ {
|
|
|
|
if i < len(db.persisted) {
|
|
|
|
db.persisted = append(db.persisted[:i], db.persisted[i+1:]...)
|
|
|
|
} else {
|
|
|
|
l := i - len(db.persisted)
|
|
|
|
db.heads = append(db.heads[:l], db.heads[l+1:]...)
|
2017-01-06 15:27:50 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-18 05:18:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (db *DB) blocks() (bs []Block) {
|
|
|
|
for _, b := range db.persisted {
|
|
|
|
bs = append(bs, b)
|
|
|
|
}
|
|
|
|
for _, b := range db.heads {
|
|
|
|
bs = append(bs, b)
|
|
|
|
}
|
|
|
|
return bs
|
|
|
|
}
|
|
|
|
|
2017-01-19 18:45:52 +00:00
|
|
|
// compact block in range [i, j] into a temporary directory and atomically
|
|
|
|
// swap the blocks out on successful completion.
|
2017-01-18 05:18:32 +00:00
|
|
|
func (db *DB) compact(i, j int) error {
|
|
|
|
if j < i {
|
|
|
|
return errors.New("invalid compaction block range")
|
|
|
|
}
|
|
|
|
var blocks []Block
|
|
|
|
for k := i; k <= j; k++ {
|
|
|
|
blocks = append(blocks, db.getBlock(k))
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
dir = blocks[0].Dir()
|
|
|
|
tmpdir = dir + ".tmp"
|
|
|
|
)
|
2017-01-06 15:27:50 +00:00
|
|
|
|
2017-01-06 11:37:28 +00:00
|
|
|
if err := db.compactor.compact(tmpdir, blocks...); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
pb, err := newPersistedBlock(tmpdir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-06 11:37:28 +00:00
|
|
|
db.mtx.Lock()
|
|
|
|
defer db.mtx.Unlock()
|
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
if err := renameDir(tmpdir, dir); err != nil {
|
2017-01-06 11:37:28 +00:00
|
|
|
return errors.Wrap(err, "rename dir")
|
|
|
|
}
|
2017-01-18 05:18:32 +00:00
|
|
|
pb.dir = dir
|
2017-01-06 11:37:28 +00:00
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
db.removeBlocks(i, j)
|
|
|
|
db.persisted = append(db.persisted, pb)
|
2017-01-06 11:37:28 +00:00
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
for i, b := range blocks {
|
|
|
|
if err := b.Close(); err != nil {
|
|
|
|
return errors.Wrap(err, "close old block")
|
|
|
|
}
|
|
|
|
if i > 0 {
|
|
|
|
if err := os.RemoveAll(b.Dir()); err != nil {
|
|
|
|
return errors.Wrap(err, "removing old block")
|
|
|
|
}
|
|
|
|
}
|
2017-01-06 11:37:28 +00:00
|
|
|
}
|
2017-01-18 05:18:32 +00:00
|
|
|
return nil
|
2017-01-06 08:26:39 +00:00
|
|
|
}
|
2016-12-15 07:31:26 +00:00
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
func (db *DB) initBlocks() error {
|
2017-01-06 08:26:39 +00:00
|
|
|
var (
|
2017-01-18 05:18:32 +00:00
|
|
|
persisted []*persistedBlock
|
|
|
|
heads []*headBlock
|
2017-01-06 08:26:39 +00:00
|
|
|
)
|
2016-12-22 11:05:24 +00:00
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
dirs, err := blockDirs(db.dir)
|
2017-01-06 08:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-12-09 09:00:14 +00:00
|
|
|
}
|
2017-01-06 08:26:39 +00:00
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
for _, dir := range dirs {
|
2017-01-06 08:26:39 +00:00
|
|
|
if fileutil.Exist(filepath.Join(dir, walFileName)) {
|
2017-01-19 13:01:38 +00:00
|
|
|
h, err := openHeadBlock(dir, db.logger)
|
2017-01-06 08:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
heads = append(heads, h)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
b, err := newPersistedBlock(dir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-01-18 05:18:32 +00:00
|
|
|
persisted = append(persisted, b)
|
2017-01-02 09:34:55 +00:00
|
|
|
}
|
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
db.persisted = persisted
|
2017-01-06 10:40:09 +00:00
|
|
|
db.heads = heads
|
2017-01-03 14:43:26 +00:00
|
|
|
|
2017-01-06 08:26:39 +00:00
|
|
|
if len(heads) == 0 {
|
2017-01-19 10:22:47 +00:00
|
|
|
_, err = db.cut()
|
2017-01-02 21:24:35 +00:00
|
|
|
}
|
2017-01-19 10:22:47 +00:00
|
|
|
return err
|
2017-01-02 21:24:35 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 07:08:02 +00:00
|
|
|
// Close the partition.
|
2017-01-06 10:40:09 +00:00
|
|
|
func (db *DB) Close() error {
|
2017-01-06 11:37:28 +00:00
|
|
|
close(db.stopc)
|
|
|
|
<-db.donec
|
|
|
|
|
2017-01-02 21:24:35 +00:00
|
|
|
var merr MultiError
|
2016-12-15 07:31:26 +00:00
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
db.mtx.Lock()
|
|
|
|
defer db.mtx.Unlock()
|
2017-01-02 09:34:55 +00:00
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
for _, pb := range db.persisted {
|
2017-01-02 21:24:35 +00:00
|
|
|
merr.Add(pb.Close())
|
2016-12-15 07:31:26 +00:00
|
|
|
}
|
2017-01-06 10:40:09 +00:00
|
|
|
for _, hb := range db.heads {
|
2017-01-03 14:43:26 +00:00
|
|
|
merr.Add(hb.Close())
|
|
|
|
}
|
2016-12-15 07:31:26 +00:00
|
|
|
|
2017-01-02 21:24:35 +00:00
|
|
|
return merr.Err()
|
2016-12-09 09:00:14 +00:00
|
|
|
}
|
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
// Appender returns a new Appender on the database.
|
2017-01-09 19:04:16 +00:00
|
|
|
func (db *DB) Appender() Appender {
|
2017-01-12 18:18:51 +00:00
|
|
|
db.mtx.RLock()
|
|
|
|
|
|
|
|
return &dbAppender{
|
|
|
|
db: db,
|
|
|
|
head: db.heads[len(db.heads)-1].Appender().(*headAppender),
|
|
|
|
gen: db.headGen,
|
|
|
|
}
|
2017-01-09 19:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type dbAppender struct {
|
2017-01-12 18:18:51 +00:00
|
|
|
db *DB
|
|
|
|
gen uint8
|
|
|
|
head *headAppender
|
2017-01-09 19:04:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *dbAppender) SetSeries(lset labels.Labels) (uint64, error) {
|
|
|
|
ref, err := a.head.SetSeries(lset)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2017-01-13 15:14:40 +00:00
|
|
|
return ref | (uint64(a.gen) << 40), nil
|
2017-01-09 19:04:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *dbAppender) setSeries(hash uint64, lset labels.Labels) (uint64, error) {
|
|
|
|
ref, err := a.head.setSeries(hash, lset)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2017-01-13 15:14:40 +00:00
|
|
|
return ref | (uint64(a.gen) << 40), nil
|
2017-01-09 19:04:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *dbAppender) Add(ref uint64, t int64, v float64) error {
|
|
|
|
// We store the head generation in the 4th byte and use it to reject
|
|
|
|
// stale references.
|
2017-01-13 15:14:40 +00:00
|
|
|
gen := uint8((ref << 16) >> 56)
|
2017-01-09 19:04:16 +00:00
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
if gen != a.gen {
|
2017-01-16 13:18:32 +00:00
|
|
|
return ErrNotFound
|
2016-12-31 14:35:08 +00:00
|
|
|
}
|
2017-01-19 07:40:15 +00:00
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
return a.head.Add(ref, t, v)
|
|
|
|
}
|
2016-12-09 12:41:38 +00:00
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *dbAppender) Commit() error {
|
|
|
|
defer a.db.mtx.RUnlock()
|
2017-01-03 14:43:26 +00:00
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
err := a.head.Commit()
|
2016-12-09 12:41:38 +00:00
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
if a.head.headBlock.fullness() > 1.0 {
|
2017-01-06 14:18:06 +00:00
|
|
|
select {
|
2017-01-12 18:18:51 +00:00
|
|
|
case a.db.cutc <- struct{}{}:
|
2017-01-06 14:18:06 +00:00
|
|
|
default:
|
2016-12-09 12:41:38 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-22 00:12:28 +00:00
|
|
|
return err
|
2016-12-09 12:41:38 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 19:17:49 +00:00
|
|
|
func (a *dbAppender) Rollback() error {
|
|
|
|
err := a.head.Rollback()
|
|
|
|
a.db.mtx.RUnlock()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-10 14:28:22 +00:00
|
|
|
func (db *DB) compactable() []Block {
|
2017-01-06 16:23:12 +00:00
|
|
|
db.mtx.RLock()
|
|
|
|
defer db.mtx.RUnlock()
|
|
|
|
|
2017-01-10 14:28:22 +00:00
|
|
|
var blocks []Block
|
2017-01-06 10:40:09 +00:00
|
|
|
for _, pb := range db.persisted {
|
2017-01-18 05:18:32 +00:00
|
|
|
blocks = append(blocks, pb)
|
2017-01-03 14:43:26 +00:00
|
|
|
}
|
2017-01-06 10:40:09 +00:00
|
|
|
for _, hb := range db.heads[:len(db.heads)-1] {
|
2017-01-18 05:18:32 +00:00
|
|
|
blocks = append(blocks, hb)
|
2017-01-03 14:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return blocks
|
|
|
|
}
|
|
|
|
|
2016-12-15 15:14:33 +00:00
|
|
|
func intervalOverlap(amin, amax, bmin, bmax int64) bool {
|
|
|
|
if bmin >= amin && bmin <= amax {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if amin >= bmin && amin <= bmax {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-12-16 11:13:17 +00:00
|
|
|
func intervalContains(min, max, t int64) bool {
|
|
|
|
return t >= min && t <= max
|
|
|
|
}
|
|
|
|
|
2017-01-06 08:26:39 +00:00
|
|
|
// blocksForInterval returns all blocks within the partition that may contain
|
2016-12-13 14:26:58 +00:00
|
|
|
// data for the given time range.
|
2017-01-10 14:28:22 +00:00
|
|
|
func (db *DB) blocksForInterval(mint, maxt int64) []Block {
|
|
|
|
var bs []Block
|
2016-12-15 15:14:33 +00:00
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
for _, b := range db.persisted {
|
2017-01-19 10:22:47 +00:00
|
|
|
m := b.Meta()
|
2017-01-19 13:01:38 +00:00
|
|
|
if intervalOverlap(mint, maxt, *m.MinTime, *m.MaxTime) {
|
2016-12-15 15:14:33 +00:00
|
|
|
bs = append(bs, b)
|
|
|
|
}
|
|
|
|
}
|
2017-01-06 10:40:09 +00:00
|
|
|
for _, b := range db.heads {
|
2017-01-19 13:01:38 +00:00
|
|
|
if intervalOverlap(mint, maxt, b.mint, b.maxt) {
|
2017-01-03 14:43:26 +00:00
|
|
|
bs = append(bs, b)
|
|
|
|
}
|
2016-12-15 15:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bs
|
2016-12-13 14:26:58 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 14:43:26 +00:00
|
|
|
// cut starts a new head block to append to. The completed head block
|
|
|
|
// will still be appendable for the configured grace period.
|
2017-01-19 10:22:47 +00:00
|
|
|
func (db *DB) cut() (*headBlock, error) {
|
2017-01-19 13:01:38 +00:00
|
|
|
var mint *int64
|
2017-01-19 10:22:47 +00:00
|
|
|
|
2017-01-19 13:01:38 +00:00
|
|
|
// If a previous block exists, fix its max time and and take the
|
|
|
|
// timestamp after as the minimum for the new head.
|
2017-01-19 10:22:47 +00:00
|
|
|
if len(db.heads) > 0 {
|
2017-01-19 13:01:38 +00:00
|
|
|
cur := db.heads[len(db.heads)-1]
|
|
|
|
|
|
|
|
cur.metamtx.Lock()
|
|
|
|
|
|
|
|
if cur.meta.MinTime == nil {
|
|
|
|
mt := cur.mint
|
|
|
|
cur.meta.MinTime = &mt
|
|
|
|
}
|
|
|
|
cur.meta.MaxTime = new(int64)
|
|
|
|
|
|
|
|
mt := cur.maxt + 1
|
|
|
|
cur.meta.MaxTime = &mt
|
|
|
|
mint = &mt
|
|
|
|
|
|
|
|
cur.metamtx.Unlock()
|
2017-01-19 10:22:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-19 13:01:38 +00:00
|
|
|
dir, err := nextBlockDir(db.dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
newHead, err := createHeadBlock(dir, db.logger, mint)
|
2017-01-06 08:26:39 +00:00
|
|
|
if err != nil {
|
2017-01-19 10:22:47 +00:00
|
|
|
return nil, err
|
2017-01-06 08:26:39 +00:00
|
|
|
}
|
2017-01-06 14:18:06 +00:00
|
|
|
db.heads = append(db.heads, newHead)
|
2017-01-12 18:18:51 +00:00
|
|
|
db.headGen++
|
2016-12-09 12:41:38 +00:00
|
|
|
|
2017-01-19 10:22:47 +00:00
|
|
|
return newHead, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func isBlockDir(fi os.FileInfo) bool {
|
|
|
|
if !fi.IsDir() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !strings.HasPrefix(fi.Name(), "b-") {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if _, err := strconv.ParseUint(fi.Name()[2:], 10, 32); err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func blockDirs(dir string) ([]string, error) {
|
|
|
|
files, err := ioutil.ReadDir(dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var dirs []string
|
|
|
|
|
|
|
|
for _, fi := range files {
|
|
|
|
if isBlockDir(fi) {
|
|
|
|
dirs = append(dirs, filepath.Join(dir, fi.Name()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return dirs, nil
|
2017-01-03 14:43:26 +00:00
|
|
|
}
|
2016-12-09 12:41:38 +00:00
|
|
|
|
2017-01-19 10:22:47 +00:00
|
|
|
func nextBlockDir(dir string) (string, error) {
|
|
|
|
names, err := fileutil.ReadDir(dir)
|
2017-01-06 08:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2017-01-06 12:13:22 +00:00
|
|
|
|
2017-01-06 08:26:39 +00:00
|
|
|
i := uint64(0)
|
2017-01-06 12:13:22 +00:00
|
|
|
for _, n := range names {
|
|
|
|
if !strings.HasPrefix(n, "b-") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
j, err := strconv.ParseUint(n[2:], 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
2017-01-06 08:26:39 +00:00
|
|
|
}
|
2017-01-06 12:13:22 +00:00
|
|
|
i = j
|
2017-01-06 08:26:39 +00:00
|
|
|
}
|
2017-01-19 10:22:47 +00:00
|
|
|
return filepath.Join(dir, fmt.Sprintf("b-%0.6d", i+1)), nil
|
2017-01-06 08:26:39 +00:00
|
|
|
}
|
2016-12-09 12:41:38 +00:00
|
|
|
|
2017-01-06 10:40:09 +00:00
|
|
|
// PartitionedDB is a time series storage.
|
|
|
|
type PartitionedDB struct {
|
|
|
|
logger log.Logger
|
|
|
|
dir string
|
|
|
|
|
|
|
|
partitionPow uint
|
|
|
|
Partitions []*DB
|
|
|
|
}
|
|
|
|
|
|
|
|
func isPowTwo(x int) bool {
|
|
|
|
return x > 0 && (x&(x-1)) == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// OpenPartitioned or create a new DB.
|
|
|
|
func OpenPartitioned(dir string, n int, l log.Logger, opts *Options) (*PartitionedDB, error) {
|
|
|
|
if !isPowTwo(n) {
|
|
|
|
return nil, errors.Errorf("%d is not a power of two", n)
|
|
|
|
}
|
|
|
|
if opts == nil {
|
|
|
|
opts = DefaultOptions
|
|
|
|
}
|
|
|
|
if l == nil {
|
|
|
|
l = log.NewLogfmtLogger(os.Stdout)
|
|
|
|
l = log.NewContext(l).With("ts", log.DefaultTimestampUTC, "caller", log.DefaultCaller)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := os.MkdirAll(dir, 0777); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
c := &PartitionedDB{
|
|
|
|
logger: l,
|
|
|
|
dir: dir,
|
|
|
|
partitionPow: uint(math.Log2(float64(n))),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize vertical partitiondb.
|
|
|
|
// TODO(fabxc): validate partition number to be power of 2, which is required
|
|
|
|
// for the bitshift-modulo when finding the right partition.
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
l := log.NewContext(l).With("partition", i)
|
|
|
|
d := partitionDir(dir, i)
|
|
|
|
|
2017-01-18 05:18:32 +00:00
|
|
|
s, err := Open(d, l, opts)
|
2017-01-06 10:40:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("initializing partition %q failed: %s", d, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Partitions = append(c.Partitions, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func partitionDir(base string, i int) string {
|
|
|
|
return filepath.Join(base, fmt.Sprintf("p-%0.4d", i))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the database.
|
|
|
|
func (db *PartitionedDB) Close() error {
|
|
|
|
var g errgroup.Group
|
|
|
|
|
|
|
|
for _, partition := range db.Partitions {
|
|
|
|
g.Go(partition.Close)
|
|
|
|
}
|
|
|
|
|
|
|
|
return g.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Appender returns a new appender against the database.
|
|
|
|
func (db *PartitionedDB) Appender() Appender {
|
2017-01-09 19:04:16 +00:00
|
|
|
app := &partitionedAppender{db: db}
|
|
|
|
|
|
|
|
for _, p := range db.Partitions {
|
2017-01-12 18:18:51 +00:00
|
|
|
app.partitions = append(app.partitions, p.Appender().(*dbAppender))
|
2017-01-06 10:40:09 +00:00
|
|
|
}
|
2017-01-09 19:04:16 +00:00
|
|
|
return app
|
2017-01-06 10:40:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type partitionedAppender struct {
|
2017-01-12 18:18:51 +00:00
|
|
|
db *PartitionedDB
|
|
|
|
partitions []*dbAppender
|
2017-01-09 19:04:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *partitionedAppender) SetSeries(lset labels.Labels) (uint64, error) {
|
|
|
|
h := lset.Hash()
|
|
|
|
p := h >> (64 - a.db.partitionPow)
|
2017-01-09 19:04:16 +00:00
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
ref, err := a.partitions[p].setSeries(h, lset)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2017-01-13 15:14:40 +00:00
|
|
|
return ref | (p << 48), nil
|
2017-01-06 10:40:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *partitionedAppender) Add(ref uint64, t int64, v float64) error {
|
2017-01-13 15:14:40 +00:00
|
|
|
p := uint8((ref << 8) >> 56)
|
2017-01-12 18:18:51 +00:00
|
|
|
return a.partitions[p].Add(ref, t, v)
|
2017-01-06 10:40:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
func (a *partitionedAppender) Commit() error {
|
2017-01-06 10:40:09 +00:00
|
|
|
var merr MultiError
|
|
|
|
|
2017-01-12 18:18:51 +00:00
|
|
|
for _, p := range a.partitions {
|
|
|
|
merr.Add(p.Commit())
|
2017-01-06 10:40:09 +00:00
|
|
|
}
|
|
|
|
return merr.Err()
|
|
|
|
}
|
|
|
|
|
2017-01-12 19:17:49 +00:00
|
|
|
func (a *partitionedAppender) Rollback() error {
|
|
|
|
var merr MultiError
|
|
|
|
|
|
|
|
for _, p := range a.partitions {
|
|
|
|
merr.Add(p.Rollback())
|
|
|
|
}
|
|
|
|
return merr.Err()
|
|
|
|
}
|
|
|
|
|
2016-12-10 17:08:50 +00:00
|
|
|
// The MultiError type implements the error interface, and contains the
|
|
|
|
// Errors used to construct it.
|
|
|
|
type MultiError []error
|
2016-12-07 16:10:49 +00:00
|
|
|
|
2016-12-10 17:08:50 +00:00
|
|
|
// Returns a concatenated string of the contained errors
|
|
|
|
func (es MultiError) Error() string {
|
|
|
|
var buf bytes.Buffer
|
2016-12-07 16:10:49 +00:00
|
|
|
|
2017-01-04 20:11:15 +00:00
|
|
|
if len(es) > 1 {
|
2016-12-10 17:08:50 +00:00
|
|
|
fmt.Fprintf(&buf, "%d errors: ", len(es))
|
2016-12-08 09:04:24 +00:00
|
|
|
}
|
2016-12-07 16:10:49 +00:00
|
|
|
|
2016-12-10 17:08:50 +00:00
|
|
|
for i, err := range es {
|
|
|
|
if i != 0 {
|
|
|
|
buf.WriteString("; ")
|
|
|
|
}
|
|
|
|
buf.WriteString(err.Error())
|
|
|
|
}
|
2016-12-07 16:10:49 +00:00
|
|
|
|
2016-12-10 17:08:50 +00:00
|
|
|
return buf.String()
|
2016-11-15 09:34:25 +00:00
|
|
|
}
|
2016-12-15 07:31:26 +00:00
|
|
|
|
2016-12-15 10:56:41 +00:00
|
|
|
// Add adds the error to the error list if it is not nil.
|
2016-12-31 14:35:08 +00:00
|
|
|
func (es *MultiError) Add(err error) {
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if merr, ok := err.(MultiError); ok {
|
|
|
|
*es = append(*es, merr...)
|
|
|
|
} else {
|
|
|
|
*es = append(*es, err)
|
2016-12-15 07:31:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 10:56:41 +00:00
|
|
|
// Err returns the error list as an error or nil if it is empty.
|
2016-12-15 07:31:26 +00:00
|
|
|
func (es MultiError) Err() error {
|
|
|
|
if len(es) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return es
|
|
|
|
}
|
2016-12-15 10:56:41 +00:00
|
|
|
|
|
|
|
func yoloString(b []byte) string {
|
2017-01-02 09:34:55 +00:00
|
|
|
sh := (*reflect.SliceHeader)(unsafe.Pointer(&b))
|
|
|
|
|
2016-12-15 10:56:41 +00:00
|
|
|
h := reflect.StringHeader{
|
2017-01-02 09:34:55 +00:00
|
|
|
Data: sh.Data,
|
|
|
|
Len: sh.Len,
|
2016-12-15 10:56:41 +00:00
|
|
|
}
|
|
|
|
return *((*string)(unsafe.Pointer(&h)))
|
|
|
|
}
|