tsdb: default too small max block duration

This commit is contained in:
Fabian Reinartz 2017-10-30 12:09:56 +01:00
parent d93273c4dc
commit 30e777d10d
1 changed files with 1 additions and 2 deletions

View File

@ -127,8 +127,7 @@ type Options struct {
// Open returns a new storage backed by a TSDB database that is configured for Prometheus.
func Open(path string, l log.Logger, r prometheus.Registerer, opts *Options) (*tsdb.DB, error) {
if opts.MinBlockDuration > opts.MaxBlockDuration {
return nil, errors.Errorf("tsdb max block duration (%v) must be larger than min block duration (%v)",
opts.MaxBlockDuration, opts.MinBlockDuration)
opts.MaxBlockDuration = opts.MinBlockDuration
}
// Start with smallest block duration and create exponential buckets until the exceed the
// configured maximum block duration.