an ASP.NET performance bottleneck mystery

前端 未结 7 1362
心在旅途
心在旅途 2021-02-10 16:28

A classic ASP.NET app - AppSrv + MS SQL DB. Both servers are heavy-lifters 8 cores, 20 GB of RAM. When load testing, the throughput goes somewhere to 400 VirtualUsers (according

7条回答
  •  清酒与你
    2021-02-10 17:13

    When no CPUs are hosed and pages tend to become unresponsive, my first hunch is database locking. One thread can hold up the rest when not releasing a lock on a table, which results in non responsive pages while idling your db server.

    Can you use a sql monitoring tool to verify proper usege on the database machine and see if all users get their data properly?

    One other thing; what info can you give on memory use?

提交回复
热议问题