Some questions about the java TransportClient
-
Does it make sense to instantiate multiple TransportClient to the same (found) cluster?
-
Does the TransportClient tries to reconnect to the cluster if disconnected. How long does this take?
-
What do you guys consider as acceptable time outs: it's possible to set a timeout value on query run time on the cluster, as well as a timeout on the waiting time of the client.
client.prepareSearch().setTimeout(cluster_timeout).execute().actionGet(client_timeout);
-
Does the TransportClient has default timeout values?