jediscluster入数据报错:
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is redis.clients.jedis.exceptions.JedisClusterMaxAttemptsException: No more cluster attempts left.] with root cause
redis.clients.jedis.exceptions.JedisClusterMaxAttemptsException: No more cluster attempts left.
at redis.clients.jedis.JedisClusterCommand.runWithRetries(JedisClusterCommand.java:86) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.JedisClusterCommand.runWithRetries(JedisClusterCommand.java:124) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.JedisClusterCommand.runWithRetries(JedisClusterCommand.java:124) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.JedisClusterCommand.runWithRetries(JedisClusterCommand.java:124) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.JedisClusterCommand.runWithRetries(JedisClusterCommand.java:124) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.JedisClusterCommand.runWithRetries(JedisClusterCommand.java:124) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.JedisClusterCommand.runBinary(JedisClusterCommand.java:49) ~[jedis-3.1.0.jar!/:na]
at redis.clients.jedis.BinaryJedisCluster.hset(BinaryJedisCluster.java:445) ~[jedis-3.1.0.jar!/:na]
报错方法:
hset(String key,Map<String,String> valueMap)
检测到一次set的数据量达到110万条,全在map里面一次性hset报错。
解决,分批次hset,将map的size控制在10万左右。
在使用JedisCluster进行数据操作时遇到JedisClusterMaxAttemptsException错误,原因是尝试一次性hset的大数据量(110万条)过大。为了解决此问题,采取了分批次hset的方法,每次处理的map大小控制在10万条左右,有效避免了异常并提高了数据插入的稳定性。
8760

被折叠的 条评论
为什么被折叠?



