Zipkin start 和 redis start 不兼容
时间: 2020-06-17来源:OSCHINA
前景提要
Spring boot 版本: 2.2.1.RELEASE Spring cloud 版本 : Hoxton.RC1
项目中同时使用了 spring-cloud-starter-zipkin spring-boot-starter-data-redis <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zipkin</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> //www.1b23.com
在编码中有多个Service同时注入了RedisTemplate<String, String> redisTemplate导致在Tomcat启动时报错,导致无法运行。
错误如下
[ main] o.a.c.loader.WebappClassLoaderBase : The web application
[ROOT] appears to have started a thread named [lettuce-eventExecutorLoop-1-1] but has failed to stop it. This is very likely to create a memory leak.
Stack trace of thread:
sun.misc.Unsafe.park(Native Method)`

Caused by: org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisException: Cannot retrieve initial cluster partitions from initial URIs [RedisURI [host=‘172.31.214.234’, port=6380], RedisURI [host=‘172.31.214.234’, port=6381], RedisURI [host=‘172.31.214.235’, port=6380], RedisURI [host=‘172.31.214.235’, port=6381], RedisURI [host=‘172.31.214.236’, port=6380], RedisURI [host=‘172.31.214.236’, port=6381]
最终原因是Redis 客户端lettuce无法连接上Redis导致该报错。
解决
移除spring-boot-starter-data-redis中对lettuce的引用,加入jedis的依赖 。springcloud框架www.1b23.com <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <exclusions> <exclusion> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> //www.1b23.com
当我移除spring-cloud-starter-zipkin 之后再次启动项目发现启动成功,spring-boot-starter-data-redis默认使用lettuce作为Redis的客户端,因此推断为spring-cloud-starter-zipkin 可能和lettuce有兼容性问题。
因此尝试把lettuce换为jedis,问题解决。

科技资讯:

科技学院:

科技百科:

科技书籍:

网站大全:

软件大全:

热门排行