You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- changes the formula for record-processors to be 1 for every 4 workers if not specified
- changes formula for default workers to min(concurrency, (cpus * 0.75) - 1)
- caps the max workers to 32 regardless of cpu count unless the user specifies a --workers-max
│ WORKERS-MAX --workers-max --max-workers Maximum number of workers to create. If not specified, the number of workers will be determined by the smaller of (concurrency + 1) and (num │
│ WORKERS-MAX --workers-max --max-workers Maximum number of workers to create. If not specified, the number of workers will be determined by the formula │
162
+
│ min(concurrency, (num CPUs * 0.75) - 1), with a default max cap of 32. Any value provided will still be capped by the │
163
+
│ concurrency value (if specified), but not by the max cap. │
0 commit comments