gpt4 book ai didi

c# - 无法连接到 redis 服务器;连接超时

转载 作者:可可西里 更新时间:2023-11-01 11:14:29 26 4
gpt4 key购买 nike

我将 Azure Function V1 与 StackExchange.Redis 1.2.6 结合使用。函数每分钟接收 1000 条消息,对于每条消息,对于每台设备,我正在检查 Redis。我注意到当我们收到更多消息时,我们会遇到错误。

Exception while executing function: TSFEventRoutingFunction No connection is available to service this operation: HGET GEO_DYNAMIC_hash; It was not possible to connect to the redis server(s); ConnectTimeout; IOCP: (Busy=1,Free=999,Min=24,Max=1000), WORKER: (Busy=47,Free=32720,Min=24,Max=32767), Local-CPU: n/a It was not possible to connect to the redis server(s); ConnectTimeout

CacheService 由 MS 推荐

public class CacheService : ICacheService
{
private readonly IDatabase cache;
private static readonly string connectionString = ConfigurationManager.AppSettings["RedisConnection"];

public CacheService()
{
this.cache = Connection.GetDatabase();
}

private static Lazy<ConnectionMultiplexer> lazyConnection = new Lazy<ConnectionMultiplexer>(() =>
{
return ConnectionMultiplexer.Connect(connectionString);
});

public static ConnectionMultiplexer Connection
{
get
{
return lazyConnection.Value;
}
}

public async Task<string> GetAsync(string hashKey, string ruleKey)
{
return await this.cache.HashGetAsync(hashKey, ruleKey);
}
}

我在 Azure 函数中注入(inject) ICacheService 并在每次请求时调用 GetAsync 方法。

使用 Azure Redis 实例 C3

enter image description here

目前,你可以看到我有一个连接,创建多个连接将有助于解决这个问题?或解决/理解此问题的任何其他建议。

最佳答案

导致错误的原因有很多。以下是一些我能想到的(不分先后):

  1. 您的 connectTimeout 太小。我经常看到客户经常设置一个小的连接超时,因为他们认为这将确保在该时间跨度内建立连接。这种方法的问题在于,当出现问题时(高客户端 CPU、高服务器 CPU 等),连接尝试将失败。这通常会使糟糕的情况变得更糟 - 它没有帮助,而是通过强制系统重新启动尝试重新连接的过程来加剧问题,通常会导致 connect -> fail -> retry 循环。我通常建议您将 connectionTimeout 设置为 15 秒或更长。最好让您的连接尝试在 15 或 20 秒后成功,而不是让它在 5 秒后反复失败,导致中断持续几分钟直到系统最终恢复。

  2. 发生服务器端故障转移。由于某种类型的从主服务器到副本的故障转移,服务器切断了连接。如果在 Redis 层、操作系统层或托管层更新服务器端软件,就会发生这种情况。

  3. 某种类型的网络基础设施故障(位于客户端和服务器之间的硬件出现某种类型的问题)。

  4. 您更改了 Redis 实例的访问密码。更改密码将重置与所有客户端的连接,以强制它们重新进行身份验证。

  5. 需要调整线程池设置。如果您的线程池设置没有针对您的工作负载进行正确调整,那么您可能会在启动新线程时遇到延迟,如 explained here .

我写了一堆best practices for Redis这也将帮助您避免其他问题。

关于c# - 无法连接到 redis 服务器;连接超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56425997/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com