Spring該如何整合Redis集羣

前言:在上一文中,我講到了---如何搭建redis集羣---讓集羣擁有分片的數據內存的擴容和哨兵的高可用。今天給你們講解一下Spring如何整合Redis集羣java


在這裏首先給你們說一說分片和哨兵的特色node

  • 1.分片的主要的做用 實現內存數據的擴容
  • 2.哨兵主要的做用,能夠實現redis的高可用.
  • 3.若是redis分片中有一個redis節點宕機,則整個redis分片將不能正常運行.
  • 4.Redis哨兵雖然能夠實現Redis的高可用,可是哨兵自己沒辦法實現高可用,程序調用存在風險.

而集羣確包含了分片和哨兵的二者的優勢,既實現了內存數據的擴容,也實現了redis的高可用,並且集羣確保了一個或必定數量的redis宕機,也可以讓程序正常的運行,這也是爲何咱們運用的集羣,而不是分片或哨兵。
           --------廢話有點多啊,下面進入今天的主題
linux


1.Spring整合Redis集羣

1.1在linux系統上開啓redis集羣 --- sh start.sh

以後ps -ef |grep redis 檢測全部的redis服務器是否開啓redis

在這裏插入圖片描述

1.2添加redis依賴(如若以前添加了,跳過此)

<!--spring整合redis -->
		<dependency>
			<groupId>redis.clients</groupId>
			<artifactId>jedis</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.data</groupId>
			<artifactId>spring-data-redis</artifactId>
		</dependency>

1.3redis集羣測試實例

@Test
        public void testCluster() {
            Set<HostAndPort> nodes = new HashSet<HostAndPort>();
            nodes.add(new HostAndPort("192.168.126.166",7000));
            nodes.add(new HostAndPort("192.168.126.166",7001));
            nodes.add(new HostAndPort("192.168.126.166",7002));
            nodes.add(new HostAndPort("192.168.126.166",7003));
            nodes.add(new HostAndPort("192.168.126.166",7004));
            nodes.add(new HostAndPort("192.168.126.166",7005));
            JedisCluster jedisCluster = new JedisCluster(nodes);
            jedisCluster.set("redisCluster","集羣測試");
            System.out.println(jedisCluster.get("redisCluster"));
        }

測試結果以下:spring

在這裏插入圖片描述

測試成功!!!服務器

1.4編輯redis.properties文件

#標識IP地址和端口號信息 IP:PORT
redis.node=192.168.126.166:6379
redis.nodes=192.168.126.166:6379,192.168.126.166:6380,192.168.126.166:6381
redis.sentinel=192.168.126.166:26379
redis.cluster=192.168.126.166:7000,192.168.126.166:7001,192.168.126.166:7002,192.168.126.166:7003,192.168.126.166:7004,192.168.126.166:7005

1.5編輯redis配置類

//標識配置類
@Configuration
@PropertySource("classpath:/properties/redis.properties")
public class JedisConfig {
	
	//集羣
	@Value("${redis.cluster}")
	private String nodes;
	@Bean
	public JedisCluster jedisCluster() {
		Set<HostAndPort> nodeSet = new HashSet<HostAndPort>();
		String[] nodeArray = nodes.split(",");
		for(String node : nodeArray) {//node=host:port
		    String host = node.split(":")[0];
		    int port = Integer.parseInt(node.split(":")[1]);
		    HostAndPort hostAndPort = new HostAndPort(host,port);
		    nodeSet.add(hostAndPort);
		
		}
		return new JedisCluster(nodeSet);
	}
	
	
}

1.6修改RedisAOP配置

在這裏插入圖片描述

最後進行測試,測試成功,那就Spring整合Redis集羣成功!!!測試

3月25日改:
有朋友發私信問我該如何去測試,其實這個很簡單。
你能夠先查詢那幾臺服務器中哪些是主機,而後宕掉其中的一臺redis-cli -p 7000 shutdown,再十秒以後再去訪問頁面(在此以前你能夠去看看7000主機的從機,如今是不是主機的了--redis-cli -p 7003>>>再輸入info replication),

若是可以正常的訪問,說明
你整合Redis集羣成功了,能夠正常運行!!spa

如若你還有什麼問題評論私信皆可!!!.net

相關文章
相關標籤/搜索