diff --git a/src/content/changelog/containers/2025-09-24-higher-container-resource-limits.mdx b/src/content/changelog/containers/2025-09-24-higher-container-resource-limits.mdx new file mode 100644 index 000000000000000..a8df9c86c4562fd --- /dev/null +++ b/src/content/changelog/containers/2025-09-24-higher-container-resource-limits.mdx @@ -0,0 +1,22 @@ +--- +title: Run more Containers with higher resource limits +description: Containers limits have been increased to allow for more concurrent instances +products: + - containers +date: 2025-09-24 +--- + +You can now run more Containers concurrently with higher limits on CPU, memory, and disk. + +| Limit | New Limit | Previous Limit | +| ---------------------------------------------- | --------- | -------------- | +| Memory for concurrent live Container instances | 400GiB | 40GiB | +| vCPU for concurrent live Container instances | 100 | 20 | +| Disk for concurrent live Container instances | 2TB | 100GB | + +You can now run 1000 instances of the `dev` instance type, 400 instances of `basic`, or 100 instances of `standard` concurrently. + +This opens up new possibilities for running larger-scale workloads on Containers. + +See the [getting started guide](/containers/get-started/) to deploy your first Container, +and the [limits documentation](/containers/platform-details/limits/) for more details on the available instance types and limits. diff --git a/src/content/docs/containers/platform-details/limits.mdx b/src/content/docs/containers/platform-details/limits.mdx index 53e62996b49f266..85152f43acce96f 100644 --- a/src/content/docs/containers/platform-details/limits.mdx +++ b/src/content/docs/containers/platform-details/limits.mdx @@ -22,14 +22,12 @@ These are specified using the [`instance_type` property](/workers/wrangler/confi While in open beta, the following limits are currently in effect: -| Feature | Workers Paid | -| ----------------------------------------------------- | ---------------------------------------------- | -| GB Memory for all concurrent live Container instances | 40GB [^1] | -| vCPU for all concurrent live Container instances | 20 [^1] | -| GB Disk for all concurrent live Container instances | 100GB [^1] | -| Image size | Same as [instance disk space](#instance-types) | -| Total image storage per account | 50 GB [^2] | - -[^1]: This limit will be raised as we continue the beta. - -[^2]: Delete container images with `wrangler containers delete` to free up space. Note that if you delete a container image and then [roll back](/workers/configuration/versions-and-deployments/rollbacks/) your Worker to a previous version, this version may no longer work. +| Feature | Workers Paid | +| ------------------------------------------------------ | ---------------------------------------------- | +| GiB Memory for all concurrent live Container instances | 400GiB | +| vCPU for all concurrent live Container instances | 100 | +| TB Disk for all concurrent live Container instances | 2TB | +| Image size | Same as [instance disk space](#instance-types) | +| Total image storage per account | 50 GB [^1] | + +[^1]: Delete container images with `wrangler containers delete` to free up space. Note that if you delete a container image and then [roll back](/workers/configuration/versions-and-deployments/rollbacks/) your Worker to a previous version, this version may no longer work.