Redis 高可用--Sentinel

来源:https://www.cnblogs.com/leohahah/archive/2018/04/02/8692449.html
-Advertisement-
Play Games

官網: https://redis.io/topics/sentinel Redis的主從只能實現數據熱備份的功能,主宕機後從無法自動接管服務,因此Redis推出了Sentinel的主從監控模式。 Sentinel實質上是類似於MHA的一個監控主從並自動切換的monitor,實現的功能類似Mongo ...


官網: https://redis.io/topics/sentinel Redis的主從只能實現數據熱備份的功能,主宕機後從無法自動接管服務,因此Redis推出了Sentinel的主從監控模式。 Sentinel實質上是類似於MHA的一個監控主從並自動切換的monitor,實現的功能類似MongoDB自動切換的replica set,其命令行自帶於redis的安裝包中, 即:redis-sentinel。 而針對超大的數據量redis 3.0後還推出了Redis Cluster,實質上是分片,類似於MongoDB的auto sharding。 一、Sentinel.conf配置文件 Sentinel.conf實例:
daemonize yes  
logfile "/redis/sentinel1/sentinel.log"
port 26379
dir "/redis/sentinel1"
protected-mode no  --必須設置為no,否則無法自動故障轉移。
sentinel monitor mymaster 127.0.0.1 6379 2
sentinel auth-pass mymaster leo --必須寫在"sentinel monitor mymaster 127.0.0.1 6379 2"之後,否則會報找不到master name的錯誤。
sentinel down-after-milliseconds mymaster 60000
sentinel config-epoch mymaster 0
Sentinel配置文件官網網址:http://download.redis.io/redis-stable/sentinel.conf 很多配置項都可以在這裡找到詳細的解釋,以下只翻譯了最重要的幾個配置項。
##############################################################################
# 需要註意的是雖然本說明只列出了以下幾種參數,但其實一些redis.conf的參數也是可以在sentinel.conf中設置的,例如
# daemonize、logfile等參數。
# 此外如果主從設置了auth驗證,那麼這裡還需要配置:sentinel auth-pass <master-name> <password>
##############################################################################
# Example sentinel.conf
# *** IMPORTANT ***
#
# By default Sentinel will not be reachable from interfaces different than
# localhost, either use the 'bind' directive to bind to a list of network
# interfaces, or disable protected mode with "protected-mode no" by
# adding it to this configuration file.
# 預設Sentinel是不允許除localhost以外的伺服器連接的,因此要麼在bind中指明網段,要麼設置protected-mode no
# Before doing that MAKE SURE the instance is protected from the outside
# world via firewalling or other means.
#
# For example you may use one of the following:
#
# bind 127.0.0.1 192.168.1.1
#
protected-mode no --必須設置為no,或者bind 127.0.0.1以及本地IP,否則sentinel之間無法通信不能進行自動failover
# port <sentinel-port>
# The port that this sentinel instance will run on
port 26379
# sentinel announce-ip <ip>
# sentinel announce-port <port>
#
# The above two configuration directives are useful in environments where,
# because of NAT, Sentinel is reachable from outside via a non-local address.
#
# When announce-ip is provided, the Sentinel will claim the specified IP address
# in HELLO messages used to gossip its presence, instead of auto-detecting the
# local address as it usually does.
#
# Similarly when announce-port is provided and is valid and non-zero, Sentinel
# will announce the specified TCP port.
#
# The two options don't need to be used together, if only announce-ip is
# provided, the Sentinel will announce the specified IP and the server port
# as specified by the "port" option. If only announce-port is provided, the
# Sentinel will announce the auto-detected local IP and the specified port.
#
# Example:
#
# sentinel announce-ip 1.2.3.4
# dir <working-directory>
# Every long running process should have a well-defined working directory.
# For Redis Sentinel to chdir to /tmp at startup is the simplest thing
# for the process to don't interfere with administrative tasks such as
# unmounting filesystems.
dir /tmp
# 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.
# 此命令告訴哨兵去監控主節點,如果至少有<quorum>個setinel檢測到主S_DOWN,那麼就將主設置為O_DOWN狀態,然後就可以failover。
# O_DOWN S_DOWN Objectively/Subjectively:意思分別是客觀下線和主觀下線,前者表示多個sentinel實例共同作出了master已下線的判斷,
# 後者表示單個sentinel實例做出了master已下線的判斷。只有至少<quorum>個sentinel進程檢測到主S_DOWN,才會做出主O_DOWN的判斷,然後其中一個sentinel就會開始進行failover。
# 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.
# 這段說明setinel也是需要多數存活才能實現故障轉移投票,因此為防止腦裂建議配置奇數個sentinel。
# 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 6379 2
# sentinel auth-pass <master-name> <password>
#
# Set the password to use to authenticate with the master and slaves.
# Useful if there is a password set in the Redis instances to monitor.
#
# Note that the master password is also used for slaves, so it is not
# possible to set a different password in masters and slaves instances
# if you want to be able to monitor these instances with Sentinel.
#
# However you can have Redis instances without the authentication enabled
# mixed with Redis instances requiring the authentication (as long as the
# password set is the same for all the instances requiring the password) as
# the AUTH command will have no effect in Redis instances with authentication
# switched off.
#
# Example:
#
# sentinel auth-pass mymaster MySUPER--secret-0123passw0rd
# sentinel down-after-milliseconds <master-name> <milliseconds>
#
# Number of milliseconds the master (or any attached slave or sentinel) should
# be unreachable (as in, not acceptable reply to PING, continuously, for the
# specified period) in order to consider it in S_DOWN state (Subjectively
# Down).
# 這段的意思是sentinel在和主失聯多少毫秒後,可以做出主節點S_DOWN的判斷。
# Default is 30 seconds.
sentinel down-after-milliseconds mymaster 30000
# sentinel parallel-syncs <master-name> <numslaves>
#
# How many slaves we can reconfigure to point to the new slave simultaneously
# during the failover. Use a low number if you use the slaves to serve query
# to avoid that all the slaves will be unreachable at about the same
# time while performing the synchronization with the master.
sentinel parallel-syncs mymaster 1
# sentinel failover-timeout <master-name> <milliseconds>
#
# Specifies the failover timeout in milliseconds. It is used in many ways:
#
# - The time needed to re-start a failover after a previous failover was
# already tried against the same master by a given Sentinel, is two
# times the failover timeout.
#
# - The time needed for a slave replicating to a wrong master according
# to a Sentinel current configuration, to be forced to replicate
# with the right master, is exactly the failover timeout (counting since
# the moment a Sentinel detected the misconfiguration).
#
# - The time needed to cancel a failover that is already in progress but
# did not produced any configuration change (SLAVEOF NO ONE yet not
# acknowledged by the promoted slave).
#
# - The maximum time a failover in progress waits for all the slaves to be
# reconfigured as slaves of the new master. However even after this time
# the slaves will be reconfigured by the Sentinels anyway, but not with
# the exact parallel-syncs progression as specified.
#
# Default is 3 minutes.
sentinel failover-timeout mymaster 180000
# SCRIPTS EXECUTION
#
# sentinel notification-script and sentinel reconfig-script are used in order
# to configure scripts that are called to notify the system administrator
# or to reconfigure clients after a failover. The scripts are executed
# with the following rules for error handling:
#
# If script exits with "1" the execution is retried later (up to a maximum
# number of times currently set to 10).
#
# If script exits with "2" (or an higher value) the script execution is
# not retried.
#
# If script terminates because it receives a signal the behavior is the same
# as exit code 1.
#
# A script has a maximum running time of 60 seconds. After this limit is
# reached the script is terminated with a SIGKILL and the execution retried.
# NOTIFICATION SCRIPT
#
# sentinel notification-script <master-name> <script-path>
# 這裡可以配置發生failover時的可執行腳本,可以配置郵件發送腳本。
# Call the specified notification script for any sentinel event that is
# generated in the WARNING level (for instance -sdown, -odown, and so forth).
# This script should notify the system administrator via email, SMS, or any
# other messaging system, that there is something wrong with the monitored
# Redis systems.
#
# The script is called with just two arguments: the first is the event type
# and the second the event description.
#
# The script must exist and be executable in order for sentinel to start if
# this option is provided.
#
# Example:
#
# sentinel notification-script mymaster /var/redis/notify.sh
# CLIENTS RECONFIGURATION SCRIPT
#
# sentinel client-reconfig-script <master-name> <script-path>
#
# When the master changed because of a failover a script can be called in
# order to perform application-specific tasks to notify the clients that the
# configuration has changed and the master is at a different address.
#
# The following arguments are passed to the script:
#
# <master-name> <role> <state> <from-ip> <from-port> <to-ip> <to-port>
#
# <state> is currently always "failover"
# <role> is either "leader" or "observer"
#
# The arguments from-ip, from-port, to-ip, to-port are used to communicate
# the old address of the master and the new address of the elected slave
# (now a master).
#
# This script should be resistant to multiple invocations.
#
# Example:
#
# sentinel client-reconfig-script mymaster /var/redis/reconfig.sh
二、Sentinel的啟動 redis-sentinel /redis/sentinel_1/sentinel.conf redis-server /redis/sentinel_1/sentinel.conf
以上兩種方式都可以,一般我們需要啟動至少3個以上的奇數個這樣的sentinel進程。 三、Sentinel API(即Sentinel shell內可以使用的命令) 參考:https://redis.io/topics/sentinel 的Sentinel API部分。 例如我們可以使用sentinel failover來實現手動failover,還可以通過sentinel remove/monitor來實現主節點的重新配置。 四、其他註意事項 Redis Sentinel在和docker使用時需要特別註意,由於docker存在埠映射可能會導致sentinel的自動failover失效。 同樣的NAT和埠映射等機制也會導致Sentinel失效,需要進行特別的配置。 總結下來就是:凡是涉及到IP轉換或者埠映射時,部署Sentinel都需要註意。
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.展示資料庫 語句:show databases; 2.創建資料庫 語句:create database 資料庫名 charset 字元集; 3.刪除資料庫 語句:drop databate 資料庫名; 4.選擇資料庫 語句:use 資料庫名; 5.展示表 語句:show tables; 6.創建 ...
  • Oracle11.2.0.3資料庫通過rman備份到Oracle11.2.0.4上做還原,報需要升級的錯誤,具體處理步驟如下: 一、錯誤信息 SQL> alter database open resetlogs;alter database open resetlogs*ERROR at line ...
  • 內連接:只連接匹配的行 inner join select A.*,B.* from A,B where A.id = B.parent_id 外鏈接包括左外鏈接,右外鏈接,全外鏈接 左外鏈接:包含左表的所有行,右表不匹配的顯示null select A.*,B.* from A left join ...
  • 執行$ORACLE_HOME/bin/dbstart 啟動資料庫提示如下: [oracle@prim bin]$ ./dbstart ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net ListenerUsage: ./db ...
  • 在MySQL/MariaDB中有好幾種變數類型:用戶自定義變數、系統變數、一般的臨時變數(即本地變數,或稱為局部變數)。 1.用戶變數 用戶變數是基於會話的,也是基於用戶的,所以我覺得稱之為會話變數更合適,但會話變數一般用來表示系統會話變數(後面會說明),所以還是稱之為用戶變數好了。 只有本用戶才能 ...
  • 一個網站的滲透測試思路,流程(給你一個網站,怎麼做?) 1)信息收集 a. 伺服器的相關信息(真實ip,系統類型,版本,開放埠,WAF等) b. 網站指紋識別(包括,cms,cdn,證書等),dns記錄 c. whois信息,姓名,備案,郵箱,電話反查(郵箱丟社工庫,社工準備等) d. 子功能變數名稱收集 ...
  • 一、環境 伺服器:Ubuntu 16.04.1 LTS(GUN/Linux 4.4.0 91 generic x86_64) 資料庫版本:MariaDB 10.3 二、安裝流程 2.1 進入MariaDB 網站 在 "https://downloads.mariadb.org/mariadb/rep ...
  • --許可權管理 CREATE TABLE SystemLog--日誌表 ( Id INT IDENTITY(1,1) PRIMARY KEY,--主鍵id UserName VARCHAR(10) NOT NULL,--用戶名稱,創建日誌的用戶名稱 UserId INT NOT NULL,--用戶id... ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...