Re: Connecting to Multiple Schemas using Java
hadoopmarc@...
Hi Vinayak,
The TinkerPop ref docs gives the following code fragment for connecting with the cluster method:
Best wishes, Marc
The TinkerPop ref docs gives the following code fragment for connecting with the cluster method:
Is this what you tried (I do not see it in your question)?Cluster cluster = Cluster.open(); GraphTraversalSource g1 = traversal().withRemote(DriverRemoteConnection.using(cluster, "g1"));
GraphTraversalSource g2 = traversal().withRemote(DriverRemoteConnection.using(cluster, "g2"));
Best wishes, Marc