Redis的慢查詢日誌功能用於記錄執行時間超過給定時長的命令請求,用戶能夠經過這個功能產生的日誌來監視和優化查詢速度。
服務器配置有兩個和慢查詢日誌相關的選項:
* slowlog-log-slower-than 選項指定執行時間超過多少微妙(1秒等於1 000 000微妙)的命令請求 會被記錄到日誌上。
* showlog-max-len 選項指定服務器最多保存多少條慢查詢日誌。
服務器使用先進先出的方式保存多條慢查詢日誌,當服務器存儲的慢查詢日誌數量等於
slowlog-max-len 選線的值時,服務器在添加一條新的慢查詢日誌以前,會先將最舊的一條慢查詢日誌刪除。redis
################################## 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 slowlog-log-slower-than 0 # 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-max-len 2
上面的慢查詢日誌的配置,執行下面的例子的結果:
[root@localhost redis-3.2.0]# ./src/redis-server ./redis.conf
[root@localhost redis-3.2.0]# redis-cli -p 7000
127.0.0.1:7000> set "nao" "name"
OK
127.0.0.1:7000> set "age" "19"
OK
127.0.0.1:7000> slowlog get
1) 1) (integer) 1
2) (integer) 1464262866
3) (integer) 8
4) 1) "set"
2) "age"
3) "19"
2) 1) (integer) 0
2) (integer) 1464262851
3) (integer) 7
4) 1) "set"
2) "nao"
3) "name"
127.0.0.1:7000> set "number" "3"
OK
127.0.0.1:7000> slowlog get
1) 1) (integer) 3
2) (integer) 1464262899
3) (integer) 7
4) 1) "set"
2) "number"
3) "3"
2) 1) (integer) 2
2) (integer) 1464262869
3) (integer) 29
4) 1) "slowlog"
2) "get"express
慢查詢日誌記錄保存:bash
//保存了全部慢查詢日誌的鏈表 list *slowlog; /* SLOWLOG list of commands */ //下一條慢查詢日誌的id long long slowlog_entry_id; /* SLOWLOG current entry ID */ //服務器配置slow_log_slower_than的值 long long slowlog_log_slower_than; /* SLOWLOG time limit (to get logged) */ //服務器配置slowlog_max_len的值 unsigned long slowlog_max_len; /* SLOWLOG max number of items logged */
slowlog_entry_id屬性的初始值爲0,每當建立一條新的慢查詢日誌時,這個屬性的值就會用做新日誌的id值,以後程序會對這個屬性的值增一。服務器
slowlog鏈表保存了服務器中的全部慢查詢日誌,鏈表中的每一個結點都保存了一個slowEntry結構,每一個slowlogEntry結構表明一條慢查詢日誌:ide
/* This structure defines an entry inside the slow log list */ typedef struct slowlogEntry { //命令與命令參數 robj **argv; //命令與命令參數的數量 int argc; //惟一標識符 long long id; /* Unique entry identifier. */ //執行命令消耗的時間,以微妙爲單位 long long duration; /* Time spent by the query, in nanoseconds. */ //命令執行時的時間,格式爲UNIX時間戳 time_t time; /* Unix time at which the query was executed. */ } slowlogEntry;
總結:
Redis的慢查詢日誌功能用於記錄執行時間超過指定時長的命令。
Redis服務器將全部的慢查詢日誌保存在服務器狀態的slowlog鏈表中,每一個鏈表結點都包含一個slowlogEntry結構,每一個slowlogEntry結構表明一個慢查詢日誌。
打印和刪除慢查詢日誌能夠經過遍歷slowlog鏈表來完成。
slowlog鏈表的長度就是服務器所保存慢查詢日誌的數量。
新的慢查詢日誌會被添加到slowlog鏈表的表頭,若是日誌的數量超過slowlog-max-len選項的值,那麼多出來的日誌會被刪除。優化