mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add full Snapshot support
Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
parent
a1c8425357
commit
a110a64abd
39
block.go
39
block.go
|
@ -1,4 +1,5 @@
|
||||||
// Copyright 2017 The Prometheus Authors
|
// Copyright 2017 The Prometheus Authors
|
||||||
|
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
// you may not use this file except in compliance with the License.
|
// you may not use this file except in compliance with the License.
|
||||||
// You may obtain a copy of the License at
|
// You may obtain a copy of the License at
|
||||||
|
@ -52,13 +53,13 @@ type DiskBlock interface {
|
||||||
type Block interface {
|
type Block interface {
|
||||||
DiskBlock
|
DiskBlock
|
||||||
Queryable
|
Queryable
|
||||||
|
Snapshottable
|
||||||
}
|
}
|
||||||
|
|
||||||
// headBlock is a regular block that can still be appended to.
|
// headBlock is a regular block that can still be appended to.
|
||||||
type headBlock interface {
|
type headBlock interface {
|
||||||
Block
|
Block
|
||||||
Appendable
|
Appendable
|
||||||
Snapshottable
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Snapshottable defines an entity that can be backedup online.
|
// Snapshottable defines an entity that can be backedup online.
|
||||||
|
@ -278,6 +279,42 @@ Outer:
|
||||||
return writeMetaFile(pb.dir, &pb.meta)
|
return writeMetaFile(pb.dir, &pb.meta)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
filenames := []string{metaFilename, indexFilename, tombstoneFilename}
|
||||||
|
for _, fname := range filenames {
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
func chunkDir(dir string) string { return filepath.Join(dir, "chunks") }
|
func chunkDir(dir string) string { return filepath.Join(dir, "chunks") }
|
||||||
func walDir(dir string) string { return filepath.Join(dir, "wal") }
|
func walDir(dir string) string { return filepath.Join(dir, "wal") }
|
||||||
|
|
||||||
|
|
48
db.go
48
db.go
|
@ -121,7 +121,8 @@ type DB struct {
|
||||||
stopc chan struct{}
|
stopc chan struct{}
|
||||||
|
|
||||||
// cmtx is used to control compactions and deletions.
|
// cmtx is used to control compactions and deletions.
|
||||||
cmtx sync.Mutex
|
cmtx sync.Mutex
|
||||||
|
compacting bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type dbMetrics struct {
|
type dbMetrics struct {
|
||||||
|
@ -200,12 +201,13 @@ func Open(dir string, l log.Logger, r prometheus.Registerer, opts *Options) (db
|
||||||
}
|
}
|
||||||
|
|
||||||
db = &DB{
|
db = &DB{
|
||||||
dir: dir,
|
dir: dir,
|
||||||
logger: l,
|
logger: l,
|
||||||
opts: opts,
|
opts: opts,
|
||||||
compactc: make(chan struct{}, 1),
|
compactc: make(chan struct{}, 1),
|
||||||
donec: make(chan struct{}),
|
donec: make(chan struct{}),
|
||||||
stopc: make(chan struct{}),
|
stopc: make(chan struct{}),
|
||||||
|
compacting: true,
|
||||||
}
|
}
|
||||||
db.metrics = newDBMetrics(db, r)
|
db.metrics = newDBMetrics(db, r)
|
||||||
|
|
||||||
|
@ -528,27 +530,31 @@ func (db *DB) Close() error {
|
||||||
return merr.Err()
|
return merr.Err()
|
||||||
}
|
}
|
||||||
|
|
||||||
// DisableCompactions disables compactions.
|
// ToggleCompactions toggles compactions and returns if compactions are on or not.
|
||||||
func (db *DB) DisableCompactions() error {
|
func (db *DB) ToggleCompactions() bool {
|
||||||
db.stopc <- struct{}{} // TODO: Can this block?
|
if db.compacting {
|
||||||
db.cmtx.Lock()
|
db.cmtx.Lock()
|
||||||
return nil
|
db.compacting = false
|
||||||
}
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// EnableCompactions enables compactions.
|
|
||||||
func (db *DB) EnableCompactions() error {
|
|
||||||
db.cmtx.Unlock()
|
db.cmtx.Unlock()
|
||||||
return nil
|
db.compacting = true
|
||||||
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Snapshot writes the current headBlock snapshots to snapshots directory.
|
// Snapshot writes the current headBlock snapshots to snapshots directory.
|
||||||
func (db *DB) Snapshot(dir string) error {
|
func (db *DB) Snapshot(dir string) error {
|
||||||
db.headmtx.RLock()
|
db.mtx.Lock() // To block any appenders.
|
||||||
heads := db.heads[:]
|
defer db.mtx.Unlock()
|
||||||
db.headmtx.RUnlock()
|
|
||||||
|
|
||||||
for _, h := range heads {
|
db.cmtx.Lock()
|
||||||
if err := h.Snapshot(dir); err != nil {
|
defer db.cmtx.Unlock()
|
||||||
|
|
||||||
|
blocks := db.blocks[:]
|
||||||
|
for _, b := range blocks {
|
||||||
|
db.logger.Log("msg", "compacting block", "block", b.Dir())
|
||||||
|
if err := b.Snapshot(dir); err != nil {
|
||||||
return errors.Wrap(err, "error snapshotting headblock")
|
return errors.Wrap(err, "error snapshotting headblock")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
7
head.go
7
head.go
|
@ -263,11 +263,10 @@ Outer:
|
||||||
}
|
}
|
||||||
|
|
||||||
// Snapshot persists the current state of the headblock to the given directory.
|
// Snapshot persists the current state of the headblock to the given directory.
|
||||||
|
// TODO(gouthamve): Snapshot must be called when there are no active appenders.
|
||||||
|
// This has been ensured by acquiring a Lock on DB.mtx, but this limitation should
|
||||||
|
// be removed in the future.
|
||||||
func (h *HeadBlock) Snapshot(snapshotDir string) error {
|
func (h *HeadBlock) Snapshot(snapshotDir string) error {
|
||||||
// Needed to stop any appenders.
|
|
||||||
h.mtx.Lock()
|
|
||||||
defer h.mtx.Unlock()
|
|
||||||
|
|
||||||
if h.meta.Stats.NumSeries == 0 {
|
if h.meta.Stats.NumSeries == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
4
index.go
4
index.go
|
@ -39,6 +39,8 @@ const (
|
||||||
indexFormatV1 = 1
|
indexFormatV1 = 1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const indexFilename = "index"
|
||||||
|
|
||||||
const compactionPageBytes = minSectorSize * 64
|
const compactionPageBytes = minSectorSize * 64
|
||||||
|
|
||||||
type indexWriterSeries struct {
|
type indexWriterSeries struct {
|
||||||
|
@ -138,7 +140,7 @@ func newIndexWriter(dir string) (*indexWriter, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
f, err := os.OpenFile(filepath.Join(dir, "index"), os.O_CREATE|os.O_WRONLY, 0666)
|
f, err := os.OpenFile(filepath.Join(dir, indexFilename), os.O_CREATE|os.O_WRONLY, 0666)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue