2016-12-08 08:43:10 -08:00
|
|
|
package tsdb
|
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"sort"
|
2017-01-07 09:02:17 -08:00
|
|
|
"sync"
|
2016-12-22 06:54:39 -08:00
|
|
|
|
2017-01-03 01:09:20 -08:00
|
|
|
"github.com/coreos/etcd/pkg/fileutil"
|
2016-12-22 06:54:39 -08:00
|
|
|
"github.com/pkg/errors"
|
2016-12-08 08:43:10 -08:00
|
|
|
)
|
|
|
|
|
2017-01-10 06:28:22 -08:00
|
|
|
// Block handles reads against a Block of time series data.
|
|
|
|
type Block interface {
|
|
|
|
Dir() string
|
|
|
|
Stats() BlockStats
|
|
|
|
Index() IndexReader
|
|
|
|
Series() SeriesReader
|
|
|
|
Persisted() bool
|
2017-01-17 21:18:32 -08:00
|
|
|
Close() error
|
2016-12-13 06:26:58 -08:00
|
|
|
}
|
2016-12-08 08:43:10 -08:00
|
|
|
|
2017-01-10 06:28:22 -08:00
|
|
|
// BlockStats provides stats on a data block.
|
2016-12-19 13:29:49 -08:00
|
|
|
type BlockStats struct {
|
2017-01-10 06:28:22 -08:00
|
|
|
MinTime, MaxTime int64 // time range of samples in the block
|
2017-01-07 09:02:17 -08:00
|
|
|
|
2016-12-19 13:29:49 -08:00
|
|
|
SampleCount uint64
|
2017-01-07 09:02:17 -08:00
|
|
|
SeriesCount uint64
|
|
|
|
ChunkCount uint64
|
|
|
|
|
|
|
|
mtx sync.RWMutex
|
2016-12-19 13:29:49 -08:00
|
|
|
}
|
|
|
|
|
2016-12-08 08:43:10 -08:00
|
|
|
const (
|
|
|
|
flagNone = 0
|
|
|
|
flagStd = 1
|
|
|
|
)
|
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
type persistedBlock struct {
|
2017-01-10 06:28:22 -08:00
|
|
|
dir string
|
|
|
|
stats *BlockStats
|
2017-01-03 01:09:20 -08:00
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
chunksf, indexf *mmapFile
|
|
|
|
|
2017-01-02 02:12:28 -08:00
|
|
|
chunkr *seriesReader
|
|
|
|
indexr *indexReader
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
2017-01-10 06:28:22 -08:00
|
|
|
func newPersistedBlock(dir string) (*persistedBlock, error) {
|
2016-12-15 07:14:33 -08:00
|
|
|
// TODO(fabxc): validate match of name and stats time, validate magic.
|
2016-12-14 23:31:26 -08:00
|
|
|
|
|
|
|
// mmap files belonging to the block.
|
2017-01-10 06:28:22 -08:00
|
|
|
chunksf, err := openMmapFile(chunksFileName(dir))
|
2016-12-14 23:31:26 -08:00
|
|
|
if err != nil {
|
2017-01-03 06:43:26 -08:00
|
|
|
return nil, errors.Wrap(err, "open chunk file")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
2017-01-10 06:28:22 -08:00
|
|
|
indexf, err := openMmapFile(indexFileName(dir))
|
2016-12-14 23:31:26 -08:00
|
|
|
if err != nil {
|
2017-01-03 06:43:26 -08:00
|
|
|
return nil, errors.Wrap(err, "open index file")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
sr, err := newSeriesReader(chunksf.b)
|
|
|
|
if err != nil {
|
2017-01-03 06:43:26 -08:00
|
|
|
return nil, errors.Wrap(err, "create series reader")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
ir, err := newIndexReader(sr, indexf.b)
|
|
|
|
if err != nil {
|
2017-01-03 06:43:26 -08:00
|
|
|
return nil, errors.Wrap(err, "create index reader")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
stats, err := ir.Stats()
|
|
|
|
if err != nil {
|
2017-01-03 06:43:26 -08:00
|
|
|
return nil, errors.Wrap(err, "read stats")
|
2016-12-15 07:14:33 -08:00
|
|
|
}
|
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
pb := &persistedBlock{
|
2017-01-10 06:28:22 -08:00
|
|
|
dir: dir,
|
2016-12-15 07:14:33 -08:00
|
|
|
chunksf: chunksf,
|
|
|
|
indexf: indexf,
|
2017-01-02 02:12:28 -08:00
|
|
|
chunkr: sr,
|
|
|
|
indexr: ir,
|
2017-01-10 06:28:22 -08:00
|
|
|
stats: &stats,
|
2016-12-14 23:31:26 -08: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-10 06:28:22 -08:00
|
|
|
func (pb *persistedBlock) Dir() string { return pb.dir }
|
|
|
|
func (pb *persistedBlock) Persisted() bool { return true }
|
|
|
|
func (pb *persistedBlock) Index() IndexReader { return pb.indexr }
|
|
|
|
func (pb *persistedBlock) Series() SeriesReader { return pb.chunkr }
|
|
|
|
func (pb *persistedBlock) Stats() BlockStats { return *pb.stats }
|
2016-12-15 07:14:33 -08:00
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
func chunksFileName(path string) string {
|
2017-01-06 04:13:22 -08:00
|
|
|
return filepath.Join(path, "chunks-000")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func indexFileName(path string) string {
|
2017-01-06 04:13:22 -08:00
|
|
|
return filepath.Join(path, "index-000")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
type mmapFile struct {
|
2017-01-03 01:09:20 -08:00
|
|
|
f *fileutil.LockedFile
|
2016-12-14 23:31:26 -08:00
|
|
|
b []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func openMmapFile(path string) (*mmapFile, error) {
|
2017-01-18 23:40:15 -08:00
|
|
|
// We have to open the file in RDWR for the lock to work with fileutil.
|
|
|
|
// TODO(fabxc): use own flock call that supports multi-reader.
|
|
|
|
f, err := fileutil.TryLockFile(path, os.O_RDWR, 0666)
|
2016-12-14 23:31:26 -08:00
|
|
|
if err != nil {
|
2017-01-18 23:40:15 -08:00
|
|
|
return nil, errors.Wrap(err, "try lock file")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
info, err := f.Stat()
|
|
|
|
if err != nil {
|
2017-01-18 23:40:15 -08:00
|
|
|
return nil, errors.Wrap(err, "stat")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
2017-01-03 01:09:20 -08:00
|
|
|
b, err := mmap(f.File, int(info.Size()))
|
2016-12-14 23:31:26 -08:00
|
|
|
if err != nil {
|
2017-01-18 23:40:15 -08:00
|
|
|
return nil, errors.Wrap(err, "mmap")
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-12-08 08:43:10 -08:00
|
|
|
// 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
|
|
|
|
}
|