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
adeola13.
adeola13.โ€ข2mo ago
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.
import producerHandler from './producer';
import consumerHandler from './consumer';
import { Env, TrackingEvent } from './types';

export default {
fetch: producerHandler.fetch,
queue: consumerHandler.queue,
} satisfies ExportedHandler<Env, TrackingEvent>;
import producerHandler from './producer';
import consumerHandler from './consumer';
import { Env, TrackingEvent } from './types';

export default {
fetch: producerHandler.fetch,
queue: consumerHandler.queue,
} satisfies ExportedHandler<Env, TrackingEvent>;
`
James
Jamesโ€ข2mo ago
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 name
adeola13.
adeola13.โ€ข2mo ago
ah 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?
James
Jamesโ€ข2mo ago
Correct, yep!
LordSilver
LordSilverโ€ข2mo ago
i remembered queues was made free damn, i just had to test the tf provider...
cloudkite
cloudkiteโ€ข2mo ago
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...
ajgeiss0702
ajgeiss0702OPโ€ข2mo ago
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
cloudkite
cloudkiteโ€ข5w ago
Not ideal as then you have to pay for wall time
Unknown User
Unknown Userโ€ข5w ago
Message Not Public
Sign In & Join Server To View
ajgeiss0702
ajgeiss0702OPโ€ข5w ago
true. You could probably also make it work with a regular service binding.
ajgeiss0702
ajgeiss0702OPโ€ข5w ago
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.
highvoltage
highvoltageโ€ข4w ago
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.
FluidPrompter
FluidPrompterโ€ข4w ago
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?
CanRau
CanRauโ€ข4w ago
nevermind, forgot to await within a for loop ๐Ÿ˜…
adeola13.
adeola13.โ€ข4w ago
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?
usf
usfโ€ข3w ago
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.
FluidPrompter
FluidPrompterโ€ข3w ago
Bump. Does anyone know where Queue consumers execute?
cloudkite
cloudkiteโ€ข3w ago
Bumping

Did you find this page helpful?