I am building a small graph DB by hand, which will undergo many changes as the graph grows. To maintain the graph in edge and vertex CSV files. I currently have a python script which reads the edge and vertex files and loads the data one element at a time. I found that DataStax Enterprise Graph has a graphloader tool but I could not find something equivalent for JanusGraph. Is there any package which can help in the loading of data from CSV/JSON files into JanusGraph that I am missing?
Asked
Active
Viewed 156 times
1 Answers
0
I am not aware of any specific tool to do that. You will need to write a small script to parse the csv and load vertexes and edges. You may look into this project https://github.com/IBM/janusgraph-utils or into this blog post to get you going.

Benoit Guigal
- 838
- 1
- 10
- 24
-
Thanks Benoit, these scripts give me a better idea on how to store the information in files and load it into the DB. – Akarsh Aug 13 '18 at 05:32