记录spring boot集成ElasticSearch出现的异常

 Failed to instantiate [org.elasticsearch.client.transport.TransportClient]: Factory method 'elasticsearchClient' threw exception; nested exception is java.lang.IllegalStateException: availableProcessors is already set to [4], rejecting [4]

我的版本分别是 spring boot2.2.0 , ElasticSearch 6.8.3

原因:出现上述异常是因为程序的其他地方使用了Netty,一般是redis。这影响在实例化传输客户端之前初始化处理器的数量。 实例化传输客户端时,尝试初始化处理器的数量。 由于在其他地方使用Netty,因此已经初始化并且Netty会对此进行防范,因此首次实例化会因看到的非法状态异常而失败。

解决办法:在启动类中添加 

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

记录spring boot集成ElasticSearch出现的异常_第1张图片

在单元测试中报上述的异常:在单测的构造函数中也添加上述代码

记录spring boot集成ElasticSearch出现的异常_第2张图片

参考:https://blog.csdn.net/sinat_29899265/article/details/81772037

你可能感兴趣的:(解决方法,spring,elasticsearch)