I am trying to connect remotely to elastic search cluster having 2 nodes
My question is I am able to query successfully only when we configure both 
the cluster name and host name of the individual nodes? Why it doesn't work 
if I only configure the cluster name in my client code

Settings settings = ImmutableSettings.settingsBuilder()
        .put("cluster.name", "myClusterName").build();

Client client = new TransportClient(settings ).addTransportAddress(new 
InetSocketTransportAddress("host1", 9300))

        .addTransportAddress(new InetSocketTransportAddress("host2", 9300));

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/dd201d66-71b4-4d74-bb99-255144a083a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to