0

Neptune's newest update includes bulkload with a CSV file. Does the js lv of Gremlin support this?

Stanislav Kralin
  • 11,070
  • 4
  • 35
  • 58

1 Answers1

1

I am not sure I fully understand your question but Amazon Neptune has always had a Bulk Loader that can load vertices and edges that are stored in CSV files. Once loaded you will have a property graph that any of the Gremlin GLV clients can work with. The documentation is located here:

https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load.html

EDITED to add that the bulk loader is controlled by an HTTP/REST endpoint so you could invoke it from within you code but not using the g.io() step currently.

Kelvin Lawrence
  • 14,674
  • 2
  • 16
  • 38