Some updates for @Queues users:
Some updates for @Queues users:
- We're working on landing HTTP Pull, which will allow you to poll a queue and consume it from outside of a Worker (or use a Worker in a poll-based flow vs. push-based). This will likely land just before/just after the holidays.
- Queue throughput: our major milestone is about 3-5k msg/sec per queue (message size plays a role here), up from the ~400 msg/sec/queue currently
- We're also working on landing controls around setting message delays - e.g.
on the producer side, and retry delays on the consumer side - e.g.await env.MY_QUEUE.send(msg, { deliveryDelay: 600 })
ormessages.batch.retryAfter(300)
on a per-message basis. API not final..retryAfter(seconds: number) - Bringing Queues to GA late Q1/early Q2 next year alongside other scaling and performance improvements.

