Skip to content

Changelog

New updates and improvements at Cloudflare. Subscribe to RSS

hero image

Increased Browser Rendering limits!

Jan 30, 2025, 01:00 PM

Browser Rendering now supports 10 concurrent browser instances per account and 10 new instances per minute, up from the previous limits of 2.

This allows you to launch more browser tasks from Cloudflare Workers.

To manage concurrent browser sessions, you can use Queues or Workflows:

index.js
export default {
async queue(batch, env) {
for (const message of batch.messages) {
const browser = await puppeteer.launch(env.BROWSER);
const page = await browser.newPage();
try {
await page.goto(message.url, {
waitUntil: message.waitUntil,
});
// Process page...
} finally {
await browser.close();
}
}
},
};