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
Currently the createClient api has a host parameter that seems to support only a single host at this moment. I couldn't find any way for the module to connect to multiple gremlin server hosts preferably with automatic node discovery and failover similar to other distributed system clients.
The go client for gremlin for example has cluster support. It would be great if this module had built in support for cluster load balancing, node discovery and failover.
The text was updated successfully, but these errors were encountered:
I think we could add basic support for this, with a simple connection pool. This is something I've had on my mind for a while.
However, some distributed databases support complex client-side load balancing, ie. Cassandra (JanusGraph). The clients play a very important role and need to be aware of the cluster state (up/down nodes, latency, cluster topology, etc.). I don't think Gremlin server can stream that yet, and this is most likely outside of its scope anyway.
Currently the createClient api has a host parameter that seems to support only a single host at this moment. I couldn't find any way for the module to connect to multiple gremlin server hosts preferably with automatic node discovery and failover similar to other distributed system clients.
The go client for gremlin for example has cluster support. It would be great if this module had built in support for cluster load balancing, node discovery and failover.
The text was updated successfully, but these errors were encountered: