目錄
- 1、sentinel monitor
- 2、sentinel down-after-milliseconds
- 3、sentinel parallel-syncs
- 4、sentinel failover-timeout
- 5、sentinel auth-pass
- 6、sentinel notification-scripts
- 7、sentinel client-reconfig-scripts
- Redis Sentinel同時監(jiān)控多個Redis節(jié)點
- Redis Sentinel 動態(tài)配置調(diào)整
- Redis Sentinel部署原則
- 相關(guān)的sentinel API:
1、sentinel monitor
用法:
sentinel monitor master-name ip port quorum
其中,master-name是主節(jié)點的名稱,ip,port不用解釋,是主節(jié)點的地址信息。
最后的quorum是判斷主節(jié)點最終不可達(dá)所需要的票數(shù)。這個值越大,判斷越可信,這個值越小,判斷越不可信,一般這個數(shù)字取的是sentinel節(jié)點數(shù)目的一半+1.同時,該值還與sentinel節(jié)點的領(lǐng)導(dǎo)者選舉有關(guān),至少要有max(quorum,num (sentinel)/2+1)個節(jié)點參與選舉,才能選出領(lǐng)導(dǎo)者sentinel,從而完成故障轉(zhuǎn)換。例如有5個sentinel節(jié)點,quorum設(shè)置為4,那么num(sentinel)/2+1=3,max函數(shù)返回4,最少要有4個節(jié)點才可以進(jìn)行領(lǐng)導(dǎo)者選舉。
2、sentinel down-after-milliseconds
用法如下:
sentinel down-after-milliseconds master-name times
該參數(shù)表示超過了配置的時間,沒有收到有效的回復(fù),則判斷sentinel節(jié)點不可達(dá),其中time的單位是毫秒。其中master-name為sentinel節(jié)點的名稱。
3、sentinel parallel-syncs
用法:
sentinel parallel-syncs master-name nums
4、sentinel failover-timeout
用法:
sentinel failover-timeout master-name times
failover-timeout通常翻譯成故障轉(zhuǎn)移超時時間(以下簡稱FT),但實際上它作用于故障轉(zhuǎn)移的各個階段。它的作用:
a、如果redis sentinel對一個主節(jié)點的額故障轉(zhuǎn)移失敗,那么下次在對該主節(jié)點做故障轉(zhuǎn)移的起始時間是FT的2倍
b、對于新選出來的主節(jié)點,執(zhí)行slaveof no one的時候(因為原來它是個從庫),如果出現(xiàn)失敗,當(dāng)超過FT時,則故障轉(zhuǎn)移失敗。
c、選出新的主節(jié)點后,redis會在新主節(jié)點上執(zhí)行info命令,如果執(zhí)行時間超過FT時,則故障轉(zhuǎn)移失敗
d、如果其余從節(jié)點和新的主節(jié)點,在重新建立復(fù)制關(guān)系的時候,如果超過了FT的時間,那么故障轉(zhuǎn)移失敗。
5、sentinel auth-pass
用法:
sentinel auto-pass master-name password
從節(jié)點sentinel上配置主節(jié)點的密碼,從而保證可以和主節(jié)點進(jìn)行通信
6、sentinel notification-scripts
用法:
sentinel notification-scripts master-name scripts-path
7、sentinel client-reconfig-scripts
用法:
sentinel client-reconfig-scripts master-name scripts-path
在故障轉(zhuǎn)移結(jié)束后,會觸發(fā)對應(yīng)路徑的腳本,并向腳本發(fā)送故障轉(zhuǎn)移結(jié)果的相關(guān)參數(shù)。例如配置郵件或者報警。
參數(shù)6和參數(shù)7中需要注意,配置的腳本必須有執(zhí)行權(quán)限,同時必須包含shell腳本頭,腳本的最大執(zhí)行時間不能超過60s,不過在一般的線上環(huán)境,通常不會用這個參數(shù)來配置相關(guān)腳本。
Redis Sentinel同時監(jiān)控多個Redis節(jié)點
這個還是比較簡單的,只需要在sentinel的配置文件中寫上多個節(jié)點的名稱,其他參數(shù)也區(qū)分開來即可。例如:
sentinel monitor node1 IP1 port1 quorum1
sentinel client-reconfig-scripts node1 scripts-path1
--------
sentinel monitor node2 IP2 port2 quorum2
sentinel client-reconfig-scripts node2 scripts-path2
Redis Sentinel 動態(tài)配置調(diào)整
我們可以使用sentinel set param value的方法來動態(tài)的設(shè)置sentinel的參數(shù),這里有幾點需要注意:
1、sentinel set命令只對當(dāng)前sentinel節(jié)點有效
2、sentinel set命令如果執(zhí)行成功,會立即刷新配置文件,而不需要我們手動config rewrite
3、建議所有sentinel節(jié)點的配置盡可能一致,可以提高故障轉(zhuǎn)移的有效性
4、sentinel對外不支持config命令
Redis Sentinel部署原則
a、sentinel節(jié)點不應(yīng)該部署在一臺物理機器上。這個比較容易理解
b、部署至少三個且奇數(shù)個sentinel節(jié)點。注意,這里的奇數(shù)個不是為了投票,而是因為偶數(shù)個和奇數(shù)個的投票效果一致,奇數(shù)個可以節(jié)省一個節(jié)點。
c、有條件的情況下,盡量使用sentinel節(jié)點和redis節(jié)點一對一的方式部署,不要使用同一套sentinel來管理多個redis主節(jié)點。
相關(guān)的sentinel API:
1、sentinel masters
展示所有被監(jiān)控的主節(jié)點狀態(tài)以及相關(guān)的統(tǒng)計信息
[root@VM_48_10_centos ~]# redis-cli -p 26379
127.0.0.1:26379> sentinel masters
1) 1) "name"
2) "mymaster"
3) "ip"
4) "127.0.0.1"
5) "port"
6) "6379"
7) "runid"
8) "2ba04c1d8f837f2e419f6f5390c0d5938a6895f4"
9) "flags"
10) "master"
11) "pending-commands"
12) "0"
13) "last-ping-sent"
14) "0"
15) "last-ok-ping-reply"
16) "377"
17) "last-ping-reply"
18) "377"
19) "down-after-milliseconds"
20) "30000"
21) "info-refresh"
22) "8296"
23) "role-reported"
24) "master"
25) "role-reported-time"
26) "170821848"
27) "config-epoch"
28) "0"
29) "num-slaves"
30) "2"
31) "num-other-sentinels"
32) "2"
33) "quorum"
34) "2"
35) "failover-timeout"
36) "180000"
37) "parallel-syncs"
38) "1"
2、sentinel master master-name
展示指定master-name的主節(jié)點狀態(tài)以及相關(guān)的統(tǒng)計信息
3、sentinel slaves master-name
展示指定master-name的從節(jié)點狀態(tài)以及相關(guān)統(tǒng)計信息
127.0.0.1:26379> sentinel slaves mymaster
1) 1) "name"
2) "127.0.0.1:6380"
3) "ip"
4) "127.0.0.1"
5) "port"
6) "6380"
7) "runid"
----------------省略------------
2) 1) "name"
2) "127.0.0.1:6381"
3) "ip"
4) "127.0.0.1"
5) "port"
6) "6381"
7) "runid"
4、sentinel sentinels master-name
展示指定master-name的sentinel節(jié)點集合,不包含當(dāng)前sentinel節(jié)點。
5、sentinel get-master-addr-by-name master-name
返回指定master-name的主節(jié)點的IP和端口
127.0.0.1:26379> sentinel get-master-addr-by-name mymaster
1) "127.0.0.1"
2) "6379"
6、sentinel reset pattern
sentinel對于符合pattern通配符風(fēng)格的主節(jié)點配置進(jìn)行重置,包含清除主節(jié)點的相關(guān)狀態(tài),重新發(fā)現(xiàn)從節(jié)點和sentinel節(jié)點等
7、sentinel failover master-name
對指定master-name>的主節(jié)點進(jìn)行強制故障轉(zhuǎn)移,該命令在redis的日常運維中非常有用。
8、sentinel ckquorum master-name
檢測當(dāng)前可達(dá)的sentinel節(jié)點總數(shù)是否達(dá)到了quorum的個數(shù),例如quorum的值為3,而當(dāng)前的可達(dá)的sentinel節(jié)點個數(shù)為2,則無法進(jìn)行故障轉(zhuǎn)移,redis sentinel的高可用特性也將失去
9、sentinel flushconfig
將sentinel節(jié)點的配置強制刷到磁盤上,這個命令sentinel節(jié)點自身用的比較多,當(dāng)配置文件丟失或者損壞時,該命令比較有用。
10、sentinel remove master-name
取消當(dāng)前redis sentinel節(jié)點對于指定master-name主節(jié)點的監(jiān)控。
11、sentinel monitor master-name ip port quorum
這個命令和配置文件中的配置是一樣的,都是為了監(jiān)控主節(jié)點。只不過這個是通過命令的形式監(jiān)控的。
12、sentinel set master-name
動態(tài)修改sentinel節(jié)點的配置選項
13、sentinel is-master-down-by-addr
sentinel節(jié)點之間用來交換對主節(jié)點是否下線的判斷,根據(jù)參數(shù)的不同,可以作為sentinel領(lǐng)導(dǎo)者選舉的通信方式。
以上就是Redis Sentinel的使用方法的詳細(xì)內(nèi)容,更多關(guān)于Redis Sentinel的使用的資料請關(guān)注腳本之家其它相關(guān)文章!
您可能感興趣的文章:- 淺析Redis Sentinel 與 Redis Cluster
- 基于SpringCloud手寫一個簡易版Sentinel
- Spring Cloud Alibaba之Sentinel實現(xiàn)熔斷限流功能
- Sentinel實現(xiàn)動態(tài)配置的集群流控的方法
- 解決redis sentinel 頻繁主備切換的問題
- Redis Sentinel的基本搭建
- Spring Cloud Alibaba 使用 Feign+Sentinel 完成熔斷的示例
- Java之SpringCloudAlibaba Sentinel組件案例講解