Hi! Can someone from Cloudflare help to raise my API limits? I constantly run into 429 when polling
Hi! Can someone from Cloudflare help to raise my API limits? I constantly run into 429 when polling queues with a larger fleet of EC2 instances.
message.ack() and then await env.<MY_DEAD_LETTER_QUEUE>.send(foo) is it guaranteed that either both will succeed or neither will?requeue=false so it goes straight to the dead letter queueresult_info field. Required next to it, but is there a way to enable returning that field or does it just not exist?result_info is for paginated results - not for backlogs. We don’t currently return the backlog count in the response at all.q.send fails silently. 2 is never printed and I get no errors. try {
console.log(1);
const q = queue.factory(c);
console.log(1.2);
await q.send(item);
console.log(2);
} catch (error) {
console.log(3);
console.log(error);
}Your worker has access to the following bindings:
- KV Namespaces:
- xxxx: xxxx
- Queues:
- TREASURY_QUEUE: dev-treasury-queuemessage.ack()await env.<MY_DEAD_LETTER_QUEUE>.send(foo)requeue=falseresult_inforesult_infoRequired