【发布时间】:2019-07-01 10:26:54
【问题描述】:
当我的实例刚刚启动时,我无法连接到 redis。
我用:
runtime: java
env: flex
runtime_config:
jdk: openjdk8
我遇到了以下异常:
Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed out
RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
java.net.SocketTimeoutException: connect timed out
2-3 分钟后,它运行顺畅
我是否需要在我的代码中添加一些检查或者我应该如何正确修复它?
附言 我也使用spring boot,配置如下
@Value("${spring.redis.host}")
private String redisHost;
@Bean
JedisConnectionFactory jedisConnectionFactory() {
// https://cloud.google.com/memorystore/docs/redis/quotas
RedisStandaloneConfiguration config = new RedisStandaloneConfiguration(redisHost, 6379);
return new JedisConnectionFactory(config);
}
@Bean
public RedisTemplate<String, Object> redisTemplate(
@Autowired JedisConnectionFactory jedisConnectionFactory
) {
RedisTemplate<String, Object> template = new RedisTemplate<>();
template.setConnectionFactory(jedisConnectionFactory);
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer(newObjectMapper()));
return template;
}
在 pom.xml 中
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.1.2.RELEASE</version>
【问题讨论】:
-
我要骂java了,但是你的问题不是从你的java服务器开始的吗?如果您的 memstore 已经启动,则连接它应该没有任何问题,一个好的测试是在您启动另一个实例时将第二个实例连接到 memstore 并查看是否有任何问题。
-
memstore 已经启动。我想,也许这是我运行 JVM 的 VM 实例的问题,由于某种原因,我无法建立与 redis 的连接。虚拟机刚启动时会不会是虚拟机的网络问题?
-
从来没有遇到过一些php服务器的问题。您还有其他连接依赖项吗?它们是在实例启动时启动并运行还是它们也有一些超时?
标签: redis google-cloud-platform google-cloud-memorystore spring-cloud-gcp