https://developers.cloudflare.com/queues/reference/consumer-concurrency/
Cloudflare Docs
Consumer concurrency allows a consumer Worker processing messages from a queue to automatically scale out horizontally to keep up with the rate that …


ack() those messages and move on.queue from around 5.23pm to 5.28pm us central
attempts field on messages has shipped. Docs PR (waiting on build): https://github.com/cloudflare/cloudflare-docs/pull/13648d3ec8122f30d4d69a7512199d25ce93b)
Error: Queue send failed: Internal Server Error calling queue.send ? I am retrying a few times backing off on the order of seconds, but the same error is thrown. Should these errors not be considered retryable?

Promise.allSettled more useful there: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled
serviceOne fails and serviceTwo is on-going, report serviceOne's error to Sentry without waiting serviceTwo to be completedIt rejects when any of the input's promises rejects, with this first rejection reason.

Sentry.captureException(error); reports error before the request is completed. AFAIK, Sentry reports errors asynchronously, so when you call Sentry.captureException(error); in the finally and let the worker completed, the error might be buffered by Sentry SDK, but not reported yet if I am not missing anything. So you may need to call await Sentry.flush(); after then.
ack()attemptsd3ec8122f30d4d69a7512199d25ce93bError: Queue send failed: Internal Server Errorqueue.sendPromise.allSettledserviceOneserviceOneserviceTwoserviceTwoSentry.captureException(error);Sentry.captureException(error);await Sentry.flush();