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
User should be able to configure the maximum number of concurrently running jobs by calling a "builder pattern" method on Scheduler before running their jobs.
The text was updated successfully, but these errors were encountered:
Implement concurrent job execution using FuturesUnordered (#1)
Make jobs generic over context type C (#7)
Refactor APIs to use visitor(ish) pattern PlanBuilder. Eliminates async-trait dependency, reduces number of allocations needed to use this API, and IMO is more ergonomic.
Modify scheduler to start and run jobs concurrently where possible.
Will probably be implemented using a
FuturesUnordered
:https://docs.rs/futures/0.3.6/futures/stream/futures_unordered/struct.FuturesUnordered.html
User should be able to configure the maximum number of concurrently running jobs by calling a "builder pattern" method on
Scheduler
before running their jobs.The text was updated successfully, but these errors were encountered: