Reputation: 522
We have ASP.Net Core 2.1 Web API hosted in AppService (S1) that talks to Azure SQL DB (S1-20DTUs). Both are in same region. During load testing we found that some API instances are taking too much time to return the result.
We tried to troubleshoot the performance issue and below are our observations.
Can someone please help me to understand what was happening in this 27 secs of wait time. What could be the reason for this?
Upvotes: 1
Views: 1555
Reputation: 470
The S1 tier will support no more than 900 concurrent session. If you request per second (RPS rate) during the load test is very high you may face issues.
Also S3 and above are recommended for intensive workloads. Checking if all the connections are closed properly also helps
You can find details about different pricing tiers and their capabilities in the below link https://learn.microsoft.com/en-us/azure/sql-database/sql-database-dtu-resource-limits-single-databases
Upvotes: 0
Reputation: 704
Upvotes: 1