1
votes

How we can automate data loads in Neo4j 3.0, I am using LOAD CSV command for data loads, is there any way to schedule this like a batch job on windows platform?

1

1 Answers

1
votes

You should be able to use one of the APOC procedures for Job Management. For example:

CALL apoc.periodic.schedule('name', cypher-statement, repeat-time-in-seconds)

Looking at the source code, there is also a way to cancel a job by name (but it is not documented, for some reason):

CALL apoc.periodic.cancel('name')

The APOC plugin has to be installed on the neo4j server first.