Reputation: 109
i want use Titan with Cassandra as graph database (with Faunus as Framework). Where can i get example codes for Faunus or Gremlin? I want to query the pagerank algo on the Graüh DB?
Upvotes: 0
Views: 1697
Reputation: 1455
If you are using Titan 1.0, You should avoid using Faunus, as [it is buggy] -- it just does not retrieve all vertices from the graph.
Unfortunately, there is no other good solution for using Titan with Hadoop. If you are familiar with Spark, try SparkGraphComputer which is part of TinkerPop.
Upvotes: 0
Reputation: 3380
Try their Official Wiki Pages :
For Titan with Cassandra: See Here
For Basic Gremlin Query: See Here
For Faunus Implementation: Titan Format, Faunus Graph
Upvotes: 1