2017-04-10 11:59:45 -07:00
|
|
|
// Copyright 2017 The Prometheus Authors
|
2017-06-06 05:45:54 -07:00
|
|
|
|
2017-04-10 11:59:45 -07:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-12-08 08:43:10 -08:00
|
|
|
package tsdb
|
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
import (
|
2017-01-19 02:22:47 -08:00
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
2016-12-14 23:31:26 -08:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-12-22 06:54:39 -08:00
|
|
|
|
2017-02-27 01:46:15 -08:00
|
|
|
"github.com/oklog/ulid"
|
2016-12-22 06:54:39 -08:00
|
|
|
"github.com/pkg/errors"
|
2017-08-08 08:35:34 -07:00
|
|
|
"github.com/prometheus/tsdb/chunks"
|
2017-05-14 02:06:26 -07:00
|
|
|
"github.com/prometheus/tsdb/labels"
|
2016-12-08 08:43:10 -08:00
|
|
|
)
|
|
|
|
|
2017-03-20 00:41:56 -07:00
|
|
|
type DiskBlock interface {
|
2017-08-28 15:39:17 -07:00
|
|
|
BlockReader
|
|
|
|
|
2017-01-19 02:22:47 -08:00
|
|
|
// Directory where block data is stored.
|
2017-01-10 06:28:22 -08:00
|
|
|
Dir() string
|
2017-01-19 02:22:47 -08:00
|
|
|
|
|
|
|
// Stats returns statistics about the block.
|
|
|
|
Meta() BlockMeta
|
|
|
|
|
2017-08-28 15:39:17 -07:00
|
|
|
Delete(mint, maxt int64, m ...labels.Matcher) error
|
|
|
|
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
|
|
|
type BlockReader interface {
|
2017-01-19 02:22:47 -08:00
|
|
|
// Index returns an IndexReader over the block's data.
|
2017-01-10 06:28:22 -08:00
|
|
|
Index() IndexReader
|
2017-01-19 02:22:47 -08:00
|
|
|
|
2017-04-28 06:41:42 -07:00
|
|
|
// Chunks returns a ChunkReader over the block's data.
|
2017-02-23 01:50:22 -08:00
|
|
|
Chunks() ChunkReader
|
2017-01-19 02:22:47 -08:00
|
|
|
|
2017-05-16 07:18:28 -07:00
|
|
|
// Tombstones returns a TombstoneReader over the block's deleted data.
|
|
|
|
Tombstones() TombstoneReader
|
2016-12-13 06:26:58 -08:00
|
|
|
}
|
2016-12-08 08:43:10 -08:00
|
|
|
|
2017-08-28 15:39:17 -07:00
|
|
|
// // Block is an interface to a DiskBlock that can also be queried.
|
|
|
|
// type Block interface {
|
|
|
|
// DiskBlock
|
|
|
|
// Queryable
|
|
|
|
// Snapshottable
|
|
|
|
// }
|
2017-06-05 01:18:31 -07:00
|
|
|
|
|
|
|
// Snapshottable defines an entity that can be backedup online.
|
|
|
|
type Snapshottable interface {
|
|
|
|
Snapshot(dir string) error
|
2017-03-20 00:41:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Appendable defines an entity to which data can be appended.
|
|
|
|
type Appendable interface {
|
|
|
|
// Appender returns a new Appender against an underlying store.
|
|
|
|
Appender() Appender
|
|
|
|
}
|
|
|
|
|
|
|
|
// Queryable defines an entity which provides a Querier.
|
|
|
|
type Queryable interface {
|
2017-03-20 02:21:21 -07:00
|
|
|
Querier(mint, maxt int64) Querier
|
2017-03-20 00:41:56 -07:00
|
|
|
}
|
|
|
|
|
2017-01-19 02:22:47 -08:00
|
|
|
// BlockMeta provides meta information about a block.
|
|
|
|
type BlockMeta struct {
|
2017-02-27 01:46:15 -08:00
|
|
|
// Unique identifier for the block and its contents. Changes on compaction.
|
|
|
|
ULID ulid.ULID `json:"ulid"`
|
|
|
|
|
2017-01-19 05:01:38 -08:00
|
|
|
// MinTime and MaxTime specify the time range all samples
|
2017-02-01 06:29:48 -08:00
|
|
|
// in the block are in.
|
|
|
|
MinTime int64 `json:"minTime"`
|
|
|
|
MaxTime int64 `json:"maxTime"`
|
2017-01-07 09:02:17 -08:00
|
|
|
|
2017-01-28 23:11:47 -08:00
|
|
|
// Stats about the contents of the block.
|
2017-06-07 00:52:20 -07:00
|
|
|
Stats BlockStats `json:"stats,omitempty"`
|
2017-01-19 10:45:52 -08:00
|
|
|
|
2017-01-28 23:11:47 -08:00
|
|
|
// Information on compactions the block was created from.
|
2017-06-07 00:52:20 -07:00
|
|
|
Compaction BlockMetaCompaction `json:"compaction"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// BlockStats contains stats about contents of a block.
|
|
|
|
type BlockStats struct {
|
|
|
|
NumSamples uint64 `json:"numSamples,omitempty"`
|
|
|
|
NumSeries uint64 `json:"numSeries,omitempty"`
|
|
|
|
NumChunks uint64 `json:"numChunks,omitempty"`
|
|
|
|
NumTombstones uint64 `json:"numTombstones,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// BlockMetaCompaction holds information about compactions a block went through.
|
|
|
|
type BlockMetaCompaction struct {
|
|
|
|
// Maximum number of compaction cycles any source block has
|
|
|
|
// gone through.
|
2017-08-09 02:10:29 -07:00
|
|
|
Level int `json:"level"`
|
2017-06-07 00:52:20 -07:00
|
|
|
// ULIDs of all source head blocks that went into the block.
|
|
|
|
Sources []ulid.ULID `json:"sources,omitempty"`
|
2016-12-19 13:29:49 -08:00
|
|
|
}
|
|
|
|
|
2016-12-08 08:43:10 -08:00
|
|
|
const (
|
|
|
|
flagNone = 0
|
|
|
|
flagStd = 1
|
|
|
|
)
|
|
|
|
|
2017-01-19 02:22:47 -08:00
|
|
|
type blockMeta struct {
|
2017-01-19 05:01:38 -08:00
|
|
|
Version int `json:"version"`
|
2017-01-19 22:58:19 -08:00
|
|
|
|
|
|
|
*BlockMeta
|
2017-01-19 02:22:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const metaFilename = "meta.json"
|
|
|
|
|
2017-01-19 05:01:38 -08:00
|
|
|
func readMetaFile(dir string) (*BlockMeta, error) {
|
|
|
|
b, err := ioutil.ReadFile(filepath.Join(dir, metaFilename))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var m blockMeta
|
|
|
|
|
|
|
|
if err := json.Unmarshal(b, &m); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if m.Version != 1 {
|
|
|
|
return nil, errors.Errorf("unexpected meta file version %d", m.Version)
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.BlockMeta, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeMetaFile(dir string, meta *BlockMeta) error {
|
2017-03-01 08:19:57 -08:00
|
|
|
// Make any changes to the file appear atomic.
|
|
|
|
path := filepath.Join(dir, metaFilename)
|
|
|
|
tmp := path + ".tmp"
|
|
|
|
|
|
|
|
f, err := os.Create(tmp)
|
2017-01-19 05:01:38 -08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(f)
|
|
|
|
enc.SetIndent("", "\t")
|
|
|
|
|
2017-04-28 06:45:30 -07:00
|
|
|
var merr MultiError
|
|
|
|
if merr.Add(enc.Encode(&blockMeta{Version: 1, BlockMeta: meta})); merr.Err() != nil {
|
|
|
|
merr.Add(f.Close())
|
2017-06-07 00:52:20 -07:00
|
|
|
return merr.Err()
|
2017-01-19 05:01:38 -08:00
|
|
|
}
|
|
|
|
if err := f.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-03-01 08:19:57 -08:00
|
|
|
return renameFile(tmp, path)
|
2017-01-19 05:01:38 -08:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:21:21 -07:00
|
|
|
type persistedBlock struct {
|
|
|
|
dir string
|
|
|
|
meta BlockMeta
|
|
|
|
|
|
|
|
chunkr *chunkReader
|
|
|
|
indexr *indexReader
|
2017-05-16 07:18:28 -07:00
|
|
|
|
2017-05-23 22:54:24 -07:00
|
|
|
tombstones tombstoneReader
|
2017-03-20 02:21:21 -07:00
|
|
|
}
|
|
|
|
|
2017-08-08 08:35:34 -07:00
|
|
|
func newPersistedBlock(dir string, pool chunks.Pool) (*persistedBlock, error) {
|
2017-01-19 10:45:52 -08:00
|
|
|
meta, err := readMetaFile(dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-12-14 23:31:26 -08:00
|
|
|
|
2017-08-08 08:35:34 -07:00
|
|
|
cr, err := newChunkReader(chunkDir(dir), pool)
|
2016-12-14 23:31:26 -08:00
|
|
|
if err != nil {
|
2017-02-23 01:50:22 -08:00
|
|
|
return nil, err
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
2017-02-24 22:24:20 -08:00
|
|
|
ir, err := newIndexReader(dir)
|
2016-12-14 23:31:26 -08:00
|
|
|
if err != nil {
|
2017-02-24 22:24:20 -08:00
|
|
|
return nil, err
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
2017-05-23 22:54:24 -07:00
|
|
|
tr, err := readTombstones(dir)
|
2017-05-16 07:18:28 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-18 23:22:15 -07:00
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
pb := &persistedBlock{
|
2017-05-26 08:56:31 -07:00
|
|
|
dir: dir,
|
|
|
|
meta: *meta,
|
|
|
|
chunkr: cr,
|
|
|
|
indexr: ir,
|
2017-05-23 22:54:24 -07:00
|
|
|
tombstones: tr,
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
return pb, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pb *persistedBlock) Close() error {
|
2017-02-27 01:46:15 -08:00
|
|
|
var merr MultiError
|
2016-12-14 23:31:26 -08:00
|
|
|
|
2017-02-27 01:46:15 -08:00
|
|
|
merr.Add(pb.chunkr.Close())
|
|
|
|
merr.Add(pb.indexr.Close())
|
|
|
|
|
|
|
|
return merr.Err()
|
2016-12-14 23:31:26 -08:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:41:43 -07:00
|
|
|
func (pb *persistedBlock) String() string {
|
2017-05-18 07:09:30 -07:00
|
|
|
return pb.meta.ULID.String()
|
2017-03-20 02:41:43 -07:00
|
|
|
}
|
|
|
|
|
2017-02-23 01:50:22 -08:00
|
|
|
func (pb *persistedBlock) Dir() string { return pb.dir }
|
|
|
|
func (pb *persistedBlock) Index() IndexReader { return pb.indexr }
|
|
|
|
func (pb *persistedBlock) Chunks() ChunkReader { return pb.chunkr }
|
2017-05-16 07:18:28 -07:00
|
|
|
func (pb *persistedBlock) Tombstones() TombstoneReader {
|
2017-05-23 22:54:24 -07:00
|
|
|
return pb.tombstones
|
2017-05-16 07:18:28 -07:00
|
|
|
}
|
|
|
|
func (pb *persistedBlock) Meta() BlockMeta { return pb.meta }
|
2016-12-15 07:14:33 -08:00
|
|
|
|
2017-05-14 02:06:26 -07:00
|
|
|
func (pb *persistedBlock) Delete(mint, maxt int64, ms ...labels.Matcher) error {
|
|
|
|
pr := newPostingsReader(pb.indexr)
|
|
|
|
p, absent := pr.Select(ms...)
|
|
|
|
|
|
|
|
ir := pb.indexr
|
|
|
|
|
|
|
|
// Choose only valid postings which have chunks in the time-range.
|
2017-08-25 01:11:46 -07:00
|
|
|
stones := map[uint32]Intervals{}
|
2017-05-14 02:06:26 -07:00
|
|
|
|
2017-08-05 04:31:48 -07:00
|
|
|
var lset labels.Labels
|
2017-08-06 11:41:24 -07:00
|
|
|
var chks []ChunkMeta
|
2017-08-05 04:31:48 -07:00
|
|
|
|
2017-05-14 02:06:26 -07:00
|
|
|
Outer:
|
|
|
|
for p.Next() {
|
2017-08-05 04:31:48 -07:00
|
|
|
err := ir.Series(p.At(), &lset, &chks)
|
2017-05-15 10:58:14 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-05-14 02:06:26 -07:00
|
|
|
|
|
|
|
for _, abs := range absent {
|
|
|
|
if lset.Get(abs) != "" {
|
|
|
|
continue Outer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-05 04:31:48 -07:00
|
|
|
for _, chk := range chks {
|
2017-05-19 12:05:50 -07:00
|
|
|
if intervalOverlap(mint, maxt, chk.MinTime, chk.MaxTime) {
|
2017-05-26 08:56:31 -07:00
|
|
|
// Delete only until the current vlaues and not beyond.
|
2017-08-05 04:31:48 -07:00
|
|
|
tmin, tmax := clampInterval(mint, maxt, chks[0].MinTime, chks[len(chks)-1].MaxTime)
|
2017-08-25 01:11:46 -07:00
|
|
|
stones[p.At()] = Intervals{{tmin, tmax}}
|
2017-05-15 10:58:14 -07:00
|
|
|
continue Outer
|
2017-05-14 02:06:26 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.Err() != nil {
|
|
|
|
return p.Err()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge the current and new tombstones.
|
2017-05-26 08:56:31 -07:00
|
|
|
for k, v := range stones {
|
|
|
|
pb.tombstones.add(k, v[0])
|
2017-05-23 22:54:24 -07:00
|
|
|
}
|
2017-05-14 02:06:26 -07:00
|
|
|
|
2017-05-26 04:01:45 -07:00
|
|
|
if err := writeTombstoneFile(pb.dir, pb.tombstones); err != nil {
|
2017-05-23 05:07:04 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-05-26 08:56:31 -07:00
|
|
|
pb.meta.Stats.NumTombstones = uint64(len(pb.tombstones))
|
2017-05-23 05:07:04 -07:00
|
|
|
return writeMetaFile(pb.dir, &pb.meta)
|
2017-05-15 10:58:14 -07:00
|
|
|
}
|
2017-05-14 02:06:26 -07:00
|
|
|
|
2017-06-06 05:45:54 -07:00
|
|
|
func (pb *persistedBlock) Snapshot(dir string) error {
|
|
|
|
blockDir := filepath.Join(dir, pb.meta.ULID.String())
|
|
|
|
if err := os.MkdirAll(blockDir, 0777); err != nil {
|
|
|
|
return errors.Wrap(err, "create snapshot block dir")
|
|
|
|
}
|
|
|
|
|
|
|
|
chunksDir := chunkDir(blockDir)
|
|
|
|
if err := os.MkdirAll(chunksDir, 0777); err != nil {
|
|
|
|
return errors.Wrap(err, "create snapshot chunk dir")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hardlink meta, index and tombstones
|
2017-06-06 07:53:20 -07:00
|
|
|
for _, fname := range []string{
|
|
|
|
metaFilename,
|
|
|
|
indexFilename,
|
|
|
|
tombstoneFilename,
|
|
|
|
} {
|
2017-06-06 05:45:54 -07:00
|
|
|
if err := os.Link(filepath.Join(pb.dir, fname), filepath.Join(blockDir, fname)); err != nil {
|
|
|
|
return errors.Wrapf(err, "create snapshot %s", fname)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hardlink the chunks
|
|
|
|
curChunkDir := chunkDir(pb.dir)
|
|
|
|
files, err := ioutil.ReadDir(curChunkDir)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "ReadDir the current chunk dir")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, f := range files {
|
|
|
|
err := os.Link(filepath.Join(curChunkDir, f.Name()), filepath.Join(chunksDir, f.Name()))
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "hardlink a chunk")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-02-27 01:46:15 -08:00
|
|
|
func chunkDir(dir string) string { return filepath.Join(dir, "chunks") }
|
|
|
|
func walDir(dir string) string { return filepath.Join(dir, "wal") }
|
2016-12-14 23:31:26 -08:00
|
|
|
|
2017-05-26 08:56:31 -07:00
|
|
|
func clampInterval(a, b, mint, maxt int64) (int64, int64) {
|
|
|
|
if a < mint {
|
|
|
|
a = mint
|
|
|
|
}
|
|
|
|
if b > maxt {
|
|
|
|
b = maxt
|
|
|
|
}
|
|
|
|
|
|
|
|
return a, b
|
|
|
|
}
|
|
|
|
|
2016-12-14 23:31:26 -08:00
|
|
|
type mmapFile struct {
|
2017-02-19 04:01:19 -08:00
|
|
|
f *os.File
|
2016-12-14 23:31:26 -08:00
|
|
|
b []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func openMmapFile(path string) (*mmapFile, error) {
|
2017-02-19 04:01:19 -08:00
|
|
|
f, err := os.Open(path)
|
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-02-19 04:01:19 -08:00
|
|
|
b, err := mmap(f, 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
|
|
|
|
}
|