AWS 文档中的示例显示了如何使用 Gremlin 连接到 AWS Neptune,如下所示:
Cluster.Builder builder = Cluster.build();
builder.addContactPoint("your-neptune-endpoint");
builder.port(8182);
builder.enableSsl(true);
builder.keyCertChainFile("SFSRootCAG2.pem");
Cluster cluster = builder.create();
GraphTraversalSource g = EmptyGraph.instance().traversal().withRemote(DriverRemoteConnection.using(cluster));
但是,我当前连接到通用 Gremlin 图的代码如下所示:
Configuration conf = new PropertiesConfiguration(...);
... //Set configuration
Graph graph = GraphFactory.open(conf);
有谁知道如何将第二种方法与 GraphFactory 一起使用来连接到 Neptune?我无法在任何地方找到任何示例。