apoc.periodic.repeat
Syntax |
|
||
Description |
Runs a repeatedly called background job.
To stop this procedure, use |
||
Input arguments |
Name |
Type |
Description |
|
|
The name of the job. |
|
|
|
The Cypher statement to run. |
|
|
|
The delay in seconds to wait between each job execution. |
|
|
|
|
|
Return arguments |
Name |
Type |
Description |
|
|
The name of the job. |
|
|
|
The delay on the job. |
|
|
|
The rate of the job. |
|
|
|
If the job has completed. |
|
|
|
If the job has been cancelled. |
Usage Examples
We can create 10 Person
nodes every second by running the following query:
CALL apoc.periodic.repeat(
"create-people",
"UNWIND range(1,10) AS id CREATE (:Person {uuid: apoc.create.uuid()})",
1
);
name | delay | rate | done | cancelled |
---|---|---|---|---|
"create-people" |
0 |
1 |
FALSE |
FALSE |
We can check how many nodes have been created by running the following query:
MATCH (:Person)
RETURN count(*) AS count;
count |
---|
110 |
If we want to cancel this job, we can use the apoc.periodic.cancel procedure.