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
feat: Orchestrator - Optimization - Use mini-batches when processing queues (#248)
Optimization: Process same queue multiple times so that multiple fast operations can be batched together.
Before: Queued (fast), Running (slow), Queued (fast), Running (slow), Queued (fast), Running (slow)
After: Queued (fast), Queued (fast), Queued (fast), Running (slow)
After: Queued (fast), Queued (slow), Running (slow)
Process same queue multiple times:
* For up to X milliseconds (e.g. 200ms)
* Up to Y times (reduces blast radius of time-related bugs)
* If the queue is not empty
0 commit comments