I have followed the different tutorials and have no trouble playing around with a gremlin server+console set-up with TinkerGraph, or talking directly to a gremlin server running a neo4j DB (using gremlin-python), but I can't seem to figure out how to talk to a remote neo4j server via gremlin console. Is that even possible?
The closest console conf file seems to be remote-objects.yaml:
hosts: [localhost]
port: 8182
serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0,
config: { ioRegistries: [org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerIoRegistry] }}
But obviously, it would need a serializer that works with neo4j… Except I cannot seem to find any.
Is it possible to use serialisation with Gremlin console and a remote neo4j server?
If not, what would be the simplest way to do things like creating indexes etc, that cannot be done through gremlin-python?