Samuel Tambunan
Samuel Tambunan
@NickCraver , We've also recently just updated and are seeing large numbers of `timers` on timeout exceptions. We use Polly to do retries when a request fails and I'm wondering...
Thanks @NickCraver . I think we found a different issue which caused the active timers to be so high. Now, when we see timeouts it's in the 200s but we...
It doesn't look like TryAddBuilder is thread safe as calling GetPipeline() with multiple threads can cause issues with dynamic reloading. At best, it seems to reload more often than necessary....
We've ended up restructuring our code to create the pipeline during startup, using `GetOrAdd` to avoid any race conditions. My confusion was that we had originally set up the registry...
Thanks. Documentation would definitely help. I was thinking that adding a lock here, https://github.com/App-vNext/Polly/blob/2d02db1c9a96c783b99e2d4c6d29a24a6d44934c/src/Polly.Core/Registry/ResiliencePipelineRegistry.cs#L124, just right before the getOrAdd is called would be helpful. Since the line before returns the...
Ah that's a good question. I was thinking of the ffmpeg binary since I couldn't think of a reason to return the FfmpegCore version. We should already know which FFMpegCore...
We're using a username/password to connect to Azure Cache for Redis and not Entra ID. I feel our issue wasn't caused by an authentication failure, but instead by a dead...
We're seeing it once every few days. I'm not sure if it's related but we've moved from windows to linux instances when we started noticing more of these issues. Since...
Thanks for explaining @philon-msft. Our setup is currently a Linux app service inside a VNET that uses a private endpoint to connect to Azure cache. We added a private endpoint...
I thought the newer versions of StackExchange.Redis have been updated so it doesn't wait the 15 minutes? https://github.com/StackExchange/StackExchange.Redis/issues/2595 We're also running a docker container on linux app service which is...