I'm trying to migrate our current 100M vertices/edges graph from Titan 0.4.4 to Titan 0.9M2.
I used Faunus to export to GraphSON as that seemed the only choice.
Now it turns out that is not a choice either. Titan 0.9M2 uses TinkerPop3 and this changed it's GraphSON format so it is not compatible with TP2
My guess is the only two real options are:
1. sed replace _id with id, _outV with outV etc etc on a 80Gb file
2. use ScriptInputFormat and a custom script which can read TP2 GraphSON
I fear 1. will take forever and may still produce an invalid TP3 GraphSON. So I'm going with 2. but before I do does anyone already have such a script?