Skip to content

Commit 5066d64

Browse files
Merge pull request #219411 from abkonnur-msft/patch-1
Update troubleshoot-intermittent-outbound-connection-errors.md
2 parents 410ef7c + f32a9f7 commit 5066d64

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

articles/app-service/troubleshoot-intermittent-outbound-connection-errors.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,21 @@ Although PHP does not support connection pooling, you can try using persistent d
102102

103103
* [PHP Connection Management](https://www.php.net/manual/en/pdo.connections.php)
104104

105+
#### Python
106+
107+
Below are the popular databases and modules for connection pooling which contain examples for how to implement them.
108+
109+
* [MySQL](https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html)
110+
* [MariaDB](https://mariadb.com/docs/ent/connect/programming-languages/python/connection-pools/)
111+
* [PostgreSQL](https://www.psycopg.org/docs/pool.html)
112+
* [Pyodbc](https://github.com/mkleehammer/pyodbc/wiki/The-pyodbc-Module#pooling)
113+
* [SQLAlchemy](https://docs.sqlalchemy.org/en/20/core/pooling.html)
114+
115+
HTTP Connection Pooling
116+
117+
* Keep-alive and HTTP connection pooling are enabled by default in [Requests](https://requests.readthedocs.io/en/latest/user/advanced/#keep-alive) module.
118+
* [Urllib3](https://urllib3.readthedocs.io/en/stable/reference/urllib3.connectionpool.html)
119+
105120
### Modify the application to reuse connections
106121

107122
* For additional pointers and examples on managing connections in Azure functions, review [Manage connections in Azure Functions](../azure-functions/manage-connections.md).

0 commit comments

Comments
 (0)