Redis超时,数据库中几乎没有数据,使用.NET客户端

Redis超时,数据库中几乎没有数据,使用.NET客户端,redis,Redis,我收到了这个错误: StackExchange.Redis.RedisTimeoutException: Timeout performing GET (5000ms), next: GET RetryCount, inst: 3, qu: 0, qs: 1, aw: False, rs: ReadAsync, ws: Idle, in: 7, in-pipe: 0, out-pipe: 0, serverEndpoint: redis:6379, mc: 1/1/0, mgr:

我收到了这个错误:

StackExchange.Redis.RedisTimeoutException: Timeout performing GET (5000ms),
    next: GET RetryCount, inst: 3, qu: 0, qs: 1, aw: False, rs: ReadAsync, ws: Idle, in: 7, in-pipe: 0, out-pipe: 0,
    serverEndpoint: redis:6379, mc: 1/1/0, mgr: 10 of 10 available, clientName: 18745af38fec,
    IOCP: (Busy=0,Free=1000,Min=1,Max=1000),
    WORKER: (Busy=6,Free=32761,Min=1,Max=32767), v: 2.1.58.34321
    (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
   
我们可以看到队列中只有一条消息(qs=1),只有7个字节等待读取(in=7)。Redis由2个进程使用,保存系统和存储日志的设置

这是一次重新安装,因此没有写入日志,数据库可能有2-3kb的数据:)

这是Redis的唯一输出:

1:C 12 Sep 2020 15:20:49.293 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
1:C 12 Sep 2020 15:20:49.293 # Redis version=6.0.8, bits=64, commit=00000000, modified=0, pid=1, just started
1:C 12 Sep 2020 15:20:49.293 # Configuration loaded
1:M 12 Sep 2020 15:20:49.296 * Running mode=standalone, port=6379.
1:M 12 Sep 2020 15:20:49.296 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
1:M 12 Sep 2020 15:20:49.296 # Server initialized
1:M 12 Sep 2020 15:20:49.296 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memor
y=1' for this to take effect.
1:M 12 Sep 2020 15:20:49.296 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo madvise > /sys/kernel/mm/transparent_hugepag
e/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled (set to 'madvise' or 'never').
1:M 12 Sep 2020 15:20:49.305 * DB loaded from append only file: 0.000 seconds
1:M 12 Sep 2020 15:20:49.305 * Ready to accept connections
看来那边没出什么问题。 访问它的两个进程都在docker容器中,Redis也是。所有这些都在单个AWS实例上,具有大量可用的ram和磁盘

这也是一个一次性事件,以前从未使用相同的配置发生过

我对Redis不是很有经验;错误消息中是否有任何看起来可疑的内容