当前位置:   article > 正文

解决:Error creating bean with name 'elasticsearchClient', AvailableProcessors is already set to [4]_elasticsearchclient is already set to 64

elasticsearchclient is already set to 64

第一:

先看你的pom文件是否用了redis

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-redis</artifactId>
  4. </dependency>

如果在同时使用elastic search,请加上版本号

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-redis</artifactId>
  4. <version>2.0.4.RELEASE</version>
  5. </dependency>

如果启动还是报错, 请尝试在Application.class类中加上一句:

System.setProperty("es.set.netty.runtime.available.processors", "false");
  1. public class SpringBootTestApplication extends SpringBootServletInitializer {
  2. public static void main(String[] args) throws Exception {
  3. System.setProperty("es.set.netty.runtime.available.processors", "false");
  4. SpringApplication.run(SpringBootTestApplication.class, args);
  5. }
  6. }

 

第二:根据你的es版本,是否需要客户端pom , 请看API-JAVA-ES官方网站

类似的加入:

  1. <dependency>
  2. <groupId>org.elasticsearch.client</groupId>
  3. <artifactId>transport</artifactId>
  4. <version>5.6.10</version>
  5. </dependency>

第三:你的elastic客户端和服务端版本是否一致? 去maven仓库看你依赖对应的版本,保持一致即可

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/284027
推荐阅读
相关标签
  

闽ICP备14008679号