hello help me, even though the batch size is 1 when I trigger a message in the queue with delay seco
hello help me, even though the batch size is 1 when I trigger a message in the queue with delay seconds of 5 minutes. After this time, this message is not sent to my consumer. Is it only triggered when I add another message to the queue?
17 Replies
How do I create a queue for a test env worker, and another queue for another worker in prod?
I have a bit of confusion on how multi-env works in wrangler
[[env.???.queues.consumers]]
/[[env.???.queues.producers]]
Nocapping
thanks a lot kian
Hello! I have a very misterious bug with queues. I have a job that iterates a batch of 3 messages, but it only iterates 2 messages and then it never gets to the third:
This is my wrangler configuration
Any clue?
Hey folks, I am trying to do some processing on queues, surprisingly they timeout after 60s inside the consumer. On the paid plan, currently testing locally. Any thoughts? It just stops processing no error, nothing.
hello, is queue down now?
requestId: 8cfd3fdf8f3984b7
Hi, anyone encounters similar issue that queue's backlog just grows and no message is delivered to worker handler? Nothing changed from code side. It just suddenly happened a few hours ago.
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
Any update on when queues are coming to remote mode
https://github.com/cloudflare/workerd/issues/855
or is it possible to run queues locally and my other bindings remotely?
GitHub
🐛 BUG:
wrangler dev --remote
fails with Error 1104, Script not fo...What version of Wrangler are you using? 2.6.2 What operating system are you using? Windows Describe the Bug Add a queue binding in your wrangler.toml, in my case: [[queues.producers]] queue = "...
Hi, I am having issues using a Pages deployment as a queue producer. It doesn't throw any error, and the service binding for the Queue is there for the Pages app, but the queue never gets a message even though the enqueueing code is definitely getting called. I did notice that on the queue, the "Producer" shows a production and a preview deployment but they just have a generic
pages-worker-###-production
format and aren't using the name of my Pages appUnknown User•4w ago
Message Not Public
Sign In & Join Server To View
Hopefully a quick question - I'm doing some local dev and wanted to confirm my queues are set up properly but I don't see anything queue related in the
.wrangler/state/v3/
path (it has cache
and d1
). Should there be anything created there?
I have a Remix app that's published to a queue and then a separate worker to consume so trying to figure out why the worker isn't seeing the messages being publishedUnknown User•4w ago
Message Not Public
Sign In & Join Server To View
+1, even a notion like sqs's message-group-id as a scaling worker consumer hint, not for fifo (since cf doesn't do fifo)
thanks for the feedback here! very detailed & agreed that this is a pain point with queues today 🙂
we're thinking about ways to improve this. our plan right now is to add the ability to connect multiple consumers to a single queue. you'll be able to specify partition keys to route specific messages to specific consumers. and ideally this can be dynamic, so you don't have to specify all the rules ahead of time. this project is still in the design phase though, so it's too soon to share timelines.
dynamically creating queues doesn't work well today, alas! rather than 1 queue per user, would you be able to setup a few queues as high-priority queues, and setup separate low priority queues? by default, messages get routed to the high priority queues. if a user uploads 10k files at once, you route those messages to the low priority queues so that they don't block each other?
Any plans to support pushing to Queues from an external platform direct via the rest API (not via an intermediate Worker)?
We published a deep dive on the Queues architecture today!
https://blog.cloudflare.com/how-we-built-cloudflare-queues/
The Cloudflare Blog
Durable Objects aren't just durable, they're fast: a 10x speedup fo...
Learn how we built Cloudflare Queues using our own Developer Platform and how it evolved to a geographically-distributed, horizontally-scalable architecture built on Durable Objects. Our new architecture supports over 10x more throughput and over 3x lower latency compared to the previous version.