I am using foreach
+ %dopar%
to achieve parallelism over multiple cores. I know some of the tasks will face exceptions. When an exception occurs:
- Will the remaining tasks that were already parallelly started still complete?
- Will the tasks that were not scheduled (I don't know if that's the correct term) be scheduled and eventually complete? If so, will it still be able to utilize all the cores?
I tried finding resources on this, but couldn't find any. Looks like I'm using the wrong keywords. If you have any resources, please direct me to them.