Data transfer specifics for a queue
2 次查看(过去 30 天)
显示 更早的评论
Documentation for parallel.pool.DataQueue and parallel.pool.PollableDataQueue says next to nothing about how data is transferred between the client and workers. I have two questions in particular about this functionality, although any related details would be much appreciated.
- What can or can't be sent through the queue. During debugging I sent a daq session through the queue and although it appeared to transfer fine all the properties of the class were empty.
- My understanding is that workers and the client are in separate processes (with separate memory management). When sending data through a queue what sort of locking takes place to transfer data between the processes? For example, does the worker somehow lock the client's memory management system while sending a message to the client, and similarly, have to wait for that lock if the client is doing memory allocation?
0 个评论
采纳的回答
Walter Roberson
2018-1-6
A message type interface is used, implemented through Java. The source elements are serialized, the serialized version transmitted, and the destination deserializes. The destination receives the information when convenient for it, so it cannot interfere with memory allocation.
Objects that are controlling a hardware resource cannot usually transfer the resource control through the queue.
4 个评论
Walter Roberson
2018-1-6
You can read the source.
toolbox/distcomp/cluster/+parallel/+pool/DataQueue.m calls toolbox/distcomp/cluster/+parallel/+internal/+pool/AbstractDataQueue.m which does
import com.mathworks.toolbox.distcomp.pmode.DataMessageDispatcher
and then does DataMesageDispatcher.createRemoteQueue and for that,
>> which com.mathworks.toolbox.distcomp.pmode.DataMessageDispatcher.createRemoteQueue
createRemoteQueue is a Java method % static method or package function
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Asynchronous Parallel Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!