2016-12-04 04:16:11 -08:00
|
|
|
package tsdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/fabxc/tsdb/chunks"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HeadBlock handles reads and writes of time series data within a time window.
|
|
|
|
type HeadBlock struct {
|
2016-12-09 01:41:51 -08:00
|
|
|
mtx sync.RWMutex
|
|
|
|
descs map[uint64][]*chunkDesc // labels hash to possible chunks descs
|
|
|
|
index *memIndex
|
2016-12-07 08:10:49 -08:00
|
|
|
|
2016-12-09 01:00:14 -08:00
|
|
|
samples uint64 // total samples in the block.
|
2016-12-04 04:16:11 -08:00
|
|
|
}
|
|
|
|
|
2016-12-09 01:41:51 -08:00
|
|
|
func NewHeadBlock() *HeadBlock {
|
|
|
|
return &HeadBlock{
|
|
|
|
descs: make(map[uint64][]*chunkDesc, 2048),
|
|
|
|
index: newMemIndex(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-09 01:00:14 -08:00
|
|
|
func (h *HeadBlock) get(hash uint64, lset Labels) *chunkDesc {
|
2016-12-04 04:16:11 -08:00
|
|
|
cds := h.descs[hash]
|
|
|
|
for _, cd := range cds {
|
|
|
|
if 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-09 01:41:51 -08:00
|
|
|
h.index.add(cd)
|
2016-12-04 04:16:11 -08:00
|
|
|
|
|
|
|
h.descs[hash] = append(cds, cd)
|
2016-12-09 01:00:14 -08:00
|
|
|
return cd
|
2016-12-04 04:16:11 -08:00
|
|
|
}
|
|
|
|
|
2016-12-09 01:00:14 -08:00
|
|
|
// append adds the sample to the headblock.
|
|
|
|
func (h *HeadBlock) append(hash uint64, lset Labels, ts int64, v float64) error {
|
|
|
|
if err := h.get(hash, lset).append(ts, v); err != nil {
|
2016-12-07 08:10:49 -08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
h.samples++
|
|
|
|
return nil
|
2016-12-04 04:16:11 -08:00
|
|
|
}
|
2016-12-08 08:43:10 -08:00
|
|
|
|
2016-12-09 01:41:51 -08:00
|
|
|
func (h *HeadBlock) stats() *blockStats {
|
|
|
|
return &blockStats{
|
|
|
|
series: uint32(h.index.numSeries()),
|
2016-12-09 01:00:14 -08:00
|
|
|
samples: h.samples,
|
|
|
|
}
|
2016-12-08 08:43:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HeadBlock) seriesData() seriesDataIterator {
|
|
|
|
h.mtx.RLock()
|
|
|
|
defer h.mtx.RUnlock()
|
|
|
|
|
|
|
|
it := &chunkDescsIterator{
|
2016-12-09 01:41:51 -08:00
|
|
|
descs: make([]*chunkDesc, 0, len(h.index.forward)),
|
2016-12-08 08:43:10 -08:00
|
|
|
i: -1,
|
|
|
|
}
|
|
|
|
|
2016-12-09 01:41:51 -08:00
|
|
|
for _, cd := range h.index.forward {
|
2016-12-08 08:43:10 -08:00
|
|
|
it.descs = append(it.descs, cd)
|
|
|
|
}
|
|
|
|
return it
|
|
|
|
}
|
|
|
|
|
|
|
|
type chunkDescsIterator struct {
|
|
|
|
descs []*chunkDesc
|
|
|
|
i int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *chunkDescsIterator) next() bool {
|
|
|
|
it.i++
|
|
|
|
return it.i < len(it.descs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *chunkDescsIterator) values() (skiplist, []chunks.Chunk) {
|
|
|
|
return &simpleSkiplist{}, []chunks.Chunk{it.descs[it.i].chunk}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *chunkDescsIterator) err() error {
|
|
|
|
return nil
|
|
|
|
}
|