Even in this new pull queue setup, I was haunted by the push queue issues, upon inspection I found out that some tasks that are pushed into the push queues just didn't execute, google ignores these issues for years
(Each pull queue addition triggers a routine with taskqueue's to handle the operations by pulling tasks from the pull queues, if it's not already running)
I ended up configuring the push queues to infinite retries like there's no tomorrow, as other's claimed it to be the solution to the invisible retry depletion bug
I previously had a routine that checks the database for old tasks and re-triggers the push queue routine manually, yet this is not as simple with pull queues, as you can't just query for old tasks
(Although, just leasing ~100 untagged tasks for 1 second and parsing them for leftovers work, but it might disrupt the running routines)