Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

org.elasticsearch.common.transport.InetSocketTransportAddress not found on Elasticsearch 6

Tags:

My code is working fine in elasticsearch 5 but when I have upgraded from 5 to 6 then. it is showing

org.elasticsearch.common.transport.InetSocketTransportAddress not found

complete stack trace:

[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]

can anyone help me to resolve this problem?

Note: Elaticsearch jar is fine.

like image 653
Arayan Singh Avatar asked Jun 22 '18 10:06

Arayan Singh


1 Answers

Elastic search 6.0 has removed InetSocketTransportAddress class. I have solved this By replacing InetSocketTransportAddress class with TransportAddress class.

// 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();
like image 164
Arayan Singh Avatar answered Nov 15 '22 06:11

Arayan Singh