Factory method 'elasticsearchClient' threw exception; nested exception is java.lang.IllegalStateException: availableProcessors is already set to [8], rejecting [8]

项目环境:

springboot+ES6.4.2+redis

出错信息截图如下

 百度查了一下,大概意思是redis和elasticsearch有冲突。

解决方法:

启动类main方法中加入

System.setProperty("es.set.netty.runtime.available.processors","false");

如果是单元测试,需这样加:

原文地址:https://www.cnblogs.com/lfyu/p/12025310.html