Let's say I have:

LOAD CSV WITH HEADERS FROM "file:C:/test.txt" AS csvLine
CREATE (p:Person { person_id: toInt(csvLine.person_id), name: csvLine.name 
})

I run this query in the browser. I know that it's not the fastest way and I 
should think about using the batch importer. But I really like that way 
somehow and want to speed it up.

So when I ran this the first time, after like 2 or 3 minutes I got an erro 
saying "GC overhead limit exceeded". So It set

wrapper.java.initmemory=4096
wrapper.java.maxmemory=4096

Now the error does not come up. But it's still slow and I can't see how 
much time is still needed. So if you have tips on doing this, I would be 
very thankful. =)

PS: the file is 2 gb big and has like 20 mio entries

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to