Workflows, Workers – Increased concurrency, creation rate, and queued instance limits for Workflows instances

Workflows, Workers – Increased concurrency, creation rate, and queued instance limits for Workflows instances

Workflows limits have been raised to the following: LimitPreviousNewConcurrent instances (running in parallel)10,00050,000Instance creation rate (per account)100/second per account300/second per account, 100/second per workflowQueued instances per Workflow 11 million2 million These increases apply to all users on the Workers Paid…
Workflows, Workers – Workflow instances now support pause(), resume(), restart(), and terminate() methods in local development

Workflows, Workers – Workflow instances now support pause(), resume(), restart(), and terminate() methods in local development

Workflow instance methods pause(), resume(), restart(), and terminate() are now available in local development when using wrangler dev. You can now test the full Workflow instance lifecycle locally: const instance = await env.MY_WORKFLOW.create({ id: "my-instance-id",}); await instance.pause(); // pauses a…