redis阻塞问题

2019-11-27  本文已影响0人  迟凝丶捏米么

以下是学习笔记

# 修改慢查询时间与队列长度

# 方式一
修改配置文件
# The following time is expressed in microseconds, so 1000000 is equivalent
# to one second. Note that a negative number disables the slow log, while
# a value of zero forces the logging of every command.
# 这里默认是10ms 10毫秒
slowlog-log-slower-than 10000

# There is no limit to this length. Just be aware that it will consume memory.
# You can reclaim memory used by the slow log with SLOWLOG RESET.
# 慢日志队列长度
slowlog-max-len 128

# 方式二
config set slowlog-log-slower-than 20000
config set slowlog-max-len 1000
config rewrite
# 查看命令
# 显示队列长度
127.0.0.1:6379> SLOWLOG LEN
128

# 默认显示队列尾部的10个
127.0.0.1:6379> SLOWLOG GET

# 默认显示队列尾部的最后一个
127.0.0.1:6379> slowlog get 1
71057             // slowlog唯一编号id
1574822285        // 查询的时间戳
10184             // 查询的耗时(微秒),如表示本条命令查询耗时47微秒
KEYS              // 查询命令,完整命令为 KEYS history_1_*,slowlog最多保存前面的31个key和128字符
history_1_*
针对keys*的解决方案

方案一:初步方案采用scan,一个基于游标的迭代器,进行处理

// jedis.jar的版本为3.1.0
ScanParams scanParams = new ScanParams();
scanParams.match(patternKey);
scanParams.count(1000);
ScanResult<String> scanResult = jedis.scan(cursor, scanParams);

Redis的SCAN操作由于其整体的数据设计,无法提供特别准的scan操作,仅仅是一个“can't guarantee,just do my best”的实现:

方案二:主从集群,进行分离 待补充……

方案三:在放入之前想策略 待补充……

Redis 如何高效安全删除大 Hash Key

Redis 如何高效安全删除大 Hash Key

Redis删除大的集合键的耗时, 测试估算,可参考;和硬件环境、Redis版本和负载等因素有关

Key类型 Item数量 耗时
Hash ~100万 ~1000ms
List ~100万 ~1000ms
Set ~100万 ~1000ms
Sorted Set ~100万 ~1000ms

参看资料
redis cpu占用过高排查
SCAN 命令的基本用法

上一篇 下一篇

猜你喜欢

热点阅读