--
You received this message because you are subscribed to the Google Groups "Aurelius" group.
To unsubscribe from this group and stop receiving emails from it, send an email to aureliusgraph...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Ha. I dare you to unzip it.
Marko.
Chrome says this: "titan-0.5.0-M1-hadoop2.zip is not commonly downloaded and could be dangerous."No comments,
--
I am trying to understand the effort required to upgrade my current system
--
Great Daniel, as expected. ;-) About this Marko's comment above "3. We removed support for TinkerPop Graph in general where now Titan/Hadoop only works with Titan." only applies to (ex-)Faunus, is not it? So previous GremlinPipelines are supposed to be working as before (with minor changes, e.g. toList() -> toStream()), I suppose. I still see gremlin, pipes and blueprints in the zip.....
--
Along those lines, is there an API that I'm missing which will tell me what properties and labels are currently existing in the graph? It would be good for me to know if a property already exists before trying to create it again!
--
You received this message because you are subscribed to the Google Groups "Aurelius" group.
To unsubscribe from this group and stop receiving emails from it, send an email to aureliusgraph...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Will it be good to move on with Titan0.5.0-M1 in production?
--
Hi,I'm trying out Titan 0.5.0-M1. Need some help.I see that TitanGraph .getType(), .makeKey() and .makeLabel() has been removed.I can see that there are new methods .makePropertyKey( String name ).Am I suppose to use this in place of .makeKey()?Also in Titan 0.4 I can specify the index name to be "standard" or "elasticsearch",and whether it is for vertex or edge, but I don't see it in PropertyKeyMaker.How do I specify to use what index and for vertex or edge?Lastly, how do I check if a key already exist? I was using .getType(), but I don't see any .getPropertyKey() method.Thanks.Regards,Melvin Yam
Hi Daniel,
I'm using the Elasticsearch version which comes with Titan 0.5.0-M1 which is 1.0.1.
The exception is thrown when I execute
TitanFactory.Builder config = TitanFactory.build();config.set("storage.backend","berkeleyje");config.set("storage.directory",directory);config.set("index."+INDEX_NAME+".backend","elasticsearch");config.set("index."+INDEX_NAME+".local-mode",true);config.set("index."+INDEX_NAME+".client-only",false);config.set("index." + INDEX_NAME + ".directory", directory + File.separator + "es");TitanGraph graph = config.open();
in the 5th line. The Builder does not know the property index.local-mode anymore.
Hi guys, this has been fixed in the m2 release. Thanks for pointing it out.