prometheus/block.go

174 lines
3.6 KiB
Go
Raw Normal View History

package tsdb
2016-12-15 07:31:26 +00:00
import (
"os"
"path/filepath"
"sort"
2017-01-07 17:02:17 +00:00
"sync"
2016-12-22 14:54:39 +00:00
2017-01-03 09:09:20 +00:00
"github.com/coreos/etcd/pkg/fileutil"
2016-12-22 14:54:39 +00:00
"github.com/pkg/errors"
)
2017-01-03 09:09:20 +00:00
// Block handles reads against a block of time series data.
type block interface {
2017-01-03 09:09:20 +00:00
dir() string
2017-01-03 14:43:26 +00:00
stats() BlockStats
interval() (int64, int64)
index() IndexReader
series() SeriesReader
2017-01-03 14:43:26 +00:00
persisted() bool
2016-12-13 14:26:58 +00:00
}
type BlockStats struct {
2017-01-07 17:02:17 +00:00
// Time range of samples in the block.
MinTime, MaxTime int64
SampleCount uint64
2017-01-07 17:02:17 +00:00
SeriesCount uint64
ChunkCount uint64
mtx sync.RWMutex
}
const (
flagNone = 0
flagStd = 1
)
2016-12-15 07:31:26 +00:00
type persistedBlock struct {
2017-01-03 14:43:26 +00:00
d string
bstats BlockStats
2017-01-03 09:09:20 +00:00
2016-12-15 07:31:26 +00:00
chunksf, indexf *mmapFile
chunkr *seriesReader
indexr *indexReader
2016-12-15 07:31:26 +00:00
}
2017-01-03 09:09:20 +00:00
func newPersistedBlock(p string) (*persistedBlock, error) {
// TODO(fabxc): validate match of name and stats time, validate magic.
2016-12-15 07:31:26 +00:00
// mmap files belonging to the block.
2017-01-03 09:09:20 +00:00
chunksf, err := openMmapFile(chunksFileName(p))
2016-12-15 07:31:26 +00:00
if err != nil {
2017-01-03 14:43:26 +00:00
return nil, errors.Wrap(err, "open chunk file")
2016-12-15 07:31:26 +00:00
}
2017-01-03 09:09:20 +00:00
indexf, err := openMmapFile(indexFileName(p))
2016-12-15 07:31:26 +00:00
if err != nil {
2017-01-03 14:43:26 +00:00
return nil, errors.Wrap(err, "open index file")
2016-12-15 07:31:26 +00:00
}
sr, err := newSeriesReader(chunksf.b)
if err != nil {
2017-01-03 14:43:26 +00:00
return nil, errors.Wrap(err, "create series reader")
2016-12-15 07:31:26 +00:00
}
ir, err := newIndexReader(sr, indexf.b)
if err != nil {
2017-01-03 14:43:26 +00:00
return nil, errors.Wrap(err, "create index reader")
2016-12-15 07:31:26 +00:00
}
stats, err := ir.Stats()
if err != nil {
2017-01-03 14:43:26 +00:00
return nil, errors.Wrap(err, "read stats")
}
2016-12-15 07:31:26 +00:00
pb := &persistedBlock{
2017-01-03 09:09:20 +00:00
d: p,
chunksf: chunksf,
indexf: indexf,
chunkr: sr,
indexr: ir,
2017-01-03 14:43:26 +00:00
bstats: stats,
2016-12-15 07:31:26 +00:00
}
return pb, nil
}
func (pb *persistedBlock) Close() error {
err0 := pb.chunksf.Close()
err1 := pb.indexf.Close()
if err0 != nil {
return err0
}
return err1
}
2017-01-03 09:09:20 +00:00
func (pb *persistedBlock) dir() string { return pb.d }
2017-01-03 14:43:26 +00:00
func (pb *persistedBlock) persisted() bool { return true }
2017-01-03 09:09:20 +00:00
func (pb *persistedBlock) index() IndexReader { return pb.indexr }
func (pb *persistedBlock) series() SeriesReader { return pb.chunkr }
2017-01-03 14:43:26 +00:00
func (pb *persistedBlock) stats() BlockStats { return pb.bstats }
func (pb *persistedBlock) interval() (int64, int64) {
2017-01-03 14:43:26 +00:00
return pb.bstats.MinTime, pb.bstats.MaxTime
}
2016-12-15 07:31:26 +00:00
func chunksFileName(path string) string {
return filepath.Join(path, "chunks-000")
2016-12-15 07:31:26 +00:00
}
func indexFileName(path string) string {
return filepath.Join(path, "index-000")
2016-12-15 07:31:26 +00:00
}
type mmapFile struct {
2017-01-03 09:09:20 +00:00
f *fileutil.LockedFile
2016-12-15 07:31:26 +00:00
b []byte
}
func openMmapFile(path string) (*mmapFile, error) {
2017-01-03 09:09:20 +00:00
f, err := fileutil.TryLockFile(path, os.O_RDONLY, 0666)
2016-12-15 07:31:26 +00:00
if err != nil {
return nil, err
}
info, err := f.Stat()
if err != nil {
return nil, err
}
2017-01-03 09:09:20 +00:00
b, err := mmap(f.File, int(info.Size()))
2016-12-15 07:31:26 +00:00
if err != nil {
return nil, err
}
return &mmapFile{f: f, b: b}, nil
}
func (f *mmapFile) Close() error {
err0 := munmap(f.b)
err1 := f.f.Close()
if err0 != nil {
return err0
}
return err1
}
// A skiplist maps offsets to values. The values found in the data at an
// offset are strictly greater than the indexed value.
type skiplist interface {
// offset returns the offset to data containing values of x and lower.
offset(x int64) (uint32, bool)
}
// simpleSkiplist is a slice of plain value/offset pairs.
type simpleSkiplist []skiplistPair
type skiplistPair struct {
value int64
offset uint32
}
func (sl simpleSkiplist) offset(x int64) (uint32, bool) {
// Search for the first offset that contains data greater than x.
i := sort.Search(len(sl), func(i int) bool { return sl[i].value >= x })
// If no element was found return false. If the first element is found,
// there's no previous offset actually containing values that are x or lower.
if i == len(sl) || i == 0 {
return 0, false
}
return sl[i-1].offset, true
}