是什么
主机数据更新后根据配置和策略, 自动同步到备机的master/slaver机制,Master以写为主,Slave以读为主
能干嘛
读写分离,性能扩展
容灾快速恢复
怎么玩
拷贝多个redis.conf文件include(写绝对路径)
开启daemonize yes
Pid文件名字pidfile
指定端口port
Log文件名字
dump.rdb名字dbfilename
Appendonly 关掉或者换名字
搭建一主两从
搭建环境
1.创建/myredis文件夹
[root@localhost ~]# mkdir /myredis
2.复制redis配置文件
[root@localhost ~]# cd /myredis/
[root@localhost myredis]# cp /etc/redis.conf /myredis/redis.conf
3.新建redis6379.conf,redis6380.conf,redis6381.conf,填写以下内容
include /myredis/redis.conf
pidfile /var/run/redis_6379.pid
port 6379
dbfilename dump6379.rdb
include /myredis/redis.conf
pidfile /var/run/redis_6380.pid
port 6380
dbfilename dump6380.rdb
include /myredis/redis.conf
pidfile /var/run/redis_6381.pid
port 6381
dbfilename dump6381.rdb
4.启动三台redis服务器
[root@localhost myredis]# redis-server redis6379.conf
[root@localhost myredis]# redis-server redis6380.conf
[root@localhost myredis]# redis-server redis6381.conf
5.查看系统进程,看看三台服务器是否启动
[root@localhost myredis]# ps -ef | grep redis
root 7038 1 0 14:58 ? 00:00:00 redis-server *:6379
root 7044 1 0 14:58 ? 00:00:00 redis-server *:6380
root 7050 1 0 14:59 ? 00:00:00 redis-server *:6381
root 7085 6551 0 15:00 pts/0 00:00:00 grep --color=auto redis
6.查看三台主机运行情况
info replication
打印主从复制的相关信息
配从不配主
slaveof
成为某个实例的从服务器
1、在6380和6381上执行: slaveof 127.0.0.1 6379
2.在主机上写,在从机上可以读取数据
在从机上写数据报错
127.0.0.1:6380> set a v
(error) READONLY You can't write against a read only replica.
3.主机挂掉,重启就行,一切如初
4.从机重启需重设
:slaveof 127.0.0.1 6379
可以将配置增加到文件中。永久生效。
常用三招
一主二仆
切入点问题?slave1、slave2是从头开始复制还是从切入点开始复制?比如从k4进来,那之前的k1,k2,k3是否也可以复制?
从头复制
从机是否可以写?set可否?
不能写
主机shutdown后情况如何?从机是上位还是原地待命?
原地待命
主机又回来了后,主机新增记录,从机还能否顺利复制?
能
其中一台从机down后情况如何?依照原有它能跟上大部队吗?
能
薪火相传
反客为主
当一个master宕机后,后面的slave可以立刻升为master,其后面的slave不用做任何修改。
用 slaveof no one 将从机变为主机。
复制原理
哨兵模式(sentinel)
反客为主的自动版
,能够后台监控主机是否故障,如果故障了根据投票数自动将从库转换为主库
调整为一主二仆模式,6379带着6380、6381
自定义的/myredis目录下新建sentinel.conf文件,名字绝不能错
配置哨兵,填写内容
sentinel monitor mymaster 127.0.0.1 6379 1
其中mymaster为监控对象起的服务器名称, 1 为至少有多少个哨兵同意迁移的数量。
redis做压测可以用自带的redis-benchmark工具
执行redis-sentinel /myredis/sentinel.conf
当主机挂掉,从机选举中产生新的主机
(大概10秒左右可以看到哨兵窗口日志,切换了新的主机)
哪个从机会被选举为主机呢?根据优先级别:slave-priority
原主机重启后会变为从机。
slave-priority 10
设置从机的优先级,值越小,优先级越高,用于选举主机时使用。默认100
复制延时
故障修复
主从复制
private static JedisSentinelPool jedisSentinelPool=null;
public static Jedis getJedisFromSentinel(){
if(jedisSentinelPool==null){
Set<String> sentinelSet=new HashSet<>();
sentinelSet.add("192.168.11.103:26379");
JedisPoolConfig jedisPoolConfig =new JedisPoolConfig();
jedisPoolConfig.setMaxTotal(10); //最大可用连接数
jedisPoolConfig.setMaxIdle(5); //最大闲置连接数
jedisPoolConfig.setMinIdle(5); //最小闲置连接数
jedisPoolConfig.setBlockWhenExhausted(true); //连接耗尽是否等待
jedisPoolConfig.setMaxWaitMillis(2000); //等待时间
jedisPoolConfig.setTestOnBorrow(true); //取连接的时候进行一下测试 ping pong
jedisSentinelPool=new JedisSentinelPool("mymaster",sentinelSet,jedisPoolConfig);
return jedisSentinelPool.getResource();
}else{
return jedisSentinelPool.getResource();
}
}