Add pagination and filtering to Queue Manager #14755
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Adding an However I’ve just fixed the built-in queue so it lists delayed jobs after other non-delayed jobs, which should help you here. (19df31b) |
Beta Was this translation helpful? Give feedback.
-
Just to add to this, i remember there was a Craft CMS 2 (?!) plugin that handled the queue before it was part of Craft itself. That plugin had an option to filter down the tasks by type. Similar to this issue we have 700 failed tasks that have built up overtime, but im weary of deleting them all (Mostly Blitz cache tasks) incase theres more important tasks mixed in e.g. Sending email notifications etc. Normally I do this via the database, but it would be easier to filter tasks down in the CP, with the ability to delete/release groups of tasks. Pagination or infinite scroll would be great also. |
Beta Was this translation helpful? Give feedback.
Adding an
offset
argument toQueueInterface::getJobInfo()
(which would be required for pagination) would be a breaking change, so not something we could consider until Craft 6.However I’ve just fixed the built-in queue so it lists delayed jobs after other non-delayed jobs, which should help you here. (19df31b)