4

I am using neo4j-import to import millions of nodes and relationship.

Is there any option to create relationships in to the existing database. I want to import the relationship using neo4j-import because I have millions of relationships.

Your cooperation is truly appreciated! Thanks

1 Answer 1

8

neo4j-import can be solely used for initial imports.

For huge mass imports into an existing database in offline mode you can use the batch inserter API.

If the database needs to be online while importing you can use LOAD CSV with periodic commit functionality.

A third option is to write an unmanaged extension to Neo4j and do the import programmatically.

Sign up to request clarification or add additional context in comments.

1 Comment

stefanarmbruster Thank you for clear explanation. And I did it using batch inserter API.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.