-
-
Notifications
You must be signed in to change notification settings - Fork 180
[#938] Add Queue Feature #940
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
394f1c3
to
42135ca
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## next #940 +/- ##
==========================================
+ Coverage 59.85% 59.98% +0.12%
==========================================
Files 70 83 +13
Lines 8953 10168 +1215
==========================================
+ Hits 5359 6099 +740
- Misses 3096 3467 +371
- Partials 498 602 +104
... and 1 file with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
Resolves #938
This PR implements a queue feature that allows user to run workflows concurrently with a limited number of concurrent processes defined in the DAG definition.
To-Do:
Queued
scheduler
serviceAPI to list queue itemsGET /queues{name}
API to enqueue an itemPOST /queue/{name}
API to dequeue an itemDELETE /queue/{name}/{id}