influxdb/services/hh/config.go

69 lines
2.2 KiB
Go

package hh
import (
"errors"
"time"
"github.com/influxdata/influxdb/toml"
)
const (
// DefaultMaxSize is the default maximum size of all hinted handoff queues in bytes.
DefaultMaxSize = 1024 * 1024 * 1024
// DefaultMaxAge is the default maximum amount of time that a hinted handoff write
// can stay in the queue. After this time, the write will be purged.
DefaultMaxAge = 7 * 24 * time.Hour
// DefaultRetryRateLimit is the default rate that hinted handoffs will be retried.
// The rate is in bytes per second and applies across all nodes when retried. A
// value of 0 disables the rate limit.
DefaultRetryRateLimit = 0
// DefaultRetryInterval is the default amount of time the system waits before
// attempting to flush hinted handoff queues. With each failure of a hinted
// handoff write, this retry interval increases exponentially until it reaches
// the maximum
DefaultRetryInterval = time.Second
// DefaultRetryMaxInterval is the maximum the hinted handoff retry interval
// will ever be.
DefaultRetryMaxInterval = time.Minute
// DefaultPurgeInterval is the amount of time the system waits before attempting
// to purge hinted handoff data due to age or inactive nodes.
DefaultPurgeInterval = time.Hour
)
// Config is a hinted handoff configuration.
type Config struct {
Enabled bool `toml:"enabled"`
Dir string `toml:"dir"`
MaxSize int64 `toml:"max-size"`
MaxAge toml.Duration `toml:"max-age"`
RetryRateLimit int64 `toml:"retry-rate-limit"`
RetryInterval toml.Duration `toml:"retry-interval"`
RetryMaxInterval toml.Duration `toml:"retry-max-interval"`
PurgeInterval toml.Duration `toml:"purge-interval"`
}
// NewConfig returns a new Config.
func NewConfig() Config {
return Config{
Enabled: false,
MaxSize: DefaultMaxSize,
MaxAge: toml.Duration(DefaultMaxAge),
RetryRateLimit: DefaultRetryRateLimit,
RetryInterval: toml.Duration(DefaultRetryInterval),
RetryMaxInterval: toml.Duration(DefaultRetryMaxInterval),
PurgeInterval: toml.Duration(DefaultPurgeInterval),
}
}
func (c *Config) Validate() error {
if c.Enabled && c.Dir == "" {
return errors.New("HintedHandoff.Dir must be specified")
}
return nil
}