mirror of https://github.com/prometheus/prometheus
jessicagreben
4 years ago
4 changed files with 12 additions and 272 deletions
@ -1,120 +0,0 @@
|
||||
// Copyright 2020 The Prometheus Authors
|
||||
// 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.
|
||||
|
||||
package blocks |
||||
|
||||
import ( |
||||
"github.com/go-kit/kit/log" |
||||
"github.com/oklog/ulid" |
||||
"github.com/pkg/errors" |
||||
"github.com/prometheus/prometheus/pkg/labels" |
||||
"github.com/prometheus/prometheus/storage" |
||||
tsdb_errors "github.com/prometheus/prometheus/tsdb/errors" |
||||
"github.com/prometheus/prometheus/tsdb/index" |
||||
) |
||||
|
||||
type errAppender struct{ err error } |
||||
|
||||
func (a errAppender) Add(l labels.Labels, t int64, v float64) (uint64, error) { return 0, a.err } |
||||
func (a errAppender) AddFast(ref uint64, t int64, v float64) error { return a.err } |
||||
func (a errAppender) Commit() error { return a.err } |
||||
func (a errAppender) Rollback() error { return a.err } |
||||
|
||||
func rangeForTimestamp(t int64, width int64) (maxt int64) { |
||||
return (t/width)*width + width |
||||
} |
||||
|
||||
type MultiWriter struct { |
||||
blocks map[index.Range]Writer |
||||
activeAppenders map[index.Range]storage.Appender |
||||
|
||||
logger log.Logger |
||||
dir string |
||||
// TODO(bwplotka): Allow more complex compaction levels.
|
||||
sizeMillis int64 |
||||
} |
||||
|
||||
func NewMultiWriter(logger log.Logger, dir string, sizeMillis int64) *MultiWriter { |
||||
return &MultiWriter{ |
||||
logger: logger, |
||||
dir: dir, |
||||
sizeMillis: sizeMillis, |
||||
blocks: map[index.Range]Writer{}, |
||||
activeAppenders: map[index.Range]storage.Appender{}, |
||||
} |
||||
} |
||||
|
||||
// Appender is not thread-safe. Returned Appender is not thread-save as well.
|
||||
// TODO(bwplotka): Consider making it thread safe.
|
||||
func (w *MultiWriter) Appender() storage.Appender { return w } |
||||
|
||||
func (w *MultiWriter) getOrCreate(t int64) storage.Appender { |
||||
maxt := rangeForTimestamp(t, w.sizeMillis) |
||||
hash := index.Range{Start: maxt - w.sizeMillis, End: maxt} |
||||
if a, ok := w.activeAppenders[hash]; ok { |
||||
return a |
||||
} |
||||
|
||||
nw, err := NewTSDBWriter(w.logger, w.dir) |
||||
if err != nil { |
||||
return errAppender{err: errors.Wrap(err, "new tsdb writer")} |
||||
} |
||||
|
||||
w.blocks[hash] = nw |
||||
w.activeAppenders[hash] = nw.Appender() |
||||
return w.activeAppenders[hash] |
||||
} |
||||
|
||||
func (w *MultiWriter) Add(l labels.Labels, t int64, v float64) (uint64, error) { |
||||
return w.getOrCreate(t).Add(l, t, v) |
||||
} |
||||
|
||||
func (w *MultiWriter) AddFast(ref uint64, t int64, v float64) error { |
||||
return w.getOrCreate(t).AddFast(ref, t, v) |
||||
} |
||||
|
||||
func (w *MultiWriter) Commit() error { |
||||
var merr tsdb_errors.MultiError |
||||
for _, a := range w.activeAppenders { |
||||
merr.Add(a.Commit()) |
||||
} |
||||
return merr.Err() |
||||
} |
||||
|
||||
func (w *MultiWriter) Rollback() error { |
||||
var merr tsdb_errors.MultiError |
||||
for _, a := range w.activeAppenders { |
||||
merr.Add(a.Rollback()) |
||||
} |
||||
return merr.Err() |
||||
} |
||||
|
||||
func (w *MultiWriter) Flush() ([]ulid.ULID, error) { |
||||
ids := make([]ulid.ULID, 0, len(w.blocks)) |
||||
for _, b := range w.blocks { |
||||
id, err := b.Flush() |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
ids = append(ids, id...) |
||||
} |
||||
return ids, nil |
||||
} |
||||
|
||||
func (w *MultiWriter) Close() error { |
||||
var merr tsdb_errors.MultiError |
||||
for _, b := range w.blocks { |
||||
merr.Add(b.Close()) |
||||
} |
||||
return merr.Err() |
||||
} |
@ -1,139 +0,0 @@
|
||||
// Copyright 2020 The Prometheus Authors
|
||||
// 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.
|
||||
|
||||
package blocks |
||||
|
||||
import ( |
||||
"context" |
||||
"io/ioutil" |
||||
"math" |
||||
"os" |
||||
"time" |
||||
|
||||
"github.com/oklog/ulid" |
||||
"github.com/prometheus/prometheus/storage" |
||||
"github.com/prometheus/prometheus/tsdb" |
||||
|
||||
"github.com/go-kit/kit/log" |
||||
"github.com/go-kit/kit/log/level" |
||||
"github.com/pkg/errors" |
||||
"github.com/prometheus/prometheus/pkg/timestamp" |
||||
"github.com/prometheus/prometheus/tsdb/chunkenc" |
||||
) |
||||
|
||||
// Writer is interface to write time series into Prometheus blocks.
|
||||
type Writer interface { |
||||
storage.Appendable |
||||
|
||||
// Flush writes current data to disk.
|
||||
// The block or blocks will contain values accumulated by `Write`.
|
||||
Flush() ([]ulid.ULID, error) |
||||
|
||||
// Close releases all resources. No append is allowed anymore to such writer.
|
||||
Close() error |
||||
} |
||||
|
||||
var _ Writer = &TSDBWriter{} |
||||
|
||||
// Writer is a block writer that allows appending and flushing to disk.
|
||||
type TSDBWriter struct { |
||||
logger log.Logger |
||||
dir string |
||||
|
||||
head *tsdb.Head |
||||
tmpDir string |
||||
} |
||||
|
||||
func durToMillis(t time.Duration) int64 { |
||||
return int64(t.Seconds() * 1000) |
||||
} |
||||
|
||||
// NewTSDBWriter create new block writer.
|
||||
//
|
||||
// The returned writer accumulates all series in memory until `Flush` is called.
|
||||
//
|
||||
// Note that the writer will not check if the target directory exists or
|
||||
// contains anything at all. It is the caller's responsibility to
|
||||
// ensure that the resulting blocks do not overlap etc.
|
||||
// Writer ensures the block flush is atomic (via rename).
|
||||
func NewTSDBWriter(logger log.Logger, dir string) (*TSDBWriter, error) { |
||||
res := &TSDBWriter{ |
||||
logger: logger, |
||||
dir: dir, |
||||
} |
||||
return res, res.initHead() |
||||
} |
||||
|
||||
// initHead creates and initialises new head.
|
||||
func (w *TSDBWriter) initHead() error { |
||||
logger := w.logger |
||||
|
||||
// Keep Registerer and WAL nil as we don't use them.
|
||||
// Put huge chunkRange; It has to be equal then expected block size.
|
||||
// Since we don't have info about block size here, set it to large number.
|
||||
|
||||
tmpDir, err := ioutil.TempDir(os.TempDir(), "head") |
||||
if err != nil { |
||||
return errors.Wrap(err, "create temp dir") |
||||
} |
||||
w.tmpDir = tmpDir |
||||
|
||||
h, err := tsdb.NewHead(nil, logger, nil, durToMillis(9999*time.Hour), w.tmpDir, nil, tsdb.DefaultStripeSize, nil) |
||||
if err != nil { |
||||
return errors.Wrap(err, "tsdb.NewHead") |
||||
} |
||||
|
||||
w.head = h |
||||
return w.head.Init(math.MinInt64) |
||||
} |
||||
|
||||
// Appender is not thread-safe. Returned Appender is thread-save however.
|
||||
func (w *TSDBWriter) Appender() storage.Appender { |
||||
return w.head.Appender() |
||||
} |
||||
|
||||
// Flush implements Writer interface. This is where actual block writing
|
||||
// happens. After flush completes, no write can be done.
|
||||
func (w *TSDBWriter) Flush() ([]ulid.ULID, error) { |
||||
seriesCount := w.head.NumSeries() |
||||
if w.head.NumSeries() == 0 { |
||||
return nil, errors.New("no series appended; aborting.") |
||||
} |
||||
|
||||
mint := w.head.MinTime() |
||||
maxt := w.head.MaxTime() + 1 |
||||
level.Info(w.logger).Log("msg", "flushing", "series_count", seriesCount, "mint", timestamp.Time(mint), "maxt", timestamp.Time(maxt)) |
||||
|
||||
// Flush head to disk as a block.
|
||||
compactor, err := tsdb.NewLeveledCompactor( |
||||
context.Background(), |
||||
nil, |
||||
w.logger, |
||||
[]int64{durToMillis(2 * time.Hour)}, // Does not matter, used only for planning.
|
||||
chunkenc.NewPool()) |
||||
if err != nil { |
||||
return nil, errors.Wrap(err, "create leveled compactor") |
||||
} |
||||
id, err := compactor.Write(w.dir, w.head, mint, maxt, nil) |
||||
if err != nil { |
||||
return nil, errors.Wrap(err, "compactor write") |
||||
} |
||||
// TODO(bwplotka): Potential truncate head, and allow writer reuse. Currently truncating fails with
|
||||
// truncate chunks.HeadReadWriter: maxt of the files are not set.
|
||||
return []ulid.ULID{id}, nil |
||||
} |
||||
|
||||
func (w *TSDBWriter) Close() error { |
||||
_ = os.RemoveAll(w.tmpDir) |
||||
return w.head.Close() |
||||
} |
Loading…
Reference in new issue