-
-
Notifications
You must be signed in to change notification settings - Fork 150
Performance issues with ValidationMode.Local #154
Comments
This has also affected a production deployment for one of our APIs, causing timeouts when the API is under heavy load. |
We have had intermittent timeouts and slow performance in our API for a while and running the profiler in Azure I found the following for a slow API call:
After finding this issue I also downgraded to 2.14 and it seems like it solved the timeout problems we had. |
We did an update that's supposed to deal with the deadlock in Microsoft's config loader. Please test again the myget version and let us know. https://www.myget.org/gallery/identity Thanks |
We believe we're seeing this as well.... did anyone test this latest 2.15.1? @brockallen I noticed this wasn't ever published to NuGet... We went live with IdSrvr at the very end of June... and our first deployment was on 2.15.0. Would you recommend us downgrading to 2.14 or utilizing 2.15.1? |
@kedwardsRenWeb That would be a good start! We have not tested 2.15.1 yet as 2.14 has worked without issues and our next planned upgrade will move to .NET Core. |
Well - if no-one gives the bug fix a try, we'll never find out. |
The latest change introduced in v2.15.0 has a huge performance issue when the validation mode is set to local. The change was to remove the time check in the DiscoveryDocumentIssuerSecurityTokenProvider class when the security tokens should be refreshed.
Now the configurationManager.GetConfigurationAsync() is checking the AutomaticRefreshInterval and only returning a new OpenIdConnectConfiguration if it has been refreshed. However the RetrieveMetadata method is called before getting the Issuer, Audience and SecurityTokens. This is blocking other incoming http requests as the ReaderWriterLockSlim is locking for each RetrieveMetadata call.
I have created a new pull request that basically reverts some of the code so that the RetrieveMetadata method will only attempt to recreate the Issuer and SecurityTokens if the AutomaticRefreshInterval has lapsed.
For now, I have downgraded to v2.14.0.
Pull Request: https://github.com/IdentityServer/IdentityServer3.AccessTokenValidation/pull/155
The text was updated successfully, but these errors were encountered: