JedisCluster Could not get a resource from the pool
时间: 2023-11-21 16:59:15 浏览: 156
JedisCluster Could not get a resource from the pool错误通常是由于连接池中的资源不足或连接超时引起的。以下是一些可能的解决方案:
1. 增加连接池的最大连接数和最大空闲连接数,以确保连接池中有足够的资源可用。
2. 增加连接池的超时时间,以便在连接池中没有可用连接时等待更长的时间。
3. 检查redis集群的配置是否正确,确保所有节点都已正确配置。
4. 检查redis集群的状态,确保所有节点都处于正常状态。
5. 检查网络连接是否正常,确保可以从应用程序服务器访问redis集群。
以下是一些可能的解决方案的代码示例:
```java
// 增加连接池的最大连接数和最大空闲连接数
JedisPoolConfig poolConfig = new JedisPoolConfig();
poolConfig.setMaxTotal(100);
poolConfig.setMaxIdle(50);
// 增加连接池的超时时间
JedisCluster jedisCluster = new JedisCluster(nodes, 5000, 5000, 10, password, poolConfig);
// 检查redis集群的配置是否正确
Set<HostAndPort> nodes = new HashSet<HostAndPort>();
nodes.add(new HostAndPort("127.0.0.1", 7000));
nodes.add(new HostAndPort("127.0.0.1", 7001));
nodes.add(new HostAndPort("127.0.0.1", 7002));
JedisCluster jedisCluster = new JedisCluster(nodes, poolConfig);
// 检查redis集群的状态
Map<String, JedisPool> clusterNodes = jedisCluster.getClusterNodes();
for (Map.Entry<String, JedisPool> entry : clusterNodes.entrySet()) {
Jedis jedis = null;
try {
jedis = entry.getValue().getResource();
String pong = jedis.ping();
System.out.println(entry.getKey() + " - " + pong);
} catch (Exception e) {
System.out.println(entry.getKey() + " - " + e);
} finally {
if (jedis != null) {
jedis.close();
}
}
}
// 检查网络连接是否正常
ping redis-server-ip
```
阅读全文