Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add connection pooling information #620

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions source/reference/service-limitations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,26 @@ response status code of `429 - Too Many Requests
request a higher limit by `filing a support ticket
<https://support.mongodb.com/welcome>`__.

.. _connection_pooling:

Connection Pooling
------------------

App Services uses connection pooling to reduce the overhead of frequently
opening and closing connections between requests and trigger executions.
Connections are opened as needed. Connection pooling is dependent on
several factors:

- Cluster Tier. The higher the cluster tier, the more connections available in
the pool.

- Deployment Mode. Global deployments use multiple servers in each region, and
therefore have an overall larger connection pool.

- Services. Each service has an independent connection pool, so the number of
services in your app does not impact the number of connections available.


.. _mongodb-service-limitations-rules:

Rules
Expand Down
Loading