Titan使用Cassandra作为后端:在java中创建,存储和遍历图形

时间:2017-04-12 12:07:54

标签: java cassandra graph-databases titan graph-traversal

我对Titan不熟悉,当我开始研究它时,我感到很困惑,因为它有很多新东西,比如Gremlin,tinkerpop和rexter等。

我想要的是java中的一个例子,它使用Titan和Cassandra作为后端。我想创建一个图形,存储在cassandra中,检索它并遍历它。非常简单也会有很大帮助。

我在java中找到了一个基本的例子。

    BaseConfiguration baseConfiguration = new BaseConfiguration();
    baseConfiguration.setProperty("storage.backend", "cassandra");
    baseConfiguration.setProperty("storage.hostname", "192.168.3.82");

    TitanGraph titanGraph = TitanFactory.open(baseConfiguration);

     Vertex rash = titanGraph.addVertex(null);
        rash.setProperty("userId", 1);
        rash.setProperty("username", "rash");
        rash.setProperty("firstName", "Rahul");
        rash.setProperty("lastName", "Chaudhary");
        rash.setProperty("birthday", 101);

        Vertex honey = titanGraph.addVertex(null);
        honey.setProperty("userId", 2);
        honey.setProperty("username", "honey");
        honey.setProperty("firstName", "Honey");
        honey.setProperty("lastName", "Anant");
        honey.setProperty("birthday", 201);

        Edge frnd = titanGraph.addEdge(null, rash, honey, "FRIEND");
        frnd.setProperty("since", 2011);

        titanGraph.shutdown();

所以当我运行它时,我观察了cassandra日志并创建了一个名为titan的键空间和下表:

  • titan_ids
  • edgestore
  • graphindex
  • system_properties
  • systemlog
  • txlog
  • edgestore_lock_
  • graphindex_lock_
  • system_properties_lock _

我不知道这些表的用途以及它们如何存储数据。

运行程序后,会创建一个包含2个顶点的图形以及它们之间的边缘。我查询了表格,并在每个表格中找到了一些十六进制值。

我有以下问题:

  1. 图表如何存储在cassandra中?

  2. 现在,我已将此图表说成' x'存储在卡桑德拉。说我创建了另一个图表' y'并存储它。如何检索和遍历任何特定图表?因为在正常的cql查询中,您知道要查询的表和列。我如何识别' x'并且' y'分开。

  3. 任何人都可以帮助在java中发布示例代码,以使用一些示例csv数据创建图形。存储在Cassandra和一些相同图形的遍历示例。会有很多帮助,因为没有可以理解的例子。

1 个答案:

答案 0 :(得分:6)

你有几个问题,所以我会尽量回答。

问题1:

如果您对数据如何持久保存到数据库感兴趣,那么您应该看看here它详细描述了泰坦数据模型。我不确定它转换为提交日志和表的好坏,但它是一个开始。

问题2:

因此,您最终获得名为titan的关键字的原因是因为您没有提供自己的关键字。通常在创建彼此无关的不同图形时,您可以将这些图形存储在不同的键空间中。这样做如下:

BaseConfiguration baseConfiguration = new BaseConfiguration();
baseConfiguration.setProperty("storage.backend", "cassandra");
baseConfiguration.setProperty("storage.hostname", "192.168.3.82");

//First Graph
baseConfiguration.setProperty("storage.cassandra.keyspace", "keyspace1");
TitanGraph titanGraph1 = TitanFactory.open(baseConfiguration);

//Second Graph
baseConfiguration.setProperty("storage.cassandra.keyspace", "keyspace2");
TitanGraph titanGraph2 = TitanFactory.open(baseConfiguration);

当然,您可以在概述here

的同一个关键字中创建多个断开连接的图形

问题3:

这是一个需要进行CSV迁移示例的加载问题。我会说退后一步,问问自己,你想要建模什么。

假设您要存储产品列表以及购买这些产品的人员列表。您可以通过多种方式对此进行建模,但现在让我们只说人和产品是顶点,然后它们之间的边缘代表购买:

//Initliase graph
BaseConfiguration baseConfiguration = new BaseConfiguration();
baseConfiguration.setProperty("storage.backend", "cassandra");
baseConfiguration.setProperty("storage.hostname", "192.168.3.82");
baseConfiguration.setProperty("storage.cassandra.keyspace", "mycustomerdata");
TitanGraph graph = TitanFactory.open(baseConfiguration);

//---------------- Adding Data -------------------
//Create some customers
Vertex alice = graph.addVertex("customer");
alice.property("name", "Alice Mc Alice");
alice.property("birthdat", "100000 BC");

Vertex bob = graph.addVertex("customer");
bob.property("name", "Bob Mc Bob");
bob.property("birthdat", "1000 BC");

//Create Some Products
Vertex meat = graph.addVertex("product");
meat.property("name", "Meat");
meat.property("description", "Delicious Meat");

Vertex lettuce = graph.addVertex("product");
lettuce.property("name", "Lettuce");
lettuce.property("description", "Delicious Lettuce which is green");

//Alice Bought some meat:
alice.addEdge("bought", meat);
//Bob Bought some meat and lettuce:
bob.addEdge("bought", meat, lettuce);

//---------------- Querying (aka traversing whcih is what you do in graph dbs) Data -------------------
//Now who has bought meat?
graph.traversal().V().has("name", "meat").in("bought").forEachRemaining(v -> System.out.println(v.value("name")));

//Who are all our customers
graph.traversal().V().hasLabel("customer").forEachRemaining(v -> System.out.println(v.value("name")));

//What products do we have
graph.traversal().V().hasLabel("customer").forEachRemaining(v -> System.out.println(v.value("name")));

以上示例是Titan的简单使用。我建议您浏览[tinkerpop]文档,以便熟悉使用它。在一天结束时,您通过Tinkerpop API与titan接口。

我希望这对你有所帮助