Merge pull request #5595 from influxdata/ross-config-update

Updated sample configuration for new meta service options
pull/5170/head
Ross McDonald 2016-02-10 17:38:59 -06:00
commit b5247cd1d4
1 changed files with 19 additions and 0 deletions

View File

@ -27,13 +27,32 @@ reporting-disabled = false
# Where the metadata/raft database is stored
dir = "/var/lib/influxdb/meta"
# The default address to bind to
bind-address = ":8088"
# The default address to bind the API to
http-bind-address = ":8091"
https-enabled = false
https-certificate = ""
retention-autocreate = true
# The default election timeout for the store
election-timeout = "1s"
# The default heartbeat timeout for the store
heartbeat-timeout = "1s"
# The default leader lease for the store
leader-lease-timeout = "500ms"
# The default commit timeout for the store
commit-timeout = "50ms"
# If trace log messages are printed for the meta service
cluster-tracing = false
# The default for auto promoting a node to a raft node when needed
raft-promotion-enabled = true
# If log messages are printed for the meta service
logging-enabled = true
pprof-enabled = false
# The default duration for leases.
lease-duration = "1m0s"
###
### [data]