maybe a short question on queues: x-
maybe a short question on queues: x-posting from workers-help: workers-and-pages-helpQueues are not scaling up, consumer wise when using a regular (non pull consumer)
setTimeout to only wait 3 seconds, this kind of dropping of messages doesn't happen. I can even ramp up the k6 test to do 100 messages, and the system keeps up. Average backlog is only 2 or 3. Concurrency slowly rises from 0.5 to 0.6. I am sure the lower value to historically bad concurrency before I reduced the timeout. The time window on dashboard is 30m, of which, only last 10m or so were conducted with smaller timeouts.

Promise((resolve) => {
setTimeout(resolve, 60_000);
})max_batch_size = 1 # optional: defaults to 10
max_batch_timeout = 0 # optional: defaults to 5 seconds
max_retries = 0 # don't retry for nowexample_scenario: {
// name of the executor to use
executor: 'shared-iterations',
// common scenario configuration
startTime: '10s',
gracefulStop: '5s',
tags: { example_tag: 'testing' },
// executor-specific configuration
vus: 10,
iterations: 20,
maxDuration: '10s',
},