prometheus/db.go

474 lines
10 KiB
Go
Raw Normal View History

2016-11-15 09:34:25 +00:00
// Package tsdb implements a time series storage for float64 sample data.
package tsdb
import (
2016-12-04 12:16:11 +00:00
"fmt"
"os"
"path/filepath"
2016-12-04 12:16:11 +00:00
"sort"
"sync"
2016-11-15 09:34:25 +00:00
"time"
2016-12-04 12:16:11 +00:00
"github.com/cespare/xxhash"
"github.com/fabxc/tsdb/chunks"
2016-11-15 09:34:25 +00:00
"github.com/prometheus/common/log"
)
2016-12-09 09:00:14 +00:00
// DefaultOptions used for the DB. They are sane for setups using
// millisecond precision timestamps.
2016-11-15 09:34:25 +00:00
var DefaultOptions = &Options{
2016-12-09 09:00:14 +00:00
Retention: 15 * 24 * 3600 * 1000, // 15 days
2016-11-15 09:34:25 +00:00
}
// Options of the DB storage.
type Options struct {
2016-12-09 09:00:14 +00:00
Retention int64
2016-11-15 09:34:25 +00:00
}
// DB is a time series storage.
type DB struct {
logger log.Logger
opts *Options
path string
2016-11-15 09:34:25 +00:00
2016-12-04 12:16:11 +00:00
shards []*SeriesShard
2016-11-15 09:34:25 +00:00
}
2016-12-04 12:16:11 +00:00
// TODO(fabxc): make configurable
const (
seriesShardShift = 3
numSeriesShards = 1 << seriesShardShift
maxChunkSize = 1024
2016-12-04 12:16:11 +00:00
)
2016-11-15 09:34:25 +00:00
// Open or create a new DB.
func Open(path string, l log.Logger, opts *Options) (*DB, error) {
if opts == nil {
opts = DefaultOptions
}
2016-12-04 12:16:11 +00:00
if err := os.MkdirAll(path, 0777); err != nil {
return nil, err
}
2016-11-15 09:34:25 +00:00
c := &DB{
2016-12-04 12:16:11 +00:00
logger: l,
opts: opts,
path: path,
2016-11-15 09:34:25 +00:00
}
2016-12-04 12:16:11 +00:00
// Initialize vertical shards.
// TODO(fabxc): validate shard number to be power of 2, which is required
// for the bitshift-modulo when finding the right shard.
for i := 0; i < numSeriesShards; i++ {
2016-12-09 09:00:14 +00:00
path := filepath.Join(path, fmt.Sprintf("%d", i))
2016-12-09 12:41:38 +00:00
c.shards = append(c.shards, NewSeriesShard(path, l.With("shard", i)))
2016-12-04 12:16:11 +00:00
}
// TODO(fabxc): run background compaction + GC.
2016-11-15 09:34:25 +00:00
return c, nil
}
2016-12-04 12:16:11 +00:00
// Close the database.
func (db *DB) Close() error {
2016-12-09 09:00:14 +00:00
var wg sync.WaitGroup
for i, shard := range db.shards {
2016-12-09 09:00:14 +00:00
wg.Add(1)
go func(i int, shard *SeriesShard) {
2016-12-09 12:41:38 +00:00
if err := shard.Close(); err != nil {
// TODO(fabxc): handle with multi error.
2016-12-09 09:00:14 +00:00
panic(err)
}
wg.Done()
}(i, shard)
}
2016-12-09 09:00:14 +00:00
wg.Wait()
2016-12-08 09:04:24 +00:00
return nil
2016-12-04 12:16:11 +00:00
}
// Querier returns a new querier over the database.
func (db *DB) Querier(start, end int64) Querier {
return nil
}
2016-12-09 12:41:38 +00:00
// AppendVector adds values for a list of label sets for the given timestamp
// in milliseconds.
func (db *DB) AppendVector(ts int64, v *Vector) error {
// Sequentially add samples to shards.
for s, bkt := range v.Buckets {
shard := db.shards[s]
if err := shard.appendBatch(ts, bkt); err != nil {
// TODO(fabxc): handle gracefully and collect multi-error.
return err
}
}
return nil
}
2016-12-09 15:54:38 +00:00
func (db *DB) appendSingle(lset Labels, ts int64, v float64) error {
h := lset.Hash()
s := uint16(h >> (64 - seriesShardShift))
2016-12-09 19:45:46 +00:00
return db.shards[s].appendBatch(ts, []Sample{
{
Hash: h,
Labels: lset,
Value: v,
},
2016-12-09 15:54:38 +00:00
})
}
2016-12-04 12:16:11 +00:00
// Matcher matches a string.
type Matcher interface {
// Match returns true if the matcher applies to the string value.
Match(v string) bool
}
// Querier provides querying access over time series data of a fixed
// time range.
type Querier interface {
2016-12-05 20:25:20 +00:00
// Range returns the timestamp range of the Querier.
Range() (start, end int64)
2016-12-04 12:16:11 +00:00
// Iterator returns an interator over the inverted index that
// matches the key label by the constraints of Matcher.
Iterator(key string, m Matcher) Iterator
// Labels resolves a label reference into a set of labels.
Labels(ref LabelRefs) (Labels, error)
// Series returns series provided in the index iterator.
Series(Iterator) []Series
2016-12-05 20:25:20 +00:00
// LabelValues returns all potential values for a label name.
LabelValues(string) []string
// LabelValuesFor returns all potential values for a label name.
// under the constraint of another label.
LabelValuesFor(string, Label) []string
2016-12-04 12:16:11 +00:00
// Close releases the resources of the Querier.
Close() error
}
// Series represents a single time series.
type Series interface {
2016-12-09 15:54:38 +00:00
Labels() Labels
2016-12-04 12:16:11 +00:00
// Iterator returns a new iterator of the data of the series.
Iterator() SeriesIterator
}
// SeriesIterator iterates over the data of a time series.
type SeriesIterator interface {
// Seek advances the iterator forward to the given timestamp.
// If there's no value exactly at ts, it advances to the last value
// before ts.
Seek(ts int64) bool
// Values returns the current timestamp/value pair.
Values() (int64, float64)
// Next advances the iterator by one.
Next() bool
// Err returns the current error.
Err() error
}
2016-12-09 09:00:14 +00:00
const sep = '\xff'
// SeriesShard handles reads and writes of time series falling into
// a hashed shard of a series.
type SeriesShard struct {
2016-12-09 12:41:38 +00:00
path string
persistCh chan struct{}
done chan struct{}
logger log.Logger
2016-12-09 09:00:14 +00:00
mtx sync.RWMutex
blocks *Block
head *HeadBlock
}
// NewSeriesShard returns a new SeriesShard.
2016-12-09 12:41:38 +00:00
func NewSeriesShard(path string, logger log.Logger) *SeriesShard {
s := &SeriesShard{
path: path,
persistCh: make(chan struct{}, 1),
done: make(chan struct{}),
logger: logger,
2016-12-09 09:00:14 +00:00
// TODO(fabxc): restore from checkpoint.
// TODO(fabxc): provide access to persisted blocks.
}
2016-12-09 12:41:38 +00:00
// TODO(fabxc): get base time from pre-existing blocks. Otherwise
// it should come from a user defined start timestamp.
// Use actual time for now.
s.head = NewHeadBlock(time.Now().UnixNano() / int64(time.Millisecond))
return s
}
// Close the series shard.
func (s *SeriesShard) Close() error {
close(s.done)
return nil
2016-12-09 09:00:14 +00:00
}
2016-12-09 12:41:38 +00:00
func (s *SeriesShard) appendBatch(ts int64, samples []Sample) error {
// TODO(fabxc): make configurable.
const persistenceTimeThreshold = 1000 * 60 * 60 // 1 hour if timestamp in ms
s.mtx.Lock()
defer s.mtx.Unlock()
for _, smpl := range samples {
if err := s.head.append(smpl.Hash, smpl.Labels, ts, smpl.Value); err != nil {
// TODO(fabxc): handle gracefully and collect multi-error.
return err
}
}
if ts > s.head.highTimestamp {
s.head.highTimestamp = ts
}
// TODO(fabxc): randomize over time
if s.head.stats().samples/uint64(s.head.stats().chunks) > 400 {
select {
case s.persistCh <- struct{}{}:
go s.persist()
default:
}
}
return nil
}
// TODO(fabxc): make configurable.
const shardGracePeriod = 60 * 1000 // 60 seconds for millisecond scale
func (s *SeriesShard) persist() error {
s.mtx.Lock()
// Set new head block.
head := s.head
s.head = NewHeadBlock(head.highTimestamp)
s.mtx.Unlock()
defer func() {
<-s.persistCh
}()
// TODO(fabxc): add grace period where we can still append to old head shard
// before actually persisting it.
p := filepath.Join(s.path, fmt.Sprintf("%d", head.baseTimestamp))
if err := os.MkdirAll(p, 0777); err != nil {
return err
}
2016-12-09 20:23:34 +00:00
sf, err := os.Create(filepath.Join(p, "series"))
if err != nil {
return err
}
xf, err := os.Create(filepath.Join(p, "index"))
2016-12-09 12:41:38 +00:00
if err != nil {
return err
}
2016-12-09 20:23:34 +00:00
iw := newIndexWriter(xf)
sw := newSeriesWriter(sf, iw, s.head.baseTimestamp)
defer sw.Close()
defer iw.Close()
2016-12-09 12:41:38 +00:00
2016-12-10 08:44:00 +00:00
for ref, cd := range head.index.forward {
if err := sw.WriteSeries(ref, cd.lset, []*chunkDesc{cd}); err != nil {
2016-12-09 20:23:34 +00:00
return err
}
}
if err := iw.WriteStats(nil); err != nil {
return err
2016-12-09 12:41:38 +00:00
}
2016-12-09 20:40:38 +00:00
for n, v := range head.index.values {
s := make([]string, 0, len(v))
for x := range v {
s = append(s, x)
}
2016-12-10 08:44:00 +00:00
if err := iw.WriteLabelIndex([]string{n}, s); err != nil {
return err
}
}
2016-12-09 20:40:38 +00:00
2016-12-10 08:44:00 +00:00
for t := range head.index.postings.m {
if err := iw.WritePostings(t.name, t.value, head.index.postings.get(t)); err != nil {
return err
}
2016-12-09 20:40:38 +00:00
}
2016-12-09 19:45:46 +00:00
2016-12-09 20:23:34 +00:00
sz := fmt.Sprintf("%fMiB", float64(sw.Size()+iw.Size())/1024/1024)
2016-12-09 12:41:38 +00:00
s.logger.With("size", sz).
With("samples", head.samples).
With("chunks", head.stats().chunks).
Debug("persisted head")
return nil
}
2016-12-09 09:00:14 +00:00
// chunkDesc wraps a plain data chunk and provides cached meta data about it.
type chunkDesc struct {
lset Labels
chunk chunks.Chunk
// Caching fields.
lastTimestamp int64
lastValue float64
app chunks.Appender // Current appender for the chunks.
}
func (cd *chunkDesc) append(ts int64, v float64) (err error) {
if cd.app == nil {
cd.app, err = cd.chunk.Appender()
if err != nil {
return err
}
}
if err := cd.app.Append(ts, v); err != nil {
return err
}
cd.lastTimestamp = ts
cd.lastValue = v
return nil
}
2016-12-05 20:25:20 +00:00
// LabelRefs contains a reference to a label set that can be resolved
// against a Querier.
2016-12-04 12:16:11 +00:00
type LabelRefs struct {
block uint64
offsets []uint32
}
// Label is a key/value pair of strings.
2016-12-02 16:49:05 +00:00
type Label struct {
Name, Value string
2016-11-15 09:34:25 +00:00
}
2016-12-04 12:16:11 +00:00
// Labels is a sorted set of labels. Order has to be guaranteed upon
2016-12-02 16:49:05 +00:00
// instantiation.
2016-12-04 12:16:11 +00:00
type Labels []Label
func (ls Labels) Len() int { return len(ls) }
func (ls Labels) Swap(i, j int) { ls[i], ls[j] = ls[j], ls[i] }
func (ls Labels) Less(i, j int) bool { return ls[i].Name < ls[j].Name }
// Hash returns a hash value for the label set.
func (ls Labels) Hash() uint64 {
2016-12-08 09:04:24 +00:00
b := make([]byte, 0, 1024)
2016-12-04 12:16:11 +00:00
for _, v := range ls {
b = append(b, v.Name...)
2016-12-05 20:25:20 +00:00
b = append(b, sep)
2016-12-04 12:16:11 +00:00
b = append(b, v.Value...)
2016-12-05 20:25:20 +00:00
b = append(b, sep)
2016-12-04 12:16:11 +00:00
}
return xxhash.Sum64(b)
}
// Get returns the value for the label with the given name.
// Returns an empty string if the label doesn't exist.
func (ls Labels) Get(name string) string {
for _, l := range ls {
if l.Name == name {
return l.Value
}
}
return ""
}
// Equals returns whether the two label sets are equal.
func (ls Labels) Equals(o Labels) bool {
if len(ls) != len(o) {
return false
}
for i, l := range ls {
if l.Name != o[i].Name || l.Value != o[i].Value {
return false
}
}
return true
}
2016-11-15 09:34:25 +00:00
2016-12-04 12:16:11 +00:00
// Map returns a string map of the labels.
func (ls Labels) Map() map[string]string {
m := make(map[string]string, len(ls))
for _, l := range ls {
m[l.Name] = l.Value
}
return m
}
2016-11-15 09:34:25 +00:00
2016-12-04 12:16:11 +00:00
// NewLabels returns a sorted Labels from the given labels.
2016-12-02 16:49:05 +00:00
// The caller has to guarantee that all label names are unique.
2016-12-04 12:16:11 +00:00
func NewLabels(ls ...Label) Labels {
set := make(Labels, 0, len(ls))
2016-12-02 16:49:05 +00:00
for _, l := range ls {
set = append(set, l)
2016-11-15 09:34:25 +00:00
}
2016-12-02 16:49:05 +00:00
sort.Sort(set)
2016-11-15 09:34:25 +00:00
2016-12-02 16:49:05 +00:00
return set
2016-11-15 09:34:25 +00:00
}
2016-12-04 12:16:11 +00:00
// LabelsFromMap returns new sorted Labels from the given map.
func LabelsFromMap(m map[string]string) Labels {
l := make([]Label, 0, len(m))
for k, v := range m {
l = append(l, Label{Name: k, Value: v})
}
return NewLabels(l...)
}
// Vector is a set of LabelSet associated with one value each.
// Label sets and values must have equal length.
2016-12-02 16:49:05 +00:00
type Vector struct {
Buckets map[uint16][]Sample
2016-12-08 09:04:24 +00:00
reused int
}
type Sample struct {
Hash uint64
Labels Labels
Value float64
}
// Reset the vector but keep resources allocated.
func (v *Vector) Reset() {
2016-12-08 09:04:24 +00:00
// Do a full reset every n-th reusage to avoid memory leaks.
if v.Buckets == nil || v.reused > 100 {
v.Buckets = make(map[uint16][]Sample, 0)
return
}
for x, bkt := range v.Buckets {
v.Buckets[x] = bkt[:0]
}
v.reused++
}
// Add a sample to the vector.
func (v *Vector) Add(lset Labels, val float64) {
h := lset.Hash()
s := uint16(h >> (64 - seriesShardShift))
v.Buckets[s] = append(v.Buckets[s], Sample{
Hash: h,
Labels: lset,
Value: val,
})
2016-11-15 09:34:25 +00:00
}