cd /news/developer-tools/concurrency-limits-arent-enough-for-… · home topics developer-tools article
[ARTICLE · art-109669] src=dev.to ↗ pub= topic=developer-tools verified=true sentiment=· neutral

Concurrency Limits Aren’t Enough for LLM APIs

A developer has released async-bulkhead-llm, an open-source TypeScript library that adds token-aware admission control to LLM APIs. Unlike traditional concurrency limiters that treat all requests equally, the library bounds both concurrent requests and estimated in-flight tokens, preventing large batch requests from consuming disproportionate provider capacity. The project highlights that concurrency is only one dimension of load for LLM systems.

read1 min views1 publishedAug 25, 2026

A concurrency limit treats every request as roughly equal.

For LLM workloads, that assumption breaks down.

A request with a 500-token budget and one with a 30,000-token budget might both occupy a single concurrency slot, but they can represent very different amounts of provider capacity.

That’s the problem I built async-bulkhead-llm to address.

Instead of limiting only concurrent requests, it can bound two things at once:

concurrent requests

estimated in-flight tokens

A request is admitted only when both budgets have enough capacity.

Conceptually:

const bulkhead = new AsyncBulkhead({
  maxConcurrent: 8,
  maxInFlightTokens: 40_000,
});

That gives you a bulkhead around an LLM provider that accounts for workload size rather than simply request count.

This becomes especially useful when interactive and large batch requests share the same upstream model. A conventional concurrency limiter can still allow a few very large requests to consume most of the useful capacity.

Token-aware admission gives you another control surface.

async-bulkhead-llm is an open-source TypeScript/npm library I’ve been developing specifically around this problem.

The broader lesson has been simple: for LLM systems, concurrency is only one dimension of load.

If you're building production LLM infrastructure, I'd be interested in how you're handling admission control and overload protection.

── more in #developer-tools 4 stories · sorted by recency
── more on @async-bulkhead-llm 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/concurrency-limits-a…] indexed:0 read:1min 2026-08-25 ·