您好,登錄后才能下訂單哦!
這篇文章主要介紹“基于docker如何搭建redis-sentinel集群”,在日常操作中,相信很多人在基于docker如何搭建redis-sentinel集群問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”基于docker如何搭建redis-sentinel集群”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
1、概述
redis 集群可以在一組 redis 節(jié)點之間實現(xiàn)高可用性和 sharding。在集群中會有 1 個 master 和多個 slave 節(jié)點。當(dāng) master 節(jié)點失效時,應(yīng)選舉出一個 slave 節(jié)點作為新的 master。然而 redis 本身(包括它的很多客戶端)沒有實現(xiàn)自動故障發(fā)現(xiàn)并進(jìn)行主備切換的能力,需要外部的監(jiān)控方案來實現(xiàn)自動故障恢復(fù)。
redis sentinel 是官方推薦的高可用性解決方案。它是 redis 集群的監(jiān)控管理工具,可以提供節(jié)點監(jiān)控、通知、自動故障恢復(fù)和客戶端配置發(fā)現(xiàn)服務(wù)。
2、遇到的問題
1、docker host網(wǎng)絡(luò)
docker使用host網(wǎng)絡(luò)時對于windows 、mac不生效(沒找到解決方案),最后放棄了windows 使用centos部署集群。
2、不使用host網(wǎng)絡(luò)的情況下sentinel 連接問題
不使用host網(wǎng)絡(luò)的情況下連接sentinel集群時可以指定主節(jié)點端口故可以正常聯(lián)通, 但在主節(jié)點故障時 sentinel 從主節(jié)點獲取到的 ip 是容器內(nèi)的虛擬 ip 導(dǎo)致集群無法正常連接。
3、搭建過程
1、目錄結(jié)構(gòu)
2、sentinel 配置文件
1、sentinel1.conf
#端口號 port 26379 dir /tmp # mymaster:自定義集群名,2:投票數(shù)量必須2個sentinel才能判斷主節(jié)點是否失敗 sentinel monitor mymaster <ip> <port> 2 # 指的是超過5000秒,且沒有回復(fù),則判定主節(jié)點不可達(dá) sentinel down-after-milliseconds mymaster 5000 # 表示在故障轉(zhuǎn)移的時候最多有numslaves在同步更新新的master sentinel parallel-syncs mymaster 1 # 故障轉(zhuǎn)移超時時間 sentinel failover-timeout mymaster 5000
2、sentinel2.conf
#端口號 port 26380 dir /tmp # mymaster:自定義集群名,2:投票數(shù)量必須2個sentinel才能判斷主節(jié)點是否失敗 sentinel monitor mymaster <ip> <port> 2 # 指的是超過5000秒,且沒有回復(fù),則判定主節(jié)點不可達(dá) sentinel down-after-milliseconds mymaster 5000 # 表示在故障轉(zhuǎn)移的時候最多有numslaves在同步更新新的master sentinel parallel-syncs mymaster 1 # 故障轉(zhuǎn)移超時時間 sentinel failover-timeout mymaster 5000
3、sentinel3.conf
#端口號 port 26381 dir /tmp # mymaster:自定義集群名,2:投票數(shù)量必須2個sentinel才能判斷主節(jié)點是否失敗 sentinel monitor mymaster <ip> <port> 2 # 指的是超過5000秒,且沒有回復(fù),則判定主節(jié)點不可達(dá) sentinel down-after-milliseconds mymaster 5000 # 表示在故障轉(zhuǎn)移的時候最多有numslaves在同步更新新的master sentinel parallel-syncs mymaster 1 # 故障轉(zhuǎn)移超時時間 sentinel failover-timeout mymaster 5000
3、docker-compose.yml
version: '2' services: master: image: redis:4.0 restart: always container_name: redis-master #使用主機(jī)網(wǎng)絡(luò) network_mode: "host" command: redis-server --port 16379 slave1: image: redis:4.0 restart: always container_name: redis-slave-1 network_mode: "host" # 指定端口并指定master ip 端口 command: redis-server --port 16380 --slaveof <master ip> 16379 slave2: image: redis:4.0 restart: always container_name: redis-slave-2 network_mode: "host" command: redis-server --port 16381 --slaveof <master ip> 16379 sentinel1: image: redis:4.0 restart: always container_name: redis-sentinel-1 network_mode: "host" # 指定sentinel文件位置 command: redis-sentinel /usr/local/etc/redis/sentinel.conf # 使用數(shù)據(jù)卷映射文件到指定sentinel位置 volumes: - ./sentinel/sentinel1.conf:/usr/local/etc/redis/sentinel.conf sentinel2: image: redis:4.0 restart: always container_name: redis-sentinel-2 network_mode: "host" command: redis-sentinel /usr/local/etc/redis/sentinel.conf volumes: - ./sentinel/sentinel2.conf:/usr/local/etc/redis/sentinel.conf sentinel3: image: redis:4.0 restart: always container_name: redis-sentinel-3 network_mode: "host" command: redis-sentinel /usr/local/etc/redis/sentinel.conf volumes: - ./sentinel/sentinel3.conf:/usr/local/etc/redis/sentinel.conf
4、使用centos 部署集群測試效果
1、測試通過sentinel1連接集群
2、測試主節(jié)點子節(jié)點數(shù)據(jù)同步
3、關(guān)閉master查看主備切換
sentinel 正常聯(lián)通
主節(jié)點從16379 切換 至16381
到此,關(guān)于“基于docker如何搭建redis-sentinel集群”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。