mirror of
https://github.com/minio/minio.git
synced 2025-11-07 21:02:58 -05:00
apply healing per object at 1024 cycles (#18050)
- we already have MRF for most recent failures - we trigger healing during HEAD/GET operation These are enough, also change the default max wait from 5sec to 1sec for default scanner speed.
This commit is contained in:
@@ -99,7 +99,7 @@ func LookupConfig(kvs config.KVS) (cfg Config, err error) {
|
||||
case "fast":
|
||||
cfg.Delay, cfg.MaxWait, cfg.Cycle = 1, 100*time.Millisecond, time.Minute
|
||||
case "default":
|
||||
cfg.Delay, cfg.MaxWait, cfg.Cycle = 2, 5*time.Second, time.Minute
|
||||
cfg.Delay, cfg.MaxWait, cfg.Cycle = 2, time.Second, time.Minute
|
||||
case "slow":
|
||||
cfg.Delay, cfg.MaxWait, cfg.Cycle = 10, 15*time.Second, time.Minute
|
||||
case "slowest":
|
||||
|
||||
Reference in New Issue
Block a user