Skip to content

Commit 902a797

Browse files
authored
Update limits.mdx
added not on concurrency
1 parent bb076ff commit 902a797

File tree

1 file changed

+6
-0
lines changed
  • src/content/docs/browser-rendering/platform

1 file changed

+6
-0
lines changed

src/content/docs/browser-rendering/platform/limits.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,10 @@ import { Render, Plan } from "~/components";
3434

3535
[^2]: By default, a browser instance gets killed if it does not get any [devtools](https://chromedevtools.github.io/devtools-protocol/) command for 60 seconds, freeing one instance. Users can optionally increase this by using the `keep_alive` [option](/browser-rendering/platform/puppeteer/#keep-alive). `browser.close()` releases the browser instance.
3636

37+
## Note on Concurrency
38+
39+
While the limits above define the maximum number of concurrent browser sessions per account, in practice you may not need to hit these limits. Browser sessions close automatically—by default, after 60 seconds of inactivity or upon task completion—so if each session finishes its work before a new request comes in, the effective concurrency is lower. This means that most workflows do not require very high concurrent browser limits.
40+
41+
42+
3743

0 commit comments

Comments
 (0)