Documentation
¶
Overview ¶
Package tuning contains tuning options.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var OptBufMemLimit = options.NewInt( "tuning.buffer-mem-limit", nil, 1000*1000, "Buffer swap file memory limit", `Size in bytes after which in-memory temp buffers overflow to disk.`, options.TagTuning, )
View Source
var OptErrgroupLimit = options.NewInt( "tuning.errgroup-limit", nil, 16, "Max goroutines in any one errgroup", `Controls the maximum number of goroutines that can be spawned by an errgroup. Note that this is the limit for any one errgroup, but not a ceiling on the total number of goroutines spawned, as some errgroups may themselves start an errgroup. This knob is primarily for internal use. Ultimately it should go away in favor of dynamic errgroup limit setting based on availability of additional DB conns, etc.`, options.TagTuning, )
View Source
var OptFlushThreshold = options.NewInt( "tuning.output-flush-threshold", nil, 1000, "Output writer buffer flush threshold in bytes", `Size in bytes after which output writers should flush any internal buffer. Generally, it is not necessary to fiddle this knob.`, options.TagTuning, )
View Source
var OptMaxRetryInterval = options.NewDuration( "retry.max-interval", nil, time.Second*3, "Max interval between retries", `The maximum interval to wait between retries. If an operation is retryable (for example, if the DB has too many clients), repeated retry operations back off, typically using a Fibonacci backoff.`, options.TagSource, )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.