Redis哨兵集群

来源:http://www.cnblogs.com/xinxiucan/archive/2017/09/26/7597394.html
-Advertisement-
Play Games

Sentinel(哨兵)是Redis 的高可用性解決方案:由一個或多個Sentinel 實例 組成的Sentinel 系統可以監視任意多個主伺服器,以及這些主伺服器屬下的所有從伺服器,併在被監視的主伺服器進入下線狀態時,自動將下線主伺服器屬下的某個從伺服器升級為新的主伺服器。 ...


Redis哨兵集群

Redis-redis哨兵集群 | 辛修燦Blog

1、Sentinel 哨兵
 
Sentinel(哨兵)是Redis 的高可用性解決方案:由一個或多個Sentinel 實例 組成的Sentinel 系統可以監視任意多個主伺服器,以及這些主伺服器屬下的所有從伺服器,併在被監視的主伺服器進入下線狀態時,自動將下線主伺服器屬下的某個從伺服器升級為新的主伺服器。
例如:

     
在Server1 掉線後:

升級Server2 為新的主伺服器:
  
 
 
2、Redis 主從分離
 在講解Sentinel 哨兵集群之前,我們先來搭建一個簡單的主從分離(讀寫分離)。
   首先,我們預設大家都已經安裝了redis,然後我們將 redis.conf 拷貝多份,並且創建多個目錄,用於區分多個redis 服務:
   
 這裡面,每個目錄中都有自己的redis.conf 配置文件,接下來,我們先設置主伺服器的配置文件。

一、配置Master

   1、修改埠

# Accept connections on the specified port, default is 6379 (IANA #815344).
# If port 0 is specified Redis will not listen on a TCP socket.
port 6380

  redis 的預設埠是6379,這裡我們把主伺服器的埠設置為6380
 
 2、修改pidfile

# If a pid file is specified, Redis writes it where specified at startup
# and removes it at exit.
#
# When the server runs non daemonized, no pid file is created if none is
# specified in the configuration. When the server is daemonized, the pid file
# is used even if not specified, defaulting to "/var/run/redis.pid".
#
# Creating a pid file is best effort: if Redis is not able to create it
# nothing bad happens, the server will start and run normally.
pidfile /var/run/redis_6380.pid

  pidfile 是我們啟動redis 的時候,linux 為我們分配的一個pid 進程號,如果這裡不作修改,會影響後面redis服務的啟動
 
   3、啟動 redis

  啟動redis,我們可以看到,redis已經占領了6380 埠
  進入客戶端

redis-cli -p 6380
127.0.0.1:6380> info
...
# Replication
role:master
connected_slaves:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0
...

 
   我們可以看到,redis 現在的角色是一個master 啟動的服務。
 

二、配置Slave

  和上面配置 master一樣,我們需要修改埠號和pid 文件,在修改完之後,我們有兩種方法配置從服務
  1、在配置文件中配置從服務

################################# REPLICATION #################################

# Master-Slave replication. Use slaveof to make a Redis instance a copy of
# another Redis server. A few things to understand ASAP about Redis replication.
#
# 1) Redis replication is asynchronous, but you can configure a master to
#    stop accepting writes if it appears to be not connected with at least
#    a given number of slaves.
# 2) Redis slaves are able to perform a partial resynchronization with the
#    master if the replication link is lost for a relatively small amount of
#    time. You may want to configure the replication backlog size (see the next
#    sections of this file) with a sensible value depending on your needs.
# 3) Replication is automatic and does not need user intervention. After a
#    network partition slaves automatically try to reconnect to masters
#    and resynchronize with them.
#
# slaveof <masterip> <masterport>
slaveof 127.0.0.1 6380

  我們可以在配置文件中直接修改 slaveof 屬性,我們直接配置主伺服器的ip 地址,和埠號,如果這裡主伺服器有配置密碼
  可以通過配置masterauth 來設置鏈接密碼

# If the master is password protected (using the "requirepass" configuration
# directive below) it is possible to tell the slave to authenticate before
# starting the replication synchronization process, otherwise the master will
# refuse the slave request.
#
# masterauth <master-password>

   
      啟動redis 服務:

  我們可以看到,現在有兩個現在在運行,我們進入6381的客戶端,看一下他的狀態,

# Replication
role:slave
master_host:127.0.0.1
master_port:6380
master_link_status:up
master_last_io_seconds_ago:1
master_sync_in_progress:0
slave_repl_offset:71
slave_priority:100
slave_read_only:1
connected_slaves:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0

 
  我們可以看到,現在的redis 是一個從服務的角色,連接著6380的服務。
 
  2、在服務啟動後設置
我們修改6382埠的伺服器配置文件之後,啟動服務

進入客戶端,查看當前伺服器的狀態:

# Replication
role:master
connected_slaves:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0

我們可以看到,當前伺服器的狀態時作為一個主服務的角色在運行,我們接下來修改他的狀態:

127.0.0.1:6382> slaveof 127.0.0.1 6380

//修改後狀態
# Replication
role:slave
master_host:127.0.0.1
master_port:6380
master_link_status:up
master_last_io_seconds_ago:1
master_sync_in_progress:0
slave_repl_offset:617
slave_priority:100
slave_read_only:1
connected_slaves:0
master_repl_offset:0
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0

    
3、總結
我們先看一下目前master 的狀態:

# Replication
role:master
connected_slaves:2
slave0:ip=127.0.0.1,port=6381,state=online,offset=785,lag=0
slave1:ip=127.0.0.1,port=6382,state=online,offset=785,lag=0
master_repl_offset:785
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:2
repl_backlog_histlen:784

 
   我們可以可以看到,兩個從服務已經在連著主伺服器,上面兩種配置的區別在於,當salve 斷線重連之後,
   如果我們是修改類配置文件,重連之後會自己鏈接上去master,並且同步master 上面的數據,
   如果我們是手動連接上去的主伺服器,重連之後,從伺服器會讀取自己本地的 rdb 回覆數據,而不會去自動鏈接主服務
 
     我們如果需要設置讀寫分離,只需要在主伺服器中設置:

# Note: read only slaves are not designed to be exposed to untrusted clients
# on the internet. It's just a protection layer against misuse of the instance.
# Still a read only slave exports by default all the administrative commands
# such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
# security of read only slaves using 'rename-command' to shadow all the
# administrative / dangerous commands.
slave-read-only yes

 
 
 

三、Sentinel 哨兵

 
1、配置埠
    在sentinel.conf 配置文件中, 我們可以找到port 屬性,這裡是用來設置sentinel 的埠,一般情況下,至少會需要三個哨兵對redis 進行監控,我們可以通過修改埠啟動多個sentinel 服務。

# port <sentinel-port>
# The port that this sentinel instance will run on
port 26379

 
   
2、配置主伺服器的ip 和埠
   我們把監聽的埠修改成6380,並且加上權值為2,這裡的權值,是用來計算我們需要將哪一臺伺服器升級升主伺服器

# sentinel monitor <master-name> <ip> <redis-port> <quorum>
#
# Tells Sentinel to monitor this master, and to consider it in O_DOWN
# (Objectively Down) state only if at least <quorum> sentinels agree.
#
# Note that whatever is the ODOWN quorum, a Sentinel will require to
# be elected by the majority of the known Sentinels in order to
# start a failover, so no failover can be performed in minority.
#
# Slaves are auto-discovered, so you don't need to specify slaves in
# any way. Sentinel itself will rewrite this configuration file adding
# the slaves using additional configuration options.
# Also note that the configuration file is rewritten when a
# slave is promoted to master.
#
# Note: master name should not include special characters or spaces.
# The valid charset is A-z 0-9 and the three characters ".-_".
sentinel monitor mymaster 127.0.0.1 6380 2

 
 
3、啟動Sentinel

/sentinel$ redis-sentinel sentinel.conf

 

  sentinel 啟動之後,就會監視到現在有一個主伺服器,兩個從伺服器
   當我們把其中一個從伺服器器關閉之後,我們可以看到日誌:

10894:X 30 Dec 16:27:03.670 # +sdown slave 127.0.0.1:6381 127.0.0.1 6381 @ mymaster 127.0.0.1 6380

  日誌表示,6381這個從伺服器已經從主伺服器中脫離了出來,我們重新把6381 接回去。

10894:X 30 Dec 16:28:43.288 * +reboot slave 127.0.0.1:6381 127.0.0.1 6381 @ mymaster 127.0.0.1 638010894:X 30 Dec 16:28:43.365 # -sdown slave 127.0.0.1:6381 127.0.0.1 6381 @ mymaster 127.0.0.1 6380

 
 
  
4、關閉Master 
    我們手動關閉Master 之後,sentinel 在監聽master 確實是斷線了之後,將會開始計算權值,然後重新分配主伺服器

    我們可以看到,6380主伺服器斷了之後,sentinel 幫我們選了6382作為新的主伺服器
     我們進到6382的客戶端,查看他的狀態:

# Replication
role:master
connected_slaves:1
slave0:ip=127.0.0.1,port=6381,state=online,offset=13751,lag=0
master_repl_offset:13751
repl_backlog_active:1
repl_backlog_size:1048576
repl_backlog_first_byte_offset:2
repl_backlog_histlen:13750

 
我們可以看到 6382,重slave 榮升為master 

127.0.0.1:6382> set name jaycekon
OK

原本的沒有許可權寫,也得到了相應的許可權
 
  
5、重連Master
    大家可能會好奇,如果master 重連之後,會不會搶回屬於他的位置,答案是否定的,就比如你被一個小弟搶了你老大的位置,他肯給回你這個位置嗎。因此當master 回來之後,他也只能當個小弟  

 
 

四、Sentinel 總結

一、Sentinel的作用:

  • A、Master 狀態監測
  • B、如果Master 異常,則會進行Master-slave
    轉換,將其中一個Slave作為Master,將之前的Master作為Slave
  • C、Master-Slave切換後,master_redis.conf、slave_redis.conf和sentinel.conf的內容都會發生改變,即master_redis.conf中會多一行slaveof的配置,sentinel.conf的監控目標會隨之調換

二、Sentinel的工作方式:

  • 1):每個Sentinel以每秒鐘一次的頻率向它所知的Master,Slave以及其他 Sentinel 實例發送一個 PING 命令
  • 2):如果一個實例(instance)距離最後一次有效回覆 PING 命令的時間超過 down-after-milliseconds
    選項所指定的值, 則這個實例會被 Sentinel 標記為主觀下線。
  • 3):如果一個Master被標記為主觀下線,則正在監視這個Master的所有 Sentinel
    要以每秒一次的頻率確認Master的確進入了主觀下線狀態。
  • 4):當有足夠數量的 Sentinel(大於等於配置文件指定的值)在指定的時間範圍內確認Master的確進入了主觀下線狀態,
    則Master會被標記為客觀下線
  • 5):在一般情況下, 每個 Sentinel 會以每 10 秒一次的頻率向它已知的所有Master,Slave發送 INFO 命令
  • 6):當Master被 Sentinel 標記為客觀下線時,Sentinel 向下線的 Master 的所有 Slave 發送 INFO
    命令的頻率會從 10 秒一次改為每秒一次
  • 7):若沒有足夠數量的 Sentinel 同意 Master 已經下線, Master 的客觀下線狀態就會被移除。 若 Master
    重新向 Sentinel 的 PING 命令返回有效回覆, Master 的主觀下線狀態就會被移除。

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本文為mariadb官方手冊:SETTING CHARACTER SETS AND COLLATIONS的譯文。 原文:https://mariadb.com/kb/en/setting-character-sets-and-collations/我提交到MariaDB官方手冊的譯文:https:/ ...
  • 本文為mariadb官方手冊:SET NAMES的譯文。 原文:https://mariadb.com/kb/en/set-names/我提交到MariaDB官方手冊的譯文:https://mariadb.com/kb/zh-cn/set-names/ 語法 描述 這會設置變數character_s ...
  • 01-基本的查詢語句 A:一些命令 B:sql優化原則 註意:掌握oracle的常規命令,在學習過程中總結一些優化原則; 02-空值和別名 A:處理列值為null oracle中的列值為null做四則運算結果都為null。處理方法:nvl(null,0) B:判斷列值為null oracle中判斷一 ...
  • 1. 修改cassandra.yaml配置文件。啟用用戶密碼登錄形式。 authenticator: PasswordAuthenticator authorizer: CassandraAuthorizer 2. 啟動cassandra,cqlsh工具使用預設角色cassandra/cassand ...
  • row_number() over(partition by col1 order by col2) 根據COL1分組可能會有多個組,每組組內根據COL2進行排序。每組內都有自動生成的序號,從1開始,有多少個分組就有多少個從1開始的序號 ...
  • 本文為mariadb官方手冊:DATABASE的譯文。 原文:https://mariadb.com/kb/en/library/database/我提交到MariaDB官方手冊的譯文:https://mariadb.com/kb/zh-cn/database/ 語法 描述 以utf8 charac ...
  • 本文為mariadb官方手冊:Identifier Names的譯文。 原文:https://mariadb.com/kb/en/library/identifier-names/我提交到MariaDB官方手冊的譯文:https://mariadb.com/kb/zh-cn/library/iden ...
  • sql事務對錶的鎖及With(NoLock),With(ReadPast)對錶的查詢結果對比 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...