Did the queues `sendBatch` api change? I've been running a worker in production for around 7 months
Did the queues
sendBatch
api change?
I've been running a worker in production for around 7 months now, and it has been working fine.
The past few days (first occurance was Febuary 21st, 23:40 UTC, and the previous successful evocation was 23:10 UTC), i've suddenly been getting an error: sendBatch() requires at least one message
I've added an additional check in my code to make sure the batch isnt empty to fix the issue, but I missed 2 days of data (that I cannot recover) before I noticed the issue.
Is this a recent change in the queues api? I would appreciate it if you could ping me when you reply ๐18 Replies
Hello! How does one deploy multiple queue handlers (for different queues) in one single worker deployment project in wrangler?
So in my main index.ts I would like to have multiple queue consumer handlers for different queues.
`
You can only have one consumer function in your worker code, but you can get the name of the queue on
MessageBatch
: https://developers.cloudflare.com/queues/configuration/javascript-apis/#messagebatch
This way you can effectively handle multiple different queues and just change the code you execute depending on the queue nameah I see! Very helpful! And so then I can just bind multiple queue consumers to this worker and then my handler would only be able to read from messages send to the consumers that were bound from it is that right?
Correct, yep!
i remembered queues was made free
damn, i just had to test the tf provider...
has anyone succesfully gotten browser rendering to work with queues? I can't even launch a browser without it locking up the worker https://github.com/cloudflare/puppeteer/issues/93
GitHub
[Bug]: Using the sessions API causes hanging queue ยท Issue #93 ยท cl...
Minimal, reproducible example import { WorkerEntrypoint } from "cloudflare:workers"; import puppeteer, { type Browser } from "@cloudflare/puppeteer"; export default class extend...
When I had browser rendering working with queues, i was running into all sorts of issues.
I would recommend writing a Durable Object to handle the browser rendering, and calling that from the queue
Not ideal as then you have to pay for wall time
Unknown Userโข5w ago
Message Not Public
Sign In & Join Server To View
true. You could probably also make it work with a regular service binding.
there is a limit increase request form at the bottom of the limits page: https://developers.cloudflare.com/queues/platform/limits/
Cloudflare Docs
Limits ยท Cloudflare Queues
1 1 KB is measured as 1000 bytes. Messages can include up to ~100 bytes of internal metadata that counts towards total message limits.
I'm also experiencing this issue. There seems to be something with the Browser Rendering/Puppeteer API that is causing the queue worker to hang and then ultimately fail. I don't see any meaningful logs in the worker or browser rendering GUI either other than the timeout/disconnect log.
Where do queue consumers execute? I've tried some searching here, but can't seem to find an authoritative answer... I mean you could have event fed into a queue from all over the world, but to ensure ordered handling, do consumers only execute in 1 geographic location? Meaning the latency from a producer queueing a message to a consumer processing a messaging will vary significantly and so queues should not be used for anything "real-time-ish" - is that correct?
nevermind, forgot to
await
within a for
loop ๐
Is it bad to publish an antire HTTP request payload including secure authorization headers to a cloudflare queue? Similar you would do in other alternatives. Making the queue consumer only responsible for invoking the request and retrying it?
there's a 128 KB limit on the message size. if the request payload is bigger than that, it's going to fail. https://developers.cloudflare.com/queues/platform/limits/
Cloudflare Docs
Limits ยท Cloudflare Queues
1 1 KB is measured as 1000 bytes. Messages can include up to ~100 bytes of internal metadata that counts towards total message limits.
Bump. Does anyone know where Queue consumers execute?
Bumping