Parallel computing toolbox: Failed tasks

10 visualizzazioni (ultimi 30 giorni)
Pavel
Pavel il 9 Dic 2014
Commentato: Edric Ellis il 10 Dic 2014
I run an independent job on a local cluster. If one of its tasks fails, the task property Status is set to 'finished' and the task properties Error/ErrorMessage/ErrorIdentifier contain information about the error. Sometimes, however, Status is set to 'failed' and Error/ErrorMessage/ErrorIdentifier are empty.
What does the failed status mean and when/why does it occur? When it happens, how can I determine the reason of the error?
Thank you.
  1 Commento
Edric Ellis
Edric Ellis il 10 Dic 2014
This can happen if the worker crashes when processing the job. You might be able to get more information like so:
c = parcluster();
j = createJob(c, ...);
t = createTask(j, ...);
c.getDebugLog(t) % gets more information about the task 't'

Accedi per commentare.

Risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by