What is the name of the domain?
What is the issue you’re encountering
The queue will not process messages when there are more than 5 messages is the queue. Up to 5 messages are processed successfully by the consumer worker.
What steps have you taken to resolve the issue?
I have added logging to see if there are any error messages but it looks like the messages are just being dropped when there are more than around 5 in the queue. The event logs do not show anything or show any record of the messages being dropped.
What are the steps to reproduce the issue?
More than 5 messages are added to the queue. For each message, the consumer takes around 10 seconds wall time but only about 1ms of CPU time, and we have a max concurrency of 1, batch size 1. It’s almost as if something is timing out, but cloudflare docs do not show any limits that span across multiple invokations, so it doesn’t make sense that the first 5 messages would process successfully but the rest wouldn’t (since it is 1 message per batch)