Redis 如何分析慢查询操作

转载自  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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/325273.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Arrays工具类(jre中基本类库提供的工具类)

1.Arrays.sort(arr); 给数组arr排序 2.Arrays.toString(arr) 打印arr数组 3.Arrays.binarySearch(arr,26); 在数组中快速的查询给定元素出现的位置 如果找到元素 返回元素索引 没找到返回一个负数 在使用时,要求数组必须是升序的 4.Array.copyOf(arr,arr.length);拷贝数组&a…

mysql中的isnull

where条件中的等于号不能比较空值

使用面向对象(OO)的思想,实现循环输入多个会员的信息,根据会员编号,查找会员积分

先来看一下运行结果: 主要知识点是:对象数组的使用编写软件:Myeclipse 10.5JDK版本:1.7完成时间:25分钟 实现思路: 在会员类中(HuiYuan),我们别的事不用干,只需要声明…

应用软件系统程序员的三个立面

这几年工作的重心其实一直没有在代码上,做了很多产品的工作,一直觉得打造一个全面发展的团队一定是我价值所在,所以一直说自己最擅长谈梦想,也确实跟很多人谈了梦想怎么落地、谈了职业规划、孜孜不倦的去聊如何才能踏踏实实的走好…

10 种保护 Spring Boot 应用的绝佳方法

转载自 10 种保护 Spring Boot 应用的绝佳方法 Spring Boot大大简化了Spring应用程序的开发。它的自动配置和启动依赖大大减少了开始一个应用所需的代码和配置量,如果你已经习惯了Spring和大量XML配置,Spring Boot无疑是一股清新的空气。 Spring Boot…

第一个网页

<html><head><meta charset"utf-8" /><title>第一个网页</title><meta name "keywords" content "尚学堂" /><meta name "author " content "王洋洋" /><meta namedescr…

记一次分布式B站爬虫任务系统的完整设计和实施

今天带来一个有意思的东西-分布式B站爬虫任务系统 这个小玩意源于上周在研究Azure的时候&#xff0c;发现云服务厂商都在推荐轻量级的存储队列服务&#xff0c;用来取代原有的比较重的消息队列服务&#xff0c;具体来说&#xff0c;比如阿里云就推荐使用消息服务替代消息队列&a…

《四世同堂》金句摘抄(十七)

System.out.println("明天结束掉它"); System.out.println("下一本书你啥呢&#xff1f;"); System.out.println("《房思琪的初恋乐园》吧");地是光光的&#xff0c;冰硬的&#xff0c;灰黄的&#xff0c;城墙是灰黑的&#xff0c;坚硬的&#x…

Java8使用 Optional 处理 null

转载自 Java8&#xff08;5&#xff09;&#xff1a;使用 Optional 处理 null 写过 Java 程序的同学&#xff0c;一般都遇到过 NullPointerException :) —— 为了不抛出这个异常&#xff0c;我们便会写如下的代码&#xff1a; User user getUserById(id); if (user ! null…

css引入

<!DOCTYPE html> <html><head><meta charset"UTF-8"><title></title><!--链接式--><link rel"stylesheet" href"css/mycss.css" /><!--内嵌式--><style>/* 选择器 */span{font-si…

《四世同堂》金句摘抄(十八)

System.out.println("终于看完了&#xff0c;4600多页"); System.out.println("下一本书看"); System.out.println("《朝花夕拾》吧");打一巴掌揉三揉&#xff0c;缺他妈的德&#xff01;下午三点&#xff0c;正是一天最热的时节。院里毒花花的太…

C# 7.1先睹为快(第一部分)

自2003年以来&#xff0c;Microsoft首次考虑对C#使用带小数点后位数的版本。当前暂定下一个版本是C# 7.1&#xff0c;其中有望包括&#xff1a;异步Main函数&#xff08;Async Main&#xff09;、默认表达式&#xff08;Default Expression&#xff09;、推导元组名&#xff08…

mongodb如何实现更新一个字段的值为另外一个字段的值?

转载自 mongodb如何实现更新一个字段的值为另外一个字段的值? db.CargoUserProfiles.find().forEach(function(item){db.CargoUserProfiles.update({"id":item._id},{"$set":{"LastUpdate":item.CreateAt}},false,true)} )db.CargoUserProfi…

JS中的map函数(会改变不是基本类型的数组的值)

1、数组的值是基本类型时&#xff0c;map不会改变原有数据 2、数组的值是引用类型时&#xff08;对象&#xff09;&#xff0c;map会修改数组的值

Defination list(定义列表)

<!DOCTYPE html> <html><head><meta charset"UTF-8"><title>定义表</title></head><body><dl stytle"border:1px solid red;width: 300px;height:180px;"><dt><a href"https://www.j…

《朝花夕拾》金句摘抄(一)

System.out.println("今天看到朝花夕拾"); System.out.println("很好的一部书"); System.out.println("看起来比较吃力&#xff0c;很难理解");英国诗人拜伦曾经说过&#xff1a;“一滴墨水可以引发千万人的思考&#xff0c;一本好书可以改变无数…

MongoDB查询实现 笛卡尔积,Union All 和Union 功能

转载自 MongoDB查询实现 笛卡尔积,Union All 和Union 功能 此篇文章及以后的文章大部分都是从聚合管道(aggregation pipeline)的一些语法为基础讲解的,如果不理解聚合管道的话,可以先学习一下会比较容易理解. 可以参考 mongoDB Documentation 的 Pipeline Aggregaion Stages.…

袜子商店应用:一个云原生参照应用

本文要点 袜子商店应用始于一个简单的演示应用&#xff0c;之后发现它十分有用&#xff0c;最终演化成一个完全容器化的、云原生参照应用。该应用混合使用了Go、Java、Spring以及Node.js。它拥有完整的持续集成和发布管道&#xff0c;最终会发布到AWS上Kubernetes集群的准生产…