Redis如何分析慢查询操作?

栏目: 数据库 · Redis · 发布时间: 6年前

内容简介:和mysql的慢SQL日志分析一样,redis也有类似的功能,来帮助定位一些慢查询操作。Redis slowlog是Redis用来记录查询执行时间的日志系统。查询执行时间指的是不包括像客户端响应(talking)、发送回复等IO操作,而单单是执行一个查询命令所耗费的时间。

Redis如何分析慢查询操作?

什么是慢查询

mysql 的慢 SQL 日志分析一样,redis也有类似的功能,来帮助定位一些慢查询操作。

Redis slowlog是 Redis 用来记录查询执行时间的日志系统。

查询执行时间指的是不包括像客户端响应(talking)、发送回复等IO操作,而单单是执行一个查询命令所耗费的时间。

另外,slow log保存在内存里面,读写速度非常快,因此你可以放心地使用它,不必担心因为开启slow log而损害Redis的速度。

慢查询参数

首先来关注下慢日志分析对应的两个参数:

1、slowlog-log-slower-than:预设阀值,即记录超过多少时间的记录,默认为10000微秒,即10毫秒。

2、slowlog-max-len:记录慢查询的条数,默认为128条,当超过设置的条数时最早进入队列的将被移除。线上建议增大数值,如:1000,这样可减少队列移除的频率。

127.0.0.1:6379> config get slowlog-log-slower-than  
1) "slowlog-log-slower-than"  
2) "10000"  
127.0.0.1:6379> config get slowlog-max-len  
1) "slowlog-max-len"  
2) "128"  

可以用config set对这两个参数进行调整,或者在配置文件中设置。

################################## SLOW LOG ################################### 
 
# The Redis Slow Log is a system to log queries that exceeded a specified 
 
# execution time. The execution time does not include the I/O operations 
 
# like talking with the client, sending the reply and so forth, 
 
# but just the time needed to actually execute the command (this is the only 
 
# stage of command execution where the thread is blocked and can not serve 
 
# other requests in the meantime). 
 
# 
 
# You can configure the slow log with two parameters: one tells Redis 
 
# what is the execution time, in microseconds, to exceed in order for the 
 
# command to get logged, and the other parameter is the length of the 
 
# slow log. When a new command is logged the oldest one is removed from the 
 
# queue of logged commands.  
 
 
# 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. 
 
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 

慢查询命令

语法:slowlog subcommand [argument]

如,进行查询慢查询、获取慢查询记录的数量、重置慢查询日志等操作:

192.168.10.38:9001> slowlog get 
 
(empty list or set) 
 
192.168.10.38:9001> slowlog get 10 
 
(empty list or set) 
 
192.168.10.38:9001> slowlog len  
 
(integer) 0 
 
192.168.10.38:9001> slowlog reset 
 
OK   

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

大数据预测

大数据预测

【美】埃里克·西格尔 / 周昕 / 中信出版社 / 2014-3 / 58.00

360公司董事长周鸿祎、《罗辑思维》主讲人罗振宇郑重推荐 2020年的一天,在你驱车前往公司的路上,导航系统通过预测交通流量,会自动帮你选择一条最合适的交通路线;车内推荐系统会根据你的饮食习惯预测你可能会喜欢吃什么,并推荐沿途的早餐店;你的电子社交助理已经为你自动选择了你可能感兴趣的社交网信息;当车内系统预测到你驾车有些分心时,座椅会自动震动进行提醒…… 以上这些情景不是科幻大片独有的......一起来看看 《大数据预测》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具