influxdb/tsdb/series_file.go

421 lines
11 KiB
Go
Raw Normal View History

2017-11-15 23:09:25 +00:00
package tsdb
2017-09-14 15:41:58 +00:00
import (
"bytes"
"encoding/binary"
2018-01-08 16:11:29 +00:00
"errors"
2017-09-14 15:41:58 +00:00
"fmt"
"os"
2017-11-15 23:09:25 +00:00
"path/filepath"
2018-01-09 19:05:37 +00:00
"sort"
2017-09-14 15:41:58 +00:00
2018-01-09 19:05:37 +00:00
"github.com/cespare/xxhash"
2017-09-14 15:41:58 +00:00
"github.com/influxdata/influxdb/models"
2018-01-09 19:05:37 +00:00
"github.com/influxdata/influxdb/pkg/binaryutil"
2018-01-02 19:20:03 +00:00
"go.uber.org/zap"
2018-01-09 19:05:37 +00:00
"golang.org/x/sync/errgroup"
2017-09-14 15:41:58 +00:00
)
2018-01-08 16:11:29 +00:00
var (
2018-01-09 19:05:37 +00:00
ErrSeriesFileClosed = errors.New("tsdb: series file closed")
ErrInvalidSeriesPartitionID = errors.New("tsdb: invalid series partition id")
2018-01-08 16:11:29 +00:00
)
2017-11-30 17:23:03 +00:00
// SeriesIDSize is the size in bytes of a series key ID.
2017-09-26 13:40:26 +00:00
const SeriesIDSize = 8
2017-09-14 15:41:58 +00:00
2018-01-09 19:05:37 +00:00
const (
// SeriesFilePartitionN is the number of partitions a series file is split into.
SeriesFilePartitionN = 8
)
2017-10-02 14:07:11 +00:00
2017-09-14 15:41:58 +00:00
// SeriesFile represents the section of the index that holds series data.
type SeriesFile struct {
2018-01-09 19:05:37 +00:00
path string
partitions []*SeriesPartition
2018-01-02 19:20:03 +00:00
Logger *zap.Logger
2017-09-14 15:41:58 +00:00
}
// NewSeriesFile returns a new instance of SeriesFile.
func NewSeriesFile(path string) *SeriesFile {
return &SeriesFile{
2018-01-09 19:05:37 +00:00
path: path,
Logger: zap.NewNop(),
2017-09-14 15:41:58 +00:00
}
}
// Open memory maps the data file at the file's path.
func (f *SeriesFile) Open() error {
2017-12-29 18:57:30 +00:00
// Create path if it doesn't exist.
if err := os.MkdirAll(filepath.Join(f.path), 0777); err != nil {
2017-11-15 23:09:25 +00:00
return err
}
2018-01-09 19:05:37 +00:00
// Open partitions.
f.partitions = make([]*SeriesPartition, 0, SeriesFilePartitionN)
for i := 0; i < SeriesFilePartitionN; i++ {
p := NewSeriesPartition(i, f.SeriesPartitionPath(i))
p.Logger = f.Logger.With(zap.Int("partition", p.ID()))
if err := p.Open(); err != nil {
f.Close()
2017-12-19 17:31:33 +00:00
return err
}
2018-01-09 19:05:37 +00:00
f.partitions = append(f.partitions, p)
2017-09-14 15:41:58 +00:00
}
return nil
}
// Close unmaps the data file.
2017-12-29 18:57:30 +00:00
func (f *SeriesFile) Close() (err error) {
2018-01-09 19:05:37 +00:00
for _, p := range f.partitions {
if e := p.Close(); e != nil && err == nil {
2017-12-29 18:57:30 +00:00
err = e
}
2017-09-14 15:41:58 +00:00
}
2018-01-09 19:05:37 +00:00
f.partitions = nil
2017-12-29 18:57:30 +00:00
return err
2017-09-14 15:41:58 +00:00
}
// Path returns the path to the file.
func (f *SeriesFile) Path() string { return f.path }
2018-01-09 19:05:37 +00:00
// SeriesPartitionPath returns the path to a given partition.
func (f *SeriesFile) SeriesPartitionPath(i int) string {
return filepath.Join(f.path, fmt.Sprintf("%02x", i))
}
// Partitions returns all partitions.
func (f *SeriesFile) Partitions() []*SeriesPartition { return f.partitions }
2017-12-29 18:57:30 +00:00
2018-01-03 19:19:02 +00:00
// CreateSeriesListIfNotExists creates a list of series in bulk if they don't exist.
// The returned ids list returns values for new series and zero for existing series.
2017-12-19 17:31:33 +00:00
func (f *SeriesFile) CreateSeriesListIfNotExists(names [][]byte, tagsSlice []models.Tags, buf []byte) (ids []uint64, err error) {
2018-01-09 19:05:37 +00:00
keys := GenerateSeriesKeys(names, tagsSlice)
keyPartitionIDs := f.SeriesKeysPartitionIDs(keys)
ids = make([]uint64, len(keys))
var g errgroup.Group
for i := range f.partitions {
p := f.partitions[i]
g.Go(func() error {
return p.CreateSeriesListIfNotExists(keys, keyPartitionIDs, ids)
})
}
if err := g.Wait(); err != nil {
return nil, err
2018-01-02 19:20:03 +00:00
}
2017-12-19 17:31:33 +00:00
return ids, nil
}
2017-10-02 14:07:11 +00:00
2017-10-26 19:55:00 +00:00
// DeleteSeriesID flags a series as permanently deleted.
2017-12-19 17:31:33 +00:00
// If the series is reintroduced later then it must create a new id.
func (f *SeriesFile) DeleteSeriesID(id uint64) error {
2018-01-09 19:05:37 +00:00
p := f.SeriesIDPartition(id)
if p == nil {
return ErrInvalidSeriesPartitionID
2017-10-26 19:55:00 +00:00
}
2018-01-09 19:05:37 +00:00
return p.DeleteSeriesID(id)
2017-10-25 13:29:44 +00:00
}
2017-10-26 19:55:00 +00:00
// IsDeleted returns true if the ID has been deleted before.
2017-12-19 17:31:33 +00:00
func (f *SeriesFile) IsDeleted(id uint64) bool {
2018-01-09 19:05:37 +00:00
p := f.SeriesIDPartition(id)
if p == nil {
2018-01-08 16:11:29 +00:00
return false
}
2018-01-09 19:05:37 +00:00
return p.IsDeleted(id)
2017-09-25 15:31:20 +00:00
}
2017-12-19 17:31:33 +00:00
// SeriesKey returns the series key for a given id.
func (f *SeriesFile) SeriesKey(id uint64) []byte {
if id == 0 {
2017-09-14 15:41:58 +00:00
return nil
}
2018-01-09 19:05:37 +00:00
p := f.SeriesIDPartition(id)
if p == nil {
2018-01-08 16:11:29 +00:00
return nil
}
2018-01-09 19:05:37 +00:00
return p.SeriesKey(id)
2017-09-17 18:06:37 +00:00
}
// Series returns the parsed series name and tags for an offset.
2017-12-19 17:31:33 +00:00
func (f *SeriesFile) Series(id uint64) ([]byte, models.Tags) {
key := f.SeriesKey(id)
2017-09-17 18:06:37 +00:00
if key == nil {
return nil, nil
}
return ParseSeriesKey(key)
2017-09-14 15:41:58 +00:00
}
2017-12-19 17:31:33 +00:00
// SeriesID return the series id for the series.
func (f *SeriesFile) SeriesID(name []byte, tags models.Tags, buf []byte) uint64 {
2018-01-09 19:05:37 +00:00
key := AppendSeriesKey(buf[:0], name, tags)
keyPartition := f.SeriesKeyPartition(key)
if keyPartition == nil {
2018-01-08 16:11:29 +00:00
return 0
}
2018-01-09 19:05:37 +00:00
return keyPartition.FindIDBySeriesKey(key)
2017-12-19 17:31:33 +00:00
}
2017-09-14 15:41:58 +00:00
// HasSeries return true if the series exists.
func (f *SeriesFile) HasSeries(name []byte, tags models.Tags, buf []byte) bool {
2017-12-29 18:57:30 +00:00
return f.SeriesID(name, tags, buf) > 0
2017-09-14 15:41:58 +00:00
}
// SeriesCount returns the number of series.
2017-09-26 13:40:26 +00:00
func (f *SeriesFile) SeriesCount() uint64 {
2018-01-09 19:05:37 +00:00
var n uint64
for _, p := range f.partitions {
n += p.SeriesCount()
2018-01-08 16:11:29 +00:00
}
2017-10-02 14:07:11 +00:00
return n
2017-09-14 15:41:58 +00:00
}
// SeriesIterator returns an iterator over all the series.
2017-11-15 23:09:25 +00:00
func (f *SeriesFile) SeriesIDIterator() SeriesIDIterator {
2017-12-20 22:13:34 +00:00
var ids []uint64
2018-01-09 19:05:37 +00:00
for _, p := range f.partitions {
ids = p.AppendSeriesIDs(ids)
2017-11-22 15:30:02 +00:00
}
2018-01-09 19:05:37 +00:00
sort.Sort(uint64Slice(ids))
2017-12-29 18:57:30 +00:00
return NewSeriesIDSliceIterator(ids)
2017-12-19 17:31:33 +00:00
}
2017-11-22 15:30:02 +00:00
2018-01-09 19:05:37 +00:00
func (f *SeriesFile) SeriesIDPartitionID(id uint64) int {
return int(id & 0xFF)
2017-12-20 22:13:34 +00:00
}
2018-01-09 19:05:37 +00:00
func (f *SeriesFile) SeriesIDPartition(id uint64) *SeriesPartition {
partitionID := f.SeriesIDPartitionID(id)
if partitionID >= len(f.partitions) {
return nil
2017-12-20 22:13:34 +00:00
}
2018-01-09 19:05:37 +00:00
return f.partitions[partitionID]
2017-12-27 15:09:36 +00:00
}
2018-01-09 19:05:37 +00:00
func (f *SeriesFile) SeriesKeysPartitionIDs(keys [][]byte) []int {
partitionIDs := make([]int, len(keys))
for i := range keys {
partitionIDs[i] = f.SeriesKeyPartitionID(keys[i])
2017-12-20 22:13:34 +00:00
}
2018-01-09 19:05:37 +00:00
return partitionIDs
2017-11-22 15:30:02 +00:00
}
2018-01-09 19:05:37 +00:00
func (f *SeriesFile) SeriesKeyPartitionID(key []byte) int {
return int(xxhash.Sum64(key) % SeriesFilePartitionN)
2017-12-19 17:31:33 +00:00
}
2017-10-02 14:07:11 +00:00
2018-01-09 19:05:37 +00:00
func (f *SeriesFile) SeriesKeyPartition(key []byte) *SeriesPartition {
partitionID := f.SeriesKeyPartitionID(key)
if partitionID >= len(f.partitions) {
2017-12-29 18:57:30 +00:00
return nil
2017-10-02 14:07:11 +00:00
}
2018-01-09 19:05:37 +00:00
return f.partitions[partitionID]
2017-10-02 14:07:11 +00:00
}
2017-09-14 15:41:58 +00:00
// AppendSeriesKey serializes name and tags to a byte slice.
// The total length is prepended as a uvarint.
func AppendSeriesKey(dst []byte, name []byte, tags models.Tags) []byte {
2017-09-26 13:40:26 +00:00
buf := make([]byte, binary.MaxVarintLen64)
2017-09-14 15:41:58 +00:00
origLen := len(dst)
// The tag count is variable encoded, so we need to know ahead of time what
// the size of the tag count value will be.
2017-09-26 13:40:26 +00:00
tcBuf := make([]byte, binary.MaxVarintLen64)
2017-09-14 15:41:58 +00:00
tcSz := binary.PutUvarint(tcBuf, uint64(len(tags)))
// Size of name/tags. Does not include total length.
size := 0 + //
2 + // size of measurement
len(name) + // measurement
tcSz + // size of number of tags
(4 * len(tags)) + // length of each tag key and value
tags.Size() // size of tag keys/values
// Variable encode length.
totalSz := binary.PutUvarint(buf, uint64(size))
// If caller doesn't provide a buffer then pre-allocate an exact one.
if dst == nil {
dst = make([]byte, 0, size+totalSz)
}
// Append total length.
dst = append(dst, buf[:totalSz]...)
// Append name.
binary.BigEndian.PutUint16(buf, uint16(len(name)))
dst = append(dst, buf[:2]...)
dst = append(dst, name...)
// Append tag count.
dst = append(dst, tcBuf[:tcSz]...)
// Append tags.
for _, tag := range tags {
binary.BigEndian.PutUint16(buf, uint16(len(tag.Key)))
dst = append(dst, buf[:2]...)
dst = append(dst, tag.Key...)
binary.BigEndian.PutUint16(buf, uint16(len(tag.Value)))
dst = append(dst, buf[:2]...)
dst = append(dst, tag.Value...)
}
// Verify that the total length equals the encoded byte count.
if got, exp := len(dst)-origLen, size+totalSz; got != exp {
panic(fmt.Sprintf("series key encoding does not match calculated total length: actual=%d, exp=%d, key=%x", got, exp, dst))
}
return dst
}
// ReadSeriesKey returns the series key from the beginning of the buffer.
2017-09-18 19:03:47 +00:00
func ReadSeriesKey(data []byte) (key, remainder []byte) {
2017-09-14 15:41:58 +00:00
sz, n := binary.Uvarint(data)
2017-09-18 19:03:47 +00:00
return data[:int(sz)+n], data[int(sz)+n:]
2017-09-14 15:41:58 +00:00
}
func ReadSeriesKeyLen(data []byte) (sz int, remainder []byte) {
2017-09-17 18:06:37 +00:00
sz64, i := binary.Uvarint(data)
return int(sz64), data[i:]
2017-09-14 15:41:58 +00:00
}
func ReadSeriesKeyMeasurement(data []byte) (name, remainder []byte) {
2017-09-17 18:06:37 +00:00
n, data := binary.BigEndian.Uint16(data), data[2:]
2017-09-14 15:41:58 +00:00
return data[:n], data[n:]
}
func ReadSeriesKeyTagN(data []byte) (n int, remainder []byte) {
2017-09-17 18:06:37 +00:00
n64, i := binary.Uvarint(data)
return int(n64), data[i:]
2017-09-14 15:41:58 +00:00
}
func ReadSeriesKeyTag(data []byte) (key, value, remainder []byte) {
n, data := binary.BigEndian.Uint16(data), data[2:]
key, data = data[:n], data[n:]
n, data = binary.BigEndian.Uint16(data), data[2:]
value, data = data[:n], data[n:]
return key, value, data
}
2017-09-17 18:06:37 +00:00
// ParseSeriesKey extracts the name & tags from a series key.
func ParseSeriesKey(data []byte) (name []byte, tags models.Tags) {
2017-09-14 15:41:58 +00:00
_, data = ReadSeriesKeyLen(data)
2017-09-17 18:06:37 +00:00
name, data = ReadSeriesKeyMeasurement(data)
2017-09-14 15:41:58 +00:00
tagN, data := ReadSeriesKeyTagN(data)
2017-09-17 18:06:37 +00:00
tags = make(models.Tags, tagN)
2017-09-14 15:41:58 +00:00
for i := 0; i < tagN; i++ {
var key, value []byte
key, value, data = ReadSeriesKeyTag(data)
tags[i] = models.Tag{Key: key, Value: value}
}
2017-09-17 18:06:37 +00:00
return name, tags
2017-09-14 15:41:58 +00:00
}
func CompareSeriesKeys(a, b []byte) int {
// Handle 'nil' keys.
if len(a) == 0 && len(b) == 0 {
return 0
} else if len(a) == 0 {
return -1
} else if len(b) == 0 {
return 1
}
// Read total size.
2017-09-17 18:06:37 +00:00
_, a = ReadSeriesKeyLen(a)
_, b = ReadSeriesKeyLen(b)
2017-09-14 15:41:58 +00:00
// Read names.
name0, a := ReadSeriesKeyMeasurement(a)
name1, b := ReadSeriesKeyMeasurement(b)
// Compare names, return if not equal.
if cmp := bytes.Compare(name0, name1); cmp != 0 {
return cmp
}
// Read tag counts.
tagN0, a := ReadSeriesKeyTagN(a)
tagN1, b := ReadSeriesKeyTagN(b)
// Compare each tag in order.
2017-09-17 18:06:37 +00:00
for i := 0; ; i++ {
2017-09-14 15:41:58 +00:00
// Check for EOF.
if i == tagN0 && i == tagN1 {
return 0
} else if i == tagN0 {
return -1
} else if i == tagN1 {
return 1
}
// Read keys.
var key0, key1, value0, value1 []byte
key0, value0, a = ReadSeriesKeyTag(a)
key1, value1, b = ReadSeriesKeyTag(b)
// Compare keys & values.
if cmp := bytes.Compare(key0, key1); cmp != 0 {
return cmp
} else if cmp := bytes.Compare(value0, value1); cmp != 0 {
return cmp
}
}
}
2018-01-09 19:05:37 +00:00
// GenerateSeriesKeys generates series keys for a list of names & tags using
// a single large memory block.
func GenerateSeriesKeys(names [][]byte, tagsSlice []models.Tags) [][]byte {
buf := make([]byte, 0, SeriesKeysSize(names, tagsSlice))
keys := make([][]byte, len(names))
for i := range names {
offset := len(buf)
buf = AppendSeriesKey(buf, names[i], tagsSlice[i])
keys[i] = buf[offset:]
2017-10-02 14:07:11 +00:00
}
2018-01-09 19:05:37 +00:00
return keys
2017-12-21 21:50:07 +00:00
}
2018-01-09 19:05:37 +00:00
// SeriesKeysSize returns the number of bytes required to encode a list of name/tags.
func SeriesKeysSize(names [][]byte, tagsSlice []models.Tags) int {
var n int
for i := range names {
n += SeriesKeySize(names[i], tagsSlice[i])
2017-12-27 15:09:36 +00:00
}
2018-01-09 19:05:37 +00:00
return n
2017-12-27 15:09:36 +00:00
}
2017-10-02 14:07:11 +00:00
2018-01-09 19:05:37 +00:00
// SeriesKeySize returns the number of bytes required to encode a series key.
func SeriesKeySize(name []byte, tags models.Tags) int {
var n int
n += 2 + len(name)
n += binaryutil.UvarintSize(uint64(len(tags)))
for _, tag := range tags {
n += 2 + len(tag.Key)
n += 2 + len(tag.Value)
2017-12-27 15:09:36 +00:00
}
2018-01-09 19:05:37 +00:00
n += binaryutil.UvarintSize(uint64(n))
return n
2017-12-27 15:09:36 +00:00
}
2018-01-09 19:05:37 +00:00
type seriesKeys [][]byte
2017-10-02 14:07:11 +00:00
2018-01-09 19:05:37 +00:00
func (a seriesKeys) Len() int { return len(a) }
func (a seriesKeys) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a seriesKeys) Less(i, j int) bool {
return CompareSeriesKeys(a[i], a[j]) == -1
2017-10-02 14:07:11 +00:00
}
2018-01-09 19:05:37 +00:00
type uint64Slice []uint64
func (a uint64Slice) Len() int { return len(a) }
func (a uint64Slice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a uint64Slice) Less(i, j int) bool { return a[i] < a[j] }