Is it possible to get the list of failed batches during apoc.periodic.iterate? (apoc-3.5.0.1-all)
In my case around 1% of the batches of apoc.periodic.iterate with {parallel:true, concurrency:16} fail most likely because 2 threads are trying to create relationship to/from the same node at the same time. Retries do not seem to help...
I thought that if I could get the list of the results of the cypherIterate where the cypherAction failed, I could run on those apoc.periodic.iterate with parallel:false (with parallel:false I get 0 failed batches). Is it possible? Or are there workarounds?
Running the complete query with parallel:false takes too long...
Thank you!