Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apps/webapp/app/presenters/v3/LimitsPresenter.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 2 additions & 4 deletions docs/limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,16 @@ Batch triggering uses a token bucket algorithm to rate limit the number of runs
and react to rate limits in your code.
</Note>

## 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 |
| :----------- | :-------------------- |
| Free | 1 concurrent batch |
| 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 |
Expand Down
Loading