当前位置: 首页> 科技> 名企 > 【.NET】asp.net core 程序重启容器后redis无法连接,连接超时

【.NET】asp.net core 程序重启容器后redis无法连接,连接超时

时间:2025/9/13 15:51:49来源:https://blog.csdn.net/a648642694/article/details/140635743 浏览次数:0次

环境是容器化部署asp.net core 程序当有大量请求打到容器如果此时重启容器会出现,redis无法连接情况。

使用 csredis 库报错:

Status unavailable, waiting for recovery. Connect to server timeout

使用StackExchange.Redis 报错:

Timeout performing SET (5000ms), active: SET GtkPMF.MES:DistributedLock:GtkPMF.MES:MesSnLockKey:Test125, next: SET GtkPMF.MES:DistributedLock:GtkPMF.MES:MesSnLockKey:Test125 ** possible thread-theft indicated; see https://stackexchange.github.io/StackExchange.Redis/ThreadTheft ** , inst: 27, qu: 0, qs: 46, aw: False, rs: CompletePendingMessageSync, ws: Idle, in: 0, in-pipe: 311, out-pipe: 0, serverEndpoint: 10.10.28.207:7551, mc: 1/1/0, mgr: 9 of 10 available, clientName: svc-touchscreen-v1-6c589d57bb-vqbwl, IOCP: (Busy=0,Free=1000,Min=12,Max=1000), WORKER: (Busy=36,Free=32731,Min=12,Max=32767), v: 2.2.4.27433 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts

通过阅读文章
https://stackexchange.github.io/StackExchange.Redis/ThreadTheft
得知可能是由于初始线程过于少,无法应对大量的请求导致
尝试调整

在 Program.cs 修改如下:

	 public static void Main(string[] args){// 添加设置线程池最小线程数ThreadPool.SetMinThreads(workerThreads: 100, completionPortThreads: 100);CreateHostBuilder(args).Build().Run();}

ok重写发布解决问题~

关键字:【.NET】asp.net core 程序重启容器后redis无法连接,连接超时

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: