2016-12-25 00:40:28 +00:00
|
|
|
package tsdb
|
|
|
|
|
|
|
|
import (
|
2017-02-01 14:59:37 +00:00
|
|
|
"time"
|
2016-12-25 00:40:28 +00:00
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"github.com/fabxc/tsdb"
|
|
|
|
tsdbLabels "github.com/fabxc/tsdb/labels"
|
2017-02-28 08:33:14 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2016-12-25 00:40:28 +00:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
2016-12-25 10:12:57 +00:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2016-12-25 00:40:28 +00:00
|
|
|
)
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
// adapter implements a storage.Storage around TSDB.
|
|
|
|
type adapter struct {
|
2017-03-07 10:51:30 +00:00
|
|
|
db *tsdb.DB
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 14:59:37 +00:00
|
|
|
// Options of the DB storage.
|
|
|
|
type Options struct {
|
|
|
|
// The interval at which the write ahead log is flushed to disc.
|
|
|
|
WALFlushInterval time.Duration
|
|
|
|
|
|
|
|
// The timestamp range of head blocks after which they get persisted.
|
|
|
|
// It's the minimum duration of any persisted block.
|
2017-02-05 17:22:06 +00:00
|
|
|
MinBlockDuration time.Duration
|
2017-02-01 14:59:37 +00:00
|
|
|
|
|
|
|
// The maximum timestamp range of compacted blocks.
|
2017-02-05 17:22:06 +00:00
|
|
|
MaxBlockDuration time.Duration
|
2017-02-01 14:59:37 +00:00
|
|
|
|
|
|
|
// Number of head blocks that can be appended to.
|
|
|
|
// Should be two or higher to prevent write errors in general scenarios.
|
|
|
|
//
|
|
|
|
// After a new block is started for timestamp t0 or higher, appends with
|
|
|
|
// timestamps as early as t0 - (n-1) * MinBlockDuration are valid.
|
|
|
|
AppendableBlocks int
|
|
|
|
}
|
|
|
|
|
2016-12-25 00:40:28 +00:00
|
|
|
// Open returns a new storage backed by a tsdb database.
|
2017-02-28 08:33:14 +00:00
|
|
|
func Open(path string, r prometheus.Registerer, opts *Options) (storage.Storage, error) {
|
2017-03-07 10:51:30 +00:00
|
|
|
db, err := tsdb.Open(path, nil, r, &tsdb.Options{
|
2017-02-01 14:59:37 +00:00
|
|
|
WALFlushInterval: 10 * time.Second,
|
2017-02-05 17:22:06 +00:00
|
|
|
MinBlockDuration: uint64(opts.MinBlockDuration.Seconds() * 1000),
|
|
|
|
MaxBlockDuration: uint64(opts.MaxBlockDuration.Seconds() * 1000),
|
2017-02-01 14:59:37 +00:00
|
|
|
AppendableBlocks: opts.AppendableBlocks,
|
|
|
|
})
|
2016-12-25 00:40:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-12-25 10:34:22 +00:00
|
|
|
return adapter{db: db}, nil
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
func (a adapter) Querier(mint, maxt int64) (storage.Querier, error) {
|
|
|
|
return querier{q: a.db.Querier(mint, maxt)}, nil
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Appender returns a new appender against the storage.
|
2016-12-25 10:34:22 +00:00
|
|
|
func (a adapter) Appender() (storage.Appender, error) {
|
|
|
|
return appender{a: a.db.Appender()}, nil
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes the storage and all its underlying resources.
|
2016-12-25 10:34:22 +00:00
|
|
|
func (a adapter) Close() error {
|
|
|
|
return a.db.Close()
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type querier struct {
|
|
|
|
q tsdb.Querier
|
|
|
|
}
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
func (q querier) Select(oms ...*labels.Matcher) storage.SeriesSet {
|
2016-12-25 00:40:28 +00:00
|
|
|
ms := make([]tsdbLabels.Matcher, 0, len(oms))
|
|
|
|
|
|
|
|
for _, om := range oms {
|
|
|
|
ms = append(ms, convertMatcher(om))
|
|
|
|
}
|
|
|
|
|
2016-12-28 08:16:48 +00:00
|
|
|
return seriesSet{set: q.q.Select(ms...)}
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
func (q querier) LabelValues(name string) ([]string, error) { return q.q.LabelValues(name) }
|
|
|
|
func (q querier) Close() error { return q.q.Close() }
|
2016-12-25 00:40:28 +00:00
|
|
|
|
|
|
|
type seriesSet struct {
|
|
|
|
set tsdb.SeriesSet
|
|
|
|
}
|
|
|
|
|
2017-01-02 12:33:37 +00:00
|
|
|
func (s seriesSet) Next() bool { return s.set.Next() }
|
|
|
|
func (s seriesSet) Err() error { return s.set.Err() }
|
|
|
|
func (s seriesSet) At() storage.Series { return series{s: s.set.At()} }
|
2016-12-25 00:40:28 +00:00
|
|
|
|
|
|
|
type series struct {
|
|
|
|
s tsdb.Series
|
|
|
|
}
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
func (s series) Labels() labels.Labels { return toLabels(s.s.Labels()) }
|
|
|
|
func (s series) Iterator() storage.SeriesIterator { return storage.SeriesIterator(s.s.Iterator()) }
|
2016-12-25 00:40:28 +00:00
|
|
|
|
|
|
|
type appender struct {
|
|
|
|
a tsdb.Appender
|
|
|
|
}
|
|
|
|
|
2017-02-01 14:59:37 +00:00
|
|
|
func (a appender) Add(lset labels.Labels, t int64, v float64) (uint64, error) {
|
|
|
|
ref, err := a.a.Add(toTSDBLabels(lset), t, v)
|
|
|
|
|
|
|
|
switch err {
|
|
|
|
case tsdb.ErrNotFound:
|
|
|
|
return 0, storage.ErrNotFound
|
|
|
|
case tsdb.ErrOutOfOrderSample:
|
|
|
|
return 0, storage.ErrOutOfOrderSample
|
|
|
|
case tsdb.ErrAmendSample:
|
|
|
|
return 0, storage.ErrDuplicateSampleForTimestamp
|
|
|
|
}
|
|
|
|
return ref, err
|
2016-12-28 08:16:48 +00:00
|
|
|
}
|
2017-01-02 12:33:37 +00:00
|
|
|
|
2017-02-01 14:59:37 +00:00
|
|
|
func (a appender) AddFast(ref uint64, t int64, v float64) error {
|
|
|
|
err := a.a.AddFast(ref, t, v)
|
2017-01-15 16:33:07 +00:00
|
|
|
|
|
|
|
switch err {
|
|
|
|
case tsdb.ErrNotFound:
|
|
|
|
return storage.ErrNotFound
|
|
|
|
case tsdb.ErrOutOfOrderSample:
|
|
|
|
return storage.ErrOutOfOrderSample
|
|
|
|
case tsdb.ErrAmendSample:
|
|
|
|
return storage.ErrDuplicateSampleForTimestamp
|
|
|
|
}
|
|
|
|
return err
|
2017-01-13 13:48:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a appender) Commit() error { return a.a.Commit() }
|
|
|
|
func (a appender) Rollback() error { return a.a.Rollback() }
|
2016-12-25 00:40:28 +00:00
|
|
|
|
2016-12-25 10:12:57 +00:00
|
|
|
func convertMatcher(m *labels.Matcher) tsdbLabels.Matcher {
|
2016-12-25 00:40:28 +00:00
|
|
|
switch m.Type {
|
2016-12-25 10:34:22 +00:00
|
|
|
case labels.MatchEqual:
|
2016-12-25 00:40:28 +00:00
|
|
|
return tsdbLabels.NewEqualMatcher(m.Name, m.Value)
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
case labels.MatchNotEqual:
|
2016-12-25 00:40:28 +00:00
|
|
|
return tsdbLabels.Not(tsdbLabels.NewEqualMatcher(m.Name, m.Value))
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
case labels.MatchRegexp:
|
2016-12-25 00:40:28 +00:00
|
|
|
res, err := tsdbLabels.NewRegexpMatcher(m.Name, m.Value)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
|
2016-12-25 10:34:22 +00:00
|
|
|
case labels.MatchNotRegexp:
|
2016-12-25 00:40:28 +00:00
|
|
|
res, err := tsdbLabels.NewRegexpMatcher(m.Name, m.Value)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return tsdbLabels.Not(res)
|
|
|
|
}
|
2016-12-25 10:12:57 +00:00
|
|
|
panic("storage.convertMatcher: invalid matcher type")
|
2016-12-25 00:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func toTSDBLabels(l labels.Labels) tsdbLabels.Labels {
|
|
|
|
return *(*tsdbLabels.Labels)(unsafe.Pointer(&l))
|
|
|
|
}
|
|
|
|
|
|
|
|
func toLabels(l tsdbLabels.Labels) labels.Labels {
|
|
|
|
return *(*labels.Labels)(unsafe.Pointer(&l))
|
|
|
|
}
|