ASP.NET Core Identity bad performance on Kubernetes #26436
Unanswered
GiuseppePatane
asked this question in
General
Replies: 1 comment 1 reply
-
Do the numbers look substantially different if you have fewer users in the database? If the performance gradually gets worse for larger user counts (you mention you have > 3 million) then maybe there's a database configuration issue, for example missing indexes, or some single badly-performing query. @HaoK Do these numbers make you suspect there's some kind of misconfiguration? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm running load tests on an aspnet core 3.0 API. The project is basically the default template with aspnet core identity. So I wasn't expecting these bad performances on /api/Account/Login:
I'm running the API on :
The load test result:

am I missing some kestrel or EF core configuration? how many concurrent client Aspnet core Identity can handle? I didn't find any benchmark about this
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions