-
Notifications
You must be signed in to change notification settings - Fork 566
[MLDM-29] Queue CRUD #10268
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
[MLDM-29] Queue CRUD #10268
Conversation
size-limit report 📦
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #10268 +/- ##
==========================================
+ Coverage 58.29% 58.65% +0.35%
==========================================
Files 642 642
Lines 77193 77228 +35
==========================================
+ Hits 45000 45295 +295
+ Misses 31692 31443 -249
+ Partials 501 490 -11 ☔ View full report in Codecov by Sentry. |
pjs.jobs j | ||
ON j.program_hash = queues.program_hash | ||
WHERE | ||
j.processing IS NULL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey I don't think the queues iterator should automatically filter out jobs that are not done. Instead, that should be done in the filter.
Rationale here is that you may want to see all jobs in a queue, even the done ones. There wouldn't be a way to do that through the API.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we discussed this in slack and decided we want a queue to be all jobs with the same program in a 'queued' stated only.
No description provided.