mirror of
https://github.com/prometheus/prometheus
synced 2024-12-26 00:23:18 +00:00
storage/tsdb: don't use partitioned DB.
This commit is contained in:
parent
9eb1d6c927
commit
8a8eb12985
@ -13,7 +13,7 @@ import (
|
||||
|
||||
// adapter implements a storage.Storage around TSDB.
|
||||
type adapter struct {
|
||||
db *tsdb.PartitionedDB
|
||||
db *tsdb.DB
|
||||
}
|
||||
|
||||
// Options of the DB storage.
|
||||
@ -38,7 +38,7 @@ type Options struct {
|
||||
|
||||
// Open returns a new storage backed by a tsdb database.
|
||||
func Open(path string, r prometheus.Registerer, opts *Options) (storage.Storage, error) {
|
||||
db, err := tsdb.OpenPartitioned(path, 1, nil, r, &tsdb.Options{
|
||||
db, err := tsdb.Open(path, nil, r, &tsdb.Options{
|
||||
WALFlushInterval: 10 * time.Second,
|
||||
MinBlockDuration: uint64(opts.MinBlockDuration.Seconds() * 1000),
|
||||
MaxBlockDuration: uint64(opts.MaxBlockDuration.Seconds() * 1000),
|
||||
|
Loading…
Reference in New Issue
Block a user