Verified limit lookup

Cloudflare Workers Memory Limit per Isolate

The current Cloudflare Workers isolate memory limit, what it includes, concurrency caveats, and practical diagnostics.

Verified Aug 22, 20261 official source
Quick answer

Cloudflare Workers provides 128 MB of memory per isolate. That budget includes the JavaScript heap and WebAssembly allocations and is shared by concurrent work handled by the isolate.

Verified Aug 22, 2026Official source

Current limits

ConstraintCurrent valueScopeVerified source
Memory per isolateIncludes the JavaScript heap and WebAssembly allocations; one isolate can serve concurrent requests.128 MBFree and PaidCloudflareAug 22, 2026

Why does this limit matter?

Loading entire request or response bodies into memory can exhaust the isolate even when the transmitted body is accepted at the network layer.

One isolate can process multiple concurrent requests, so per-request estimates alone can be misleading.

What should you check?

  1. Look for exceededMemory outcomes and Error 1102 in Workers metrics and logs.
  2. Stream large bodies instead of buffering them.
  3. Move durable large data to KV, R2, or another external store.

Important caveats

  • The limit is per isolate rather than per invocation.
  • When memory is exceeded, in-flight work may finish while subsequent work moves to another isolate; high load can still cause cancellations.
HyperObserve reports the documented platform constraint. Your application, SDK, gateway, provider, region, or account can impose a lower effective limit.
Related

Related references and tools

Found an outdated limit? Report it.