Reputation: 807
I have large amount of movies and keywords related. I parsed a data text file with keywords to create nodes for every keyword. It is about 160k keywords, so 160k lines of create queries. I procedurally created text file with these queries. Then I browsed to localhost where I can manage my database. I dropped this file with that huge query there and executed it.
After few seconds it returned an error:
Neo.DatabaseError.General.UnknownFailure
I think it's due to size of query. I picked just few lines and then execute. Nodes were created. But when I picked about 500 lines, same error was returned. With about 450 lines it runs fine.
Upvotes: 0
Views: 477
Reputation: 39925
LOAD CSV
command from Neo4j browser.Upvotes: 2