[Neo4j] big data and neo4j

2014-06-05 Thread Comte Frédéric
Hi, I am doing a project to graph the relation between players on a game. Each day there is more than 10 millions nodes and 50 millions relationships. I wonder if neo4j can scale more than 34 billions nodes and relationships. Storing all this data in neo4j is a good idea? or should I store it in

[Neo4j] Re: Load csv in neo4j 2.1 and 2.0

2014-06-05 Thread Comte Frédéric
Thx for your responses. My index are online. In fact my problem is not exactly the one I described : This request is very long on 2.1.0-RC2 and 2.1.1 CREATE INDEX ON :Joueur(IDJoueur); CREATE INDEX ON :Tech(Tech); USING PERIODIC COMMIT LOAD CSV FROM "file:///tmp/X.csv" AS csvLine WITH csvLine[0

[Neo4j] Load csv in neo4j 2.1 and 2.0

2014-06-03 Thread Comte Frédéric
Hi all, I am quite new to neo4j and I try to import csv data in neo4j. I tried the following methods : - using load csv in neo4j in 2.1.0-M01 , 2.1.0-RC2 , 2.1.1. I use the following request CREATE INDEX ON :Joueur(IDJoueur); CREATE INDEX ON :TypePaiement(Type); USING PERIODIC COMMIT 1500