@ -92,10 +92,11 @@ func init() {
masterOptions . volumeSizeLimitMB = cmdServer . Flag . Uint ( "master.volumeSizeLimitMB" , 30 * 1000 , "Master stops directing writes to oversized volumes." )
masterOptions . volumePreallocate = cmdServer . Flag . Bool ( "master.volumePreallocate" , false , "Preallocate disk space for volumes." )
masterOptions . defaultReplication = cmdServer . Flag . String ( "master.defaultReplication" , "" , "Default replication type if not specified." )
masterOptions . garbageThreshold = cmdServer . Flag . Float64 ( "garbageThreshold" , 0.3 , "threshold to vacuum and reclaim spaces" )
masterOptions . metricsAddress = cmdServer . Flag . String ( "metrics.address" , "" , "Prometheus gateway address" )
masterOptions . metricsIntervalSec = cmdServer . Flag . Int ( "metrics.intervalSeconds" , 15 , "Prometheus push interval in seconds" )
masterOptions . raftResumeState = cmdServer . Flag . Bool ( "resumeState" , false , "resume previous state on start master server" )
masterOptions . garbageThreshold = cmdServer . Flag . Float64 ( "master.garbageThreshold" , 0.3 , "threshold to vacuum and reclaim spaces" )
masterOptions . metricsAddress = cmdServer . Flag . String ( "master.metrics.address" , "" , "Prometheus gateway address" )
masterOptions . metricsIntervalSec = cmdServer . Flag . Int ( "master.metrics.intervalSeconds" , 15 , "Prometheus push interval in seconds" )
masterOptions . raftResumeState = cmdServer . Flag . Bool ( "master.resumeState" , false , "resume previous state on start master server" )
masterOptions . raftHashicorp = cmdServer . Flag . Bool ( "master.raftHashicorp" , false , "use hashicorp raft" )
masterOptions . heartbeatInterval = cmdServer . Flag . Duration ( "master.heartbeatInterval" , 300 * time . Millisecond , "heartbeat interval of master servers, and will be randomly multiplied by [1, 1.25)" )
masterOptions . electionTimeout = cmdServer . Flag . Duration ( "master.electionTimeout" , 10 * time . Second , "election timeout of master servers" )