csredis
csredis copied to clipboard
状态不可用,等待后台检查程序恢复方可使用
并发测试下 报错这个,用的static存储的节点对象
static CSRedis.CSRedisClient[] _csredis = new CSRedis.CSRedisClient[16];
public CustomerRedis(string connectionString, List<int> list)
{
foreach (var item in list)
{
if (_csredis[item] == null)
{
_csredis[item] = new CSRedis.CSRedisClient(connectionString + item);
}
}
}
同样报错了,一并发就不行了,开启了ssl=true
有啥好办法处理么
------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年3月18日(星期五) 下午2:53 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430)
同样报错了,一并发就不行了,开启了ssl=true
— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>
是不是服务器本地不支持太高并发的连接频率
我的是azure上的redis ------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年3月18日(星期五) 晚上8:48 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430)
是不是服务器本地不支持太高并发的连接频率
— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>
我升级版本到最新的之后,就好了
我是3.6.6报的错误,要升到3.6.9 可以解决么
------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年3月21日(星期一) 中午1:31 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430)
我升级版本到最新的之后,就好了
— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>
对,我升级3.6.9之后解决了,并发压测目前没看到问题。
我是3.6.6报的错误,要升到3.6.9 可以解决么 … ------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年3月21日(星期一) 中午1:31 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430) 我升级版本到最新的之后,就好了 — Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>
你升级试试看,如果好了麻烦给我也说声
好的,我先升级试试看
------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年3月21日(星期一) 中午1:35 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430)
我是3.6.6报的错误,要升到3.6.9 可以解决么 … ------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年3月21日(星期一) 中午1:31 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430) 我升级版本到最新的之后,就好了 — Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>
你升级试试看,如果好了麻烦给我也说声
— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>
搞定了吗?我升级到3.6.9好像没有解决问题。
我的貌似也不是很好使
------------------ 原始邮件 ------------------ 发件人: "2881099/csredis" @.>; 发送时间: 2022年4月14日(星期四) 下午5:43 @.>; @.@.>; 主题: Re: [2881099/csredis] 状态不可用,等待后台检查程序恢复方可使用 (Issue #430)
搞定了吗?我升级到3.6.9好像没有解决问题。
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
连接字符串:r.redis.rds.aliyuncs.com:6379,password=123456,allowadmin=true,writebuffer=1024000,testcluster=false,preheat=1,idletimeout=30000,connectTimeout=10000,tryit=3,defaultDatabase=0
,版本:3.6.9
依旧不好使,刚启动能跑,一会就全挂了
连接字符串:
r.redis.rds.aliyuncs.com:6379,password=123456,allowadmin=true,writebuffer=1024000,testcluster=false,preheat=1,idletimeout=30000,connectTimeout=10000,tryit=3,defaultDatabase=0
,版本:3.6.9
依旧不好使,刚启动能跑,一会就全挂了
阿里云连接频率过低,或者 dns 解析过慢(这个以前验证过)
我也遇到了同样的问题,我的连接字符串是这样的
r.redis.rds.aliyuncs.com:6379,password=123456,testcluster=false,idletimeout=30000,tryit=3,defaultDatabase=0,autoDispose=false,poolsize=200
@2881099