How do you get count()
back from ArcadeDB-Gremlin?
#1098
Unanswered
ZachMurray
asked this question in
Q&A
Replies: 1 comment
-
It looks like the client can't connect to the Gremlin Server. In our tests we initialize the connection with this: private Cluster createCluster() {
final GraphBinaryMessageSerializerV1 serializer = new GraphBinaryMessageSerializerV1(
new TypeSerializerRegistry.Builder().addRegistry(new ArcadeIoRegistry()));
return Cluster.build().enableSsl(false).addContactPoint("localhost").port(8182).credentials("root", BaseGraphServerTest.DEFAULT_PASSWORD_FOR_TESTS).serializer(serializer)
.create();
}
private GraphTraversalSource traversal() {
return AnonymousTraversalSource.traversal().withRemote(DriverRemoteConnection.using(createCluster(), "graph"));
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm running into an issue with not being able to get Gremlin working on my local setup.
I want to confirm ArcadeDB-Gremlin is working before I start making edges with the Gremlin-format.
Why do the first 3 lines work while I can't seem to get the data back out?
Beta Was this translation helpful? Give feedback.
All reactions