From 0b44d03b1d0e9c78765a3e29ab1f591240e15174 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Thu, 26 Feb 2026 14:13:26 +0000 Subject: [PATCH] Better explanation of batch processing concurrency --- apps/webapp/app/presenters/v3/LimitsPresenter.server.ts | 5 +++-- docs/limits.mdx | 6 ++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/webapp/app/presenters/v3/LimitsPresenter.server.ts b/apps/webapp/app/presenters/v3/LimitsPresenter.server.ts index ceeeba533e..cca3522dc4 100644 --- a/apps/webapp/app/presenters/v3/LimitsPresenter.server.ts +++ b/apps/webapp/app/presenters/v3/LimitsPresenter.server.ts @@ -313,8 +313,9 @@ export class LimitsPresenter extends BasePresenter { } : null, batchProcessingConcurrency: { - name: "Batch processing concurrency", - description: "Controls how many batch items can be processed simultaneously.", + name: "Batch trigger processing concurrency", + description: + "When you send a batch trigger, we convert it into individual runs in parallel. This is the maximum number of batches being converted into runs at once. It does not limit how many batch runs can be executing.", limit: batchConcurrencyConfig.processingConcurrency, currentUsage: 0, source: batchConcurrencySource, diff --git a/docs/limits.mdx b/docs/limits.mdx index 1ae5fa6927..28f1810a3c 100644 --- a/docs/limits.mdx +++ b/docs/limits.mdx @@ -125,9 +125,9 @@ Batch triggering uses a token bucket algorithm to rate limit the number of runs and react to rate limits in your code. -## Batch processing concurrency +## Batch trigger processing concurrency -The number of batches that can be processed concurrently per environment. +When you send a batch trigger, we convert it into individual runs. This limit controls the maximum number of batches being converted into runs simultaneously per environment. It is not a limit on how many batch runs can be executing at once. | Pricing tier | Limit | | :----------- | :-------------------- | @@ -135,8 +135,6 @@ The number of batches that can be processed concurrently per environment. | Hobby | 10 concurrent batches | | Pro | 10 concurrent batches | -This limits how many batches can have their items actively being processed into runs at the same time. - ## Log retention | Pricing tier | Limit |