Hello,
I'm currently running Neo4j version 4.0 and installed plugin APOC 4.0.
-
I'm trying to load bunch of csv files using this CALL string. All csv files are ready in neo4j/plugins folder.
-
However when I run this query, I get this result:
-
So I try to grep this id in file directory, which shows results:
As you can see, a node with id 17997 is existent and has some relationships.
Header in processes.csv isid:ID|NodeName:STRING|Characteristics:STRING[]|CommandLine:STRING|Pid:INT|CreationTime:localtime|:LABEL
and header in relationships.csv is:START_ID|:END_ID|:TYPE
-
I investigated more and ran only this query:
which loads only nodes from processes.csv. As you can see, it finished with loading 1306 nodes. -
But actually in processes.csv are 1667 nodes, here is proof (number of lines in file minus one for header):
So it's obvious, that the first problem is caused by some of the nodes not loaded properly.
My question is why are they not loaded and how come that procedure does not return any errors.
Thanks, Petr