From 7e7348c3ffe35532e3d63c2ef3c07b0a5c8ce6a9 Mon Sep 17 00:00:00 2001 From: Felipe Ryan Date: Mon, 30 Jun 2025 14:59:38 +1000 Subject: [PATCH 1/3] Update batching-retries.mdx Had to read that sentence twice to figure out why it sounded weird. --- src/content/docs/queues/configuration/batching-retries.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/queues/configuration/batching-retries.mdx b/src/content/docs/queues/configuration/batching-retries.mdx index ce4dcd616f4023..cf1f075e8162ce 100644 --- a/src/content/docs/queues/configuration/batching-retries.mdx +++ b/src/content/docs/queues/configuration/batching-retries.mdx @@ -28,7 +28,7 @@ Both `max_batch_size` and `max_batch_timeout` work together. Whichever limit is ::: -For example, a `max_batch_size = 30` and a `max_batch_timeout = 10` means that if 30 messages are written to the queue, the consumer will deliver a batch of 30 messages. However, if it takes longer than 10 seconds for those 30 messages to be written to the queue, then the consumer will get a batch of messages that contains however many messages were on the queue at the time (somewhere between 1 and 29, in this case). +For example, a `max_batch_size = 30` and a `max_batch_timeout = 10` means that if 30 messages are written to the queue, the consumer will receive a batch of 30 messages. However, if it takes longer than 10 seconds for those 30 messages to be written to the queue, then the consumer will get a batch of messages that contains however many messages were on the queue at the time (somewhere between 1 and 29, in this case). :::note[Empty queues] From 1f30a1d7f3571c33423153ea5cee6e9cd01223b0 Mon Sep 17 00:00:00 2001 From: Jun Lee Date: Wed, 13 Aug 2025 09:53:48 +0100 Subject: [PATCH 2/3] Triggering GH compiles --- src/content/docs/queues/configuration/batching-retries.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/queues/configuration/batching-retries.mdx b/src/content/docs/queues/configuration/batching-retries.mdx index cf1f075e8162ce..439c2e5c9aed95 100644 --- a/src/content/docs/queues/configuration/batching-retries.mdx +++ b/src/content/docs/queues/configuration/batching-retries.mdx @@ -28,7 +28,7 @@ Both `max_batch_size` and `max_batch_timeout` work together. Whichever limit is ::: -For example, a `max_batch_size = 30` and a `max_batch_timeout = 10` means that if 30 messages are written to the queue, the consumer will receive a batch of 30 messages. However, if it takes longer than 10 seconds for those 30 messages to be written to the queue, then the consumer will get a batch of messages that contains however many messages were on the queue at the time (somewhere between 1 and 29, in this case). +For example, a `max_batch_size = 30` and a `max_batch_timeout = 10` means that if 30 messages are written to the queue, the consumer will receive a batch of 30 messages. However, if it takes longer than 10 seconds for those 30 messages to be written to the queue, then the consumer will get a batch of messages that contains however many messages were on the queue at the time (somewhere between 1 and 29, in this case). :::note[Empty queues] From cbed3662b2db0a56e469c7a40ae8959834cc1760 Mon Sep 17 00:00:00 2001 From: Jun Lee Date: Wed, 13 Aug 2025 09:54:07 +0100 Subject: [PATCH 3/3] Undoing redundant change --- src/content/docs/queues/configuration/batching-retries.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/queues/configuration/batching-retries.mdx b/src/content/docs/queues/configuration/batching-retries.mdx index 439c2e5c9aed95..cf1f075e8162ce 100644 --- a/src/content/docs/queues/configuration/batching-retries.mdx +++ b/src/content/docs/queues/configuration/batching-retries.mdx @@ -28,7 +28,7 @@ Both `max_batch_size` and `max_batch_timeout` work together. Whichever limit is ::: -For example, a `max_batch_size = 30` and a `max_batch_timeout = 10` means that if 30 messages are written to the queue, the consumer will receive a batch of 30 messages. However, if it takes longer than 10 seconds for those 30 messages to be written to the queue, then the consumer will get a batch of messages that contains however many messages were on the queue at the time (somewhere between 1 and 29, in this case). +For example, a `max_batch_size = 30` and a `max_batch_timeout = 10` means that if 30 messages are written to the queue, the consumer will receive a batch of 30 messages. However, if it takes longer than 10 seconds for those 30 messages to be written to the queue, then the consumer will get a batch of messages that contains however many messages were on the queue at the time (somewhere between 1 and 29, in this case). :::note[Empty queues]