- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MaxLWorkers (0.06 sec)
-
cmd/bucket-replication.go
default: p.queueMRFSave(ri.ToMRFEntry()) p.mu.RLock() maxLWorkers := p.maxLWorkers existing := len(p.lrgworkers) p.mu.RUnlock() maxLWorkers = min(maxLWorkers, LargeWorkerCount) if p.ActiveLrgWorkers() < maxLWorkers { workers := min(existing+1, maxLWorkers) p.ResizeLrgWorkers(workers, existing) } } return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0) -
cmd/handler-api.go
if t.replicationPriority == "" { return replicationPoolOpts{ Priority: "auto", MaxWorkers: WorkerMaxLimit, MaxLWorkers: LargeWorkerCount, } } return replicationPoolOpts{ Priority: t.replicationPriority, MaxWorkers: t.replicationMaxWorkers, MaxLWorkers: t.replicationMaxLWorkers, } } func (t *apiConfig) getTransitionWorkers() int { t.mu.RLock() defer t.mu.RUnlock()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 26 17:07:10 UTC 2024 - 10.4K bytes - Viewed (0)