溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Sentinel如何在Redis中使用

發(fā)布時間:2021-03-30 18:01:09 來源:億速云 閱讀:251 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)Sentinel如何在Redis中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

1、sentinel monitor

用法:

sentinel monitor master-name  ip port quorum

其中,master-name是主節(jié)點的名稱,ip,port不用解釋,是主節(jié)點的地址信息。

   最后的quorum是判斷主節(jié)點最終不可達所需要的票數(shù)。這個值越大,判斷越可信,這個值越小,判斷越不可信,一般這個數(shù)字取的是sentinel節(jié)點數(shù)目的一半+1.同時,該值還與sentinel節(jié)點的領導者選舉有關(guān),至少要有max(quorum,num (sentinel)/2+1)個節(jié)點參與選舉,才能選出領導者sentinel,從而完成故障轉(zhuǎn)換。例如有5個sentinel節(jié)點,quorum設置為4,那么num(sentinel)/2+1=3,max函數(shù)返回4,最少要有4個節(jié)點才可以進行領導者選舉。

2、sentinel  down-after-milliseconds 

用法如下:

sentinel  down-after-milliseconds master-name  times

該參數(shù)表示超過了配置的時間,沒有收到有效的回復,則判斷sentinel節(jié)點不可達,其中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)失敗,當超過FT時,則故障轉(zhuǎn)移失敗。

c、選出新的主節(jié)點后,redis會在新主節(jié)點上執(zhí)行info命令,如果執(zhí)行時間超過FT時,則故障轉(zhuǎn)移失敗

d、如果其余從節(jié)點和新的主節(jié)點,在重新建立復制關(guān)系的時候,如果超過了FT的時間,那么故障轉(zhuǎn)移失敗。

5、sentinel auth-pass

用法:

sentinel auto-pass master-name password

從節(jié)點sentinel上配置主節(jié)點的密碼,從而保證可以和主節(jié)點進行通信

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ā)對應路徑的腳本,并向腳本發(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-path2
--------
sentinel monitor node2 IP2 port2 quorum2
sentinel client-reconfig-scripts node2 scripts-path3

Redis Sentinel 動態(tài)配置調(diào)整

   我們可以使用sentinel set param value的方法來動態(tài)的設置sentinel的參數(shù),這里有幾點需要注意:

1、sentinel set命令只對當前sentinel節(jié)點有效

2、sentinel set命令如果執(zhí)行成功,會立即刷新配置文件,而不需要我們手動config rewrite

3、建議所有sentinel節(jié)點的配置盡可能一致,可以提高故障轉(zhuǎn)移的有效性

4、sentinel對外不支持config命令

Redis Sentinel部署原則

a、sentinel節(jié)點不應該部署在一臺物理機器上。這個比較容易理解

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é)點集合,不包含當前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通配符風格的主節(jié)點配置進行重置,包含清除主節(jié)點的相關(guān)狀態(tài),重新發(fā)現(xiàn)從節(jié)點和sentinel節(jié)點等

7、sentinel failover master-name

 對指定<master-name>的主節(jié)點進行強制故障轉(zhuǎn)移,該命令在redis的日常運維中非常有用。

8、sentinel ckquorum  master-name

檢測當前可達的sentinel節(jié)點總數(shù)是否達到了quorum的個數(shù),例如quorum的值為3,而當前的可達的sentinel節(jié)點個數(shù)為2,則無法進行故障轉(zhuǎn)移,redis sentinel的高可用特性也將失去

9、sentinel flushconfig

將sentinel節(jié)點的配置強制刷到磁盤上,這個命令sentinel節(jié)點自身用的比較多,當配置文件丟失或者損壞時,該命令比較有用。

10、sentinel remove master-name

取消當前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領導者選舉的通信方式。

看完上述內(nèi)容,你們對Sentinel如何在Redis中使用有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI