I am very beginner to graph database and Titandb. I am trying to create a small graph and saving into cassandra.
a) I added vertices and edges with TinkerGraph and tried to save. Later I got to know It is not possible to save TinkerGraph. Then what is the use of it?
b) I tried
g = TitanFactory.open('conf/titan-cassandra-es.properties')
mgmt = g.getManagementSystem()
Got following error
No signature of method: com.thinkaurelius.titan.graphdb.database.StandardTitanGraph.getManagementSystem() is applicable for argument types: () values: []
What does g.getManagementSystem() mean?
c) Which programming I need to learn for Gremlin (groovy or java)?
I have downloaded titan-1.0.0-hadoop1.zip, rexster-server-2.6.0.zip.
I am not understanding head and tail of it. Please someone help me to create simple graph in titan and save into cassandra and visualise from rexster
a) TinkerGraph is a reference implementation for vendors implementing the TinkerPop APIs, as well as a sandbox for playing around. It's not intended to be used in production.
b) What version of Titan are you using? The
getManagementSystemAPI doesn't exist in Titan 1.0.0. The management subsystem exists to provide access to APIs for various Titan-specific subsystems (indexing, schema, etc).c) Most Gremlin examples you'll find are written in Groovy, so you'll probably have an easier time with that.