Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,400 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
One of our function app configured to retrieve data from Azure postgre single server database using Python libraries.
Here function app is running as expected, However, we could notice - whenever function app tries to connect with Postgres it will take more then 250 MS just for connection.
So anybody please suggest any area which can be looked or improved.
@Amit Kohli - B The first-time connection would take time to establish and get ready for queries. The recommended best practice is to re-use clients in your function app across invocations.