I recently upgraded my Neo4j to 3.1.3, and with it I got the latest APOC plugin (3.1.3.6).
I had some code that worked fine, and could create ~ 3 million relationships in about a minute and half the time of the wall. But now it works for more than 8 hours and does not show any signs of a stop ...
Since the code used to run without any problems, I hope that something should change between the versions that led to my code being processed.
Should rock_n_roll have to be changed (maybe apoc.periodic.commit with positional arguments or something else)? Thank you for understanding.
This is what I am running.
CALL apoc.periodic.rock_n_roll( "MATCH (c:ChessPlayer),(r:Record) WHERE c.ChessPlayer_ID = r.ChessPlayer RETURN c,r", "CYPHER planner=rule WITH {c} AS c, {r} AS r CREATE (c)-[:HAD_RECORD]->(r)", 200000)
source share