2016-12-04 04:16:11 -08:00
|
|
|
package tsdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
2016-12-19 13:37:03 -08:00
|
|
|
"os"
|
2016-12-14 09:38:46 -08:00
|
|
|
"sort"
|
2016-12-04 04:16:11 -08:00
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/fabxc/tsdb/chunks"
|
2016-12-21 00:39:01 -08:00
|
|
|
"github.com/fabxc/tsdb/labels"
|
2016-12-04 04:16:11 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
// HeadBlock handles reads and writes of time series data within a time window.
|
|
|
|
type HeadBlock struct {
|
2016-12-21 16:12:28 -08:00
|
|
|
mtx sync.RWMutex
|
|
|
|
|
|
|
|
// descs holds all chunk descs for the head block. Each chunk implicitly
|
|
|
|
// is assigned the index as its ID.
|
|
|
|
descs []*chunkDesc
|
|
|
|
// hashes contains a collision map of label set hashes of chunks
|
|
|
|
// to their position in the chunk desc slice.
|
|
|
|
hashes map[uint64][]int
|
|
|
|
|
|
|
|
symbols []string // all seen strings
|
|
|
|
values map[string]stringset // label names to possible values
|
|
|
|
postings *memPostings // postings lists for terms
|
2016-12-07 08:10:49 -08:00
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
stats BlockStats
|
2016-12-04 04:16:11 -08:00
|
|
|
}
|
|
|
|
|
2016-12-09 04:41:38 -08:00
|
|
|
// NewHeadBlock creates a new empty head block.
|
|
|
|
func NewHeadBlock(baseTime int64) *HeadBlock {
|
2016-12-15 07:14:33 -08:00
|
|
|
b := &HeadBlock{
|
2016-12-21 16:12:28 -08:00
|
|
|
descs: []*chunkDesc{},
|
|
|
|
hashes: map[uint64][]int{},
|
|
|
|
values: map[string]stringset{},
|
|
|
|
postings: &memPostings{m: make(map[term][]uint32)},
|
2016-12-09 01:41:51 -08:00
|
|
|
}
|
2016-12-15 07:14:33 -08:00
|
|
|
b.stats.MinTime = baseTime
|
|
|
|
|
|
|
|
return b
|
2016-12-09 01:41:51 -08:00
|
|
|
}
|
|
|
|
|
2016-12-14 09:38:46 -08:00
|
|
|
// Querier returns a new querier over the head block.
|
|
|
|
func (h *HeadBlock) Querier(mint, maxt int64) Querier {
|
|
|
|
return newBlockQuerier(h, h, mint, maxt)
|
|
|
|
}
|
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
// Chunk returns the chunk for the reference number.
|
2016-12-14 09:38:46 -08:00
|
|
|
func (h *HeadBlock) Chunk(ref uint32) (chunks.Chunk, error) {
|
2016-12-21 16:12:28 -08:00
|
|
|
if int(ref) >= len(h.descs) {
|
2016-12-14 09:38:46 -08:00
|
|
|
return nil, errNotFound
|
|
|
|
}
|
2016-12-21 16:12:28 -08:00
|
|
|
return h.descs[int(ref)].chunk, nil
|
2016-12-14 09:38:46 -08:00
|
|
|
}
|
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
func (h *HeadBlock) interval() (int64, int64) {
|
|
|
|
return h.stats.MinTime, h.stats.MaxTime
|
|
|
|
}
|
|
|
|
|
2016-12-14 09:38:46 -08:00
|
|
|
// Stats returns statisitics about the indexed data.
|
2016-12-15 07:14:33 -08:00
|
|
|
func (h *HeadBlock) Stats() (BlockStats, error) {
|
|
|
|
return h.stats, nil
|
2016-12-14 09:38:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// LabelValues returns the possible label values
|
|
|
|
func (h *HeadBlock) LabelValues(names ...string) (StringTuples, error) {
|
|
|
|
if len(names) != 1 {
|
|
|
|
return nil, errInvalidSize
|
|
|
|
}
|
|
|
|
var sl []string
|
|
|
|
|
2016-12-21 16:12:28 -08:00
|
|
|
for s := range h.values[names[0]] {
|
2016-12-14 09:38:46 -08:00
|
|
|
sl = append(sl, s)
|
|
|
|
}
|
|
|
|
sort.Strings(sl)
|
|
|
|
|
|
|
|
t := &stringTuples{
|
|
|
|
l: len(names),
|
|
|
|
s: sl,
|
|
|
|
}
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Postings returns the postings list iterator for the label pair.
|
2016-12-14 12:58:29 -08:00
|
|
|
func (h *HeadBlock) Postings(name, value string) (Postings, error) {
|
2016-12-21 16:12:28 -08:00
|
|
|
return h.postings.get(term{name: name, value: value}), nil
|
2016-12-14 09:38:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Series returns the series for the given reference.
|
2016-12-16 03:13:17 -08:00
|
|
|
func (h *HeadBlock) Series(ref uint32, mint, maxt int64) (Series, error) {
|
2016-12-21 16:12:28 -08:00
|
|
|
if int(ref) >= len(h.descs) {
|
2016-12-14 09:38:46 -08:00
|
|
|
return nil, errNotFound
|
|
|
|
}
|
2016-12-21 16:12:28 -08:00
|
|
|
cd := h.descs[ref]
|
|
|
|
|
2016-12-16 03:13:17 -08:00
|
|
|
if !intervalOverlap(cd.firsTimestamp, cd.lastTimestamp, mint, maxt) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2016-12-19 03:26:25 -08:00
|
|
|
s := &chunkSeries{
|
2016-12-14 09:38:46 -08:00
|
|
|
labels: cd.lset,
|
2016-12-16 03:13:17 -08:00
|
|
|
chunks: []ChunkMeta{
|
|
|
|
{MinTime: h.stats.MinTime, Ref: 0},
|
2016-12-14 09:38:46 -08:00
|
|
|
},
|
|
|
|
chunk: func(ref uint32) (chunks.Chunk, error) {
|
|
|
|
return cd.chunk, nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
2016-12-04 04:16:11 -08:00
|
|
|
// get retrieves the chunk with the hash and label set and creates
|
|
|
|
// a new one if it doesn't exist yet.
|
2016-12-21 00:39:01 -08:00
|
|
|
func (h *HeadBlock) get(hash uint64, lset labels.Labels) *chunkDesc {
|
2016-12-21 16:12:28 -08:00
|
|
|
refs := h.hashes[hash]
|
|
|
|
|
|
|
|
for _, ref := range refs {
|
|
|
|
if cd := h.descs[ref]; cd.lset.Equals(lset) {
|
2016-12-09 01:00:14 -08:00
|
|
|
return cd
|
2016-12-04 04:16:11 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// None of the given chunks was for the series, create a new one.
|
|
|
|
cd := &chunkDesc{
|
|
|
|
lset: lset,
|
|
|
|
chunk: chunks.NewXORChunk(int(math.MaxInt64)),
|
|
|
|
}
|
2016-12-21 16:12:28 -08:00
|
|
|
// Index the new chunk.
|
|
|
|
ref := len(h.descs)
|
|
|
|
|
|
|
|
h.descs = append(h.descs, cd)
|
|
|
|
h.hashes[hash] = append(refs, ref)
|
|
|
|
|
|
|
|
// Add each label pair as a term to the inverted index.
|
|
|
|
terms := make([]term, 0, len(lset))
|
|
|
|
|
|
|
|
for _, l := range lset {
|
|
|
|
terms = append(terms, term{name: l.Name, value: l.Value})
|
|
|
|
|
|
|
|
valset, ok := h.values[l.Name]
|
|
|
|
if !ok {
|
|
|
|
valset = stringset{}
|
|
|
|
h.values[l.Name] = valset
|
|
|
|
}
|
|
|
|
valset.set(l.Value)
|
|
|
|
}
|
|
|
|
h.postings.add(uint32(ref), terms...)
|
2016-12-04 04:16:11 -08:00
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
// For the head block there's exactly one chunk per series.
|
|
|
|
h.stats.ChunkCount++
|
|
|
|
h.stats.SeriesCount++
|
|
|
|
|
2016-12-09 01:00:14 -08:00
|
|
|
return cd
|
2016-12-04 04:16:11 -08:00
|
|
|
}
|
|
|
|
|
2016-12-21 16:12:28 -08:00
|
|
|
func (h *HeadBlock) appendBatch(samples []hashedSample) error {
|
|
|
|
var merr MultiError
|
|
|
|
|
|
|
|
for _, s := range samples {
|
|
|
|
merr.Add(h.append(s.hash, s.labels, s.t, s.v))
|
|
|
|
}
|
|
|
|
|
|
|
|
return merr.Err()
|
|
|
|
}
|
|
|
|
|
2016-12-09 01:00:14 -08:00
|
|
|
// append adds the sample to the headblock.
|
2016-12-21 00:39:01 -08:00
|
|
|
func (h *HeadBlock) append(hash uint64, lset labels.Labels, ts int64, v float64) error {
|
2016-12-09 01:00:14 -08:00
|
|
|
if err := h.get(hash, lset).append(ts, v); err != nil {
|
2016-12-07 08:10:49 -08:00
|
|
|
return err
|
|
|
|
}
|
2016-12-08 08:43:10 -08:00
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
h.stats.SampleCount++
|
2016-12-10 09:08:50 -08:00
|
|
|
|
2016-12-15 07:14:33 -08:00
|
|
|
if ts > h.stats.MaxTime {
|
|
|
|
h.stats.MaxTime = ts
|
2016-12-09 01:00:14 -08:00
|
|
|
}
|
2016-12-15 07:14:33 -08:00
|
|
|
|
|
|
|
return nil
|
2016-12-08 08:43:10 -08:00
|
|
|
}
|
2016-12-18 05:43:27 -08:00
|
|
|
|
2016-12-19 13:37:03 -08:00
|
|
|
func (h *HeadBlock) persist(p string) (int64, error) {
|
|
|
|
sf, err := os.Create(chunksFileName(p))
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
xf, err := os.Create(indexFileName(p))
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
iw := newIndexWriter(xf)
|
|
|
|
sw := newSeriesWriter(sf, iw, h.stats.MinTime)
|
|
|
|
|
|
|
|
defer sw.Close()
|
|
|
|
defer iw.Close()
|
|
|
|
|
2016-12-21 16:12:28 -08:00
|
|
|
for ref, cd := range h.descs {
|
|
|
|
if err := sw.WriteSeries(uint32(ref), cd.lset, []*chunkDesc{cd}); err != nil {
|
2016-12-19 13:37:03 -08:00
|
|
|
return 0, err
|
2016-12-18 05:43:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := iw.WriteStats(h.stats); err != nil {
|
2016-12-19 13:37:03 -08:00
|
|
|
return 0, err
|
2016-12-18 05:43:27 -08:00
|
|
|
}
|
2016-12-21 16:12:28 -08:00
|
|
|
for n, v := range h.values {
|
2016-12-18 05:43:27 -08:00
|
|
|
s := make([]string, 0, len(v))
|
|
|
|
for x := range v {
|
|
|
|
s = append(s, x)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := iw.WriteLabelIndex([]string{n}, s); err != nil {
|
2016-12-19 13:37:03 -08:00
|
|
|
return 0, err
|
2016-12-18 05:43:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-21 16:12:28 -08:00
|
|
|
for t := range h.postings.m {
|
|
|
|
if err := iw.WritePostings(t.name, t.value, h.postings.get(t)); err != nil {
|
2016-12-19 13:37:03 -08:00
|
|
|
return 0, err
|
2016-12-18 05:43:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-19 13:37:03 -08:00
|
|
|
return iw.Size() + sw.Size(), nil
|
2016-12-18 05:43:27 -08:00
|
|
|
}
|