Justin Lujan
Justin Lujan

Reputation: 21

Is there a way to import data into neo4j without using csv?

I want to import data into Neo4j. My dataset has about 6 billion rows of data, and I am trying to avoid exporting and importing through CSV. Since this would take a while, is there an alternative way?

Upvotes: 0

Views: 76

Answers (1)

Michael Hunger
Michael Hunger

Reputation: 41676

If you're fluent in Java, you can also use the parallel batch importer APIs directly from Java, see:

Upvotes: 1

Related Questions