Hi All
We are using ES 2.4.6 now with "Tribe Node" and Java TransportClient, they are working fine, and we can search multiple indexes on different clusters.
We are going to upgrade to ES 6.2.4 and use "Java rest client" to do the same thing.
So does Java rest client support "Cross Cluster Search"? We have similar case like this:
We have index post1 on cluster1 and index post2 on cluster2.
We can search with "Tribe Node", ES 2.4.6 with Java TransportClient:
SearchRequestBuilder builder = client.prepareSearch("post*");
But with "Cross Cluster Search Node", ES 6.2.4 with Java rest client:
SearchRequest searchRequest = new SearchRequest("post*");
searchRequest.types("doc");
Does above will work ? If not, how to make this work.
Thanks.