You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now if you want to allow an application to use Client Nodes only, you need to define the nodes in the connection settings for the Client. If you add sniffing, you will be able to sniff any node and you could use the sniffHosts option to sniff just client nodes from an external source.
If you want to have a dynamic pool of nodes (client only nodes) that when you add a new client node to a cluster, that node is added to the connection pool, but when you add master or data nodes, those aren't used, one of the ways that people would do that is by using an external Load Balancer.
I think that it will be great for the Java REST client to be able to have a way to sniff client-only nodes.
The current Transport Client doesn't do that, and actually just retrieves a list of data nodes. The reason the transport client excludes non-data nodes is to avoid sending search traffic to master only nodes (from the docs).
What do you think?
The text was updated successfully, but these errors were encountered:
@javanna please let me know your thoughts here.
Right now if you want to allow an application to use Client Nodes only, you need to define the nodes in the connection settings for the Client. If you add sniffing, you will be able to sniff any node and you could use the
sniffHosts
option to sniff just client nodes from an external source.If you want to have a dynamic pool of nodes (client only nodes) that when you add a new client node to a cluster, that node is added to the connection pool, but when you add master or data nodes, those aren't used, one of the ways that people would do that is by using an external Load Balancer.
I think that it will be great for the Java REST client to be able to have a way to sniff client-only nodes.
The current Transport Client doesn't do that, and actually just retrieves a list of data nodes. The reason the transport client excludes non-data nodes is to avoid sending search traffic to master only nodes (from the docs).
What do you think?
The text was updated successfully, but these errors were encountered: