基于 DynamoDB 编码的 Titan Graph DB

Titan Graph DB over DynamoDB coding

我是第一次尝试。我按照 Amazon Documentation For Titan Graph

中的步骤操作

我查看了提供的示例代码,但发现它没有起点。我如何使用 TitanGraph class 添加每个顶点和每条边进行编码?有没有办法实例化 TitanGraph 对象?我猜我根本不需要处理 DynamoDB API。

您在 link 中的第 1 步引用了他们的 GitHub 站点,您可以在其中找到一些示例代码。 https://github.com/awslabs/dynamodb-titan-storage-backend/blob/1.0.0/src/main/java/com/amazon/titan/example/MarvelGraphFactory.java

并且图形配置文件位于同一个 repo https://github.com/awslabs/dynamodb-titan-storage-backend/tree/1.0.0/src/test/resources

您可以像这样实例化 TitanGraph:

TitanGraph Graph = TitanFactory.open("dynamodb.properties");