一主二仆:
-
从服务器挂了
,主服务器的从服务器会少一个的 -
从服务器挂了
,重启后,从服务器会变成一*立的主服务器,需要slaveof ip port 重新变成从服务器,重启前主服务器的数据,从服务器会完全
复制过来 -
主服务器挂了
,从服务器还是
从服务器,主服务器重启后还是
主服务器
复制原理:
薪火相传:
反客为主:
哨兵模式
- Redis6.2
slaveof-priority
改名
为replica-priority
主从复制:
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();
}
}