20

我的代码在 elasticsearch 5 中运行良好,但是当我从 5 升级到 6 时。它正在显示

org.elasticsearch.common.transport.InetSocketTransportAddress not found

完整的堆栈跟踪:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project elastic-store: Compilation failure
[ERROR] /home/elastic/elastic-store/src/main/java/com/qw/psence/store/es/common/ESClient.java:[12,42] cannot find symbol
[ERROR] symbol:   class InetSocketTransportAddress
[ERROR] location: package org.elasticsearch.common.transport
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]

谁能帮我解决这个问题?

注意:Elaticsearch jar 很好。

4

3 回答 3

45

Elastic search 6.0 已删除InetSocketTransportAddress 类。我通过用TransportAddress类替换InetSocketTransportAddress类解决了这个问题。

// on startup

TransportClient client = new PreBuiltTransportClient(Settings.EMPTY)
        .addTransportAddress(new TransportAddress(InetAddress.getByName("host1"), 9300))
        .addTransportAddress(new TransportAddress(InetAddress.getByName("host2"), 9300));

// on shutdown

client.close();
于 2018-07-03T11:54:50.130 回答
0

有很多解决方案可以解决这个问题,但我收到了这个错误,因为我试图用 SpringBoot 进行基本的弹性搜索配置:

我忘了启动弹性搜索...

:facepalm:

所以就:

  1. bin在 Elasticsearch 安装目录中的文件夹中打开命令行*
  2. 类型elasticsearch
  3. 按回车

为确保它正常工作,http://localhost:9200/请在浏览器中打开。您应该得到一个 JSON 响应,其中包含名称、cluster_name、elasticsearch 版本等。

*(在 Windows 上)打开ES_INSTALLATION_DIR\elasticsearch-x.x.x\bin文件夹,按住 Shift 键,右键单击文件夹区域并从下拉菜单中选择Open command window here

于 2019-09-16T12:33:12.467 回答
-1

在我的情况下,问题是由spring-boot-dependencies. 如果您的 pom 没有从 继承,spring-boot-starter-parent而是使用dependencyManagement部分来导入spring-boot-dependencies,并且您需要在类路径上使用旧版本的 elasticsearch,那么这里是解决方案:InetSocketTransportAddress。始终运行mvn -Dverbose=true help:effective-pom并检查有效的 pom 是否存在冲突。-Dverbose=true在这里很关键。它允许查看不需要的依赖项来自何处。

于 2019-10-18T00:55:33.353 回答