I have a B2 machine running tasks from the default push queue. I added 4 tasks to the queue, and task2 didnt run, no logs about it appear in the admin console, and i dont see any failures. task1, task3, and task4 successfuly finished.
the way i adding the tasks (simply one after the other):
taskqueue.add(url='/run_task', params={'param1' : param1_value})
I looked but cant find any restrictions about the max concurant tasks for a bakend (i think once it was about 10), also I would expect in any kind of internal failure a future retry no?
any idea?