Retrieve existing batch job variables while the job is still running.
8 次查看(过去 30 天)
显示 更早的评论
How can we retrieve batch job variables when the job is still running?
We have something like load(job) to load job variables but it is only available when the job is finished. Can we do it using getCurrentValueStore?.
2 个评论
Walter Roberson
2022-4-28
No, Value Stores are cooperative. Only thing that are deliberately stored become available. It does not provide any method of accessing the workspace of the job.
回答(1 个)
arushi
2024-1-18
Hi Derrell,
I understand that you want to retrieve batch job variables while the job is still running. When you're running batch jobs, you have limited options to interact with the job's workspace while it is still running. The “load” function, as you mentioned, is typically used to retrieve the output variables from a finished job.
However, if you want to monitor or retrieve data from a batch job while it is still running, you can use the “diary” function to capture the command window output of the job. This doesn't give you direct access to the workspace variables, but it does allow you to see the output that the job is producing in real-time. You can enable the diary before starting the job and then read it periodically.
“getCurrentValueStore” is indeed a function that allows you to access a “ValueStore” object but is not for accessing variables from a batch job while it is running. The “ValueStore” object allows you to store key-value pairs from within the workers, and it is particularly useful when you want to accumulate data across multiple iterations or workers without sending the data back to the client after each iteration.
Please refer to the to the below documentation for “diary” function-
https://www.mathworks.com/help/matlab/ref/diary.html
Hope this helps.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Parallel Server 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!