报错信息:
Caused by: java.lang.IllegalStateException: availableProcessors is already set to [8], rejecting [8]
问题排查:
原因是因为SpringBoot的netty和elasticsearch的netty相关jar冲突,导致程序抛出异常
问题解决:
在SpringBoot的入口类Application的main方法中增加下面代码,问题解决:
System.setProperty("es.set.netty.runtime.available.processors", "false");