Hi,
I'm trying to populate the Neptune db with my own graph. (30k nodes, 100K edges.).
I find the CSV bulk load a bit burdensome so I decided to populate the graph by sending off queries.
If I send a query per node via the REST interface:
"g.addV('object').property('name','aaa').next()", it consumes about .5 second per node.
I can combine the queries:
g.addV('object').property('name','aaa').addV('object').property('name','bbb').next()
and it consumes about the same time.
BUT i found the character limit of the query to be 5000. Any character over 5000 results in a error.
Can I extent this? Any comments on the speed and the approach?
Thanks!
Olav