I'm trying to load the example Graph of the Gods file that is distributed with Titan with the loadGraphSON function. I have executed the following steps and are working with Titan 0.5.4 with Hadoop 2.
- Downloaded and unpacked a fresh Titan 0.5.4 with Hadoop 2.
- Started Titan, Rexster, Cassandra, ElasticSearch with the command
bin/titan.sh -c cassandra-es start
- Run Gremlin with:
bin/gremlin.sh
- Open a new TitanFactory instance with the required settings:
g = TitanFactory.open('conf/titan-cassandra-es.properties')
- Then I tried to load the Graph of the Gods from the examples-directory with
g.loadGraphSON("examples/graph-of-the-gods")
I do not get an error, but trying to show all vertices with g.V returns nothing. Am I executing the rights steps here, or am I doing something wrong?