influxdb/tsdb/config.go

87 lines
3.3 KiB
Go
Raw Normal View History

2015-05-28 21:47:47 +00:00
package tsdb
2015-05-29 19:50:05 +00:00
import (
"time"
"github.com/influxdb/influxdb/toml"
)
const (
2015-09-17 02:05:20 +00:00
// DefaultEngine is the default engine for new shards
DefaultEngine = "bz1"
// DefaultMaxWALSize is the default size of the WAL before it is flushed.
DefaultMaxWALSize = 100 * 1024 * 1024 // 100MB
// DefaultWALFlushInterval is the frequency the WAL will get flushed if
// it doesn't reach its size threshold.
DefaultWALFlushInterval = 10 * time.Minute
// DefaultWALPartitionFlushDelay is the sleep time between WAL partition flushes.
DefaultWALPartitionFlushDelay = 2 * time.Second
2015-08-18 20:59:54 +00:00
// tsdb/engine/wal configuration options
// DefaultReadySeriesSize of 32KB specifies when a series is eligible to be flushed
DefaultReadySeriesSize = 30 * 1024
// DefaultCompactionThreshold flush and compact a partition once this ratio of keys are over the flush size
DefaultCompactionThreshold = 0.5
// DefaultMaxSeriesSize specifies the size at which a series will be forced to flush
DefaultMaxSeriesSize = 1024 * 1024
// DefaultFlushColdInterval specifies how long after a partition has been cold
// for writes that a full flush and compaction are forced
DefaultFlushColdInterval = 5 * time.Second
2015-08-18 20:59:54 +00:00
// DefaultParititionSizeThreshold specifies when a partition gets to this size in
// memory, we should slow down writes until it gets a chance to compact.
// This will force clients to get backpressure if they're writing too fast. We need
// this because the WAL can take writes much faster than the index. So eventually
// we'll need to create backpressure, otherwise we'll fill up the memory and die.
// This number multiplied by the parition count is roughly the max possible memory
// size for the in-memory WAL cache.
2015-09-09 18:29:50 +00:00
DefaultPartitionSizeThreshold = 50 * 1024 * 1024 // 50MB
2015-05-29 19:50:05 +00:00
)
2015-05-29 15:53:33 +00:00
2015-05-28 21:47:47 +00:00
type Config struct {
2015-09-17 02:05:20 +00:00
Dir string `toml:"dir"`
Engine string `toml:"engine"`
2015-08-18 20:59:54 +00:00
// WAL config options for b1 (introduced in 0.9.2)
MaxWALSize int `toml:"max-wal-size"`
WALFlushInterval toml.Duration `toml:"wal-flush-interval"`
WALPartitionFlushDelay toml.Duration `toml:"wal-partition-flush-delay"`
2015-08-18 20:59:54 +00:00
// WAL configuration options for bz1 (introduced in 0.9.3)
WALDir string `toml:"wal-dir"`
2015-09-03 21:56:07 +00:00
WALLoggingEnabled bool `toml:"wal-logging-enabled"`
2015-08-18 20:59:54 +00:00
WALReadySeriesSize int `toml:"wal-ready-series-size"`
WALCompactionThreshold float64 `toml:"wal-compaction-threshold"`
WALMaxSeriesSize int `toml:"wal-max-series-size"`
WALFlushColdInterval toml.Duration `toml:"wal-flush-cold-interval"`
WALPartitionSizeThreshold uint64 `toml:"wal-partition-size-threshold"`
// Query logging
QueryLogEnabled bool `toml:"query-log-enabled"`
2015-05-28 21:47:47 +00:00
}
2015-05-29 19:50:05 +00:00
func NewConfig() Config {
return Config{
2015-09-17 02:05:20 +00:00
Engine: DefaultEngine,
MaxWALSize: DefaultMaxWALSize,
WALFlushInterval: toml.Duration(DefaultWALFlushInterval),
WALPartitionFlushDelay: toml.Duration(DefaultWALPartitionFlushDelay),
2015-08-18 20:59:54 +00:00
2015-09-03 21:56:07 +00:00
WALLoggingEnabled: true,
2015-08-18 20:59:54 +00:00
WALReadySeriesSize: DefaultReadySeriesSize,
WALCompactionThreshold: DefaultCompactionThreshold,
WALMaxSeriesSize: DefaultMaxSeriesSize,
WALFlushColdInterval: toml.Duration(DefaultFlushColdInterval),
WALPartitionSizeThreshold: DefaultPartitionSizeThreshold,
QueryLogEnabled: true,
2015-05-29 19:50:05 +00:00
}
}