Error message in the console when using batch

8 visualizaciones (últimos 30 días)
Sandra Martinez
Sandra Martinez el 6 de Feb. de 2025
Comentada: Sandra Martinez el 22 de Feb. de 2025
Im using batch, where we call the myFUN 30 times (this function procces an image)
for k=1:30
job(nn)=batch(@myFUN,1,{matfiles,k,Parameters,base_folder,saveflag,Plot_Figures},'CaptureDiary',true);
end
In that function I have an error message that tells me that this image could not be processed for some reason
fprintf(fileID,'%s Number of initial sources=0, unprocessed roi\n',Sample.TagName);
How can I make that error message appear in the console when I am using batch?
  2 comentarios
Raymond Norris
Raymond Norris el 21 de Feb. de 2025
@Sandra Martinez all good answers here.
Just to clarify, is the "error message" you're talking about the fprintf statement you're showing? That is, you want the fprintf statement to be displayed in your MATLAB console (as a pseudo error)?
Or was the call to fprintf erroring out (perhaps Sample is undefined) and you want to display the MATLAB error?
Sandra Martinez
Sandra Martinez el 22 de Feb. de 2025
Thanks for the answers. My conclusion after reading the answers is that you cannot get a message to appear in the middle of the process when using Batch. ValueStore is not avilable at MAtlab2021.
Therefore I chose to save as a text (as Walter suggested) that is part of the job object. At the end of the process Im able to know if there was any error.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 6 de Feb. de 2025
fetchOutputs() in a try/catch environment. It will succeed if there was no error, and will throw an error if there was an error encountered. Inside the catch block, check the Tasks.Error property of the job; it should be error information.
Tip
To see if any of the tasks on the job j failed after encountering an error, check if j.Tasks.Error is empty. If the returned array is empty, none of the tasks on the job j encountered any errors.
If some tasks completed successfully, you can use the OutputArguments property of a task to access the output arguments of that task directly.
  4 comentarios
Walter Roberson
Walter Roberson el 6 de Feb. de 2025
The alternative is to emit the error message as text, and to pick it up by examining the Diary property of the job. However, this will pick up all text emitted. (You could in theory post-process the text picked up from Diary)
There is no "display in console" type of function.
As an alternative, you might consider using parfeval() instead of batch(). Using parfeval() would allow you to construct parallel.pool.DataQueue or parallel.pool.PollableDataQueue objects, which could then be used to send text back to the client .
Sandra Martinez
Sandra Martinez el 22 de Feb. de 2025
Thank you Walter for the suggestion of saving the error message as text,

Iniciar sesión para comentar.

Más respuestas (1)

Edric Ellis
Edric Ellis el 7 de Feb. de 2025
As mentioned by @Walter Roberson you can use the Diary property of the job to view this information. Another (more intrusive) option if you wish is to use ValueStore to record the messages. There's an example on that documentation page showing how a batch job can record progress into the ValueStore, and also how the client can register a callback function that gets called automatically whenever an entry is added to the ValueStore.
  1 comentario
Sandra Martinez
Sandra Martinez el 22 de Feb. de 2025
Thanks Edric, ValueStore is not avilable at MAtlab2021.
Unfortunately, I am Argentina and at the moment (as I believe you know something about our president's decisions) they have canceled all previously awarded research projects. So we can't buy new versions of sfotwears.

Iniciar sesión para comentar.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by