Access worker that ran task
getCurrentWorker
in
the workspace of the MATLAB worker.
In the client workspace, a parallel.Worker object is available
from the Worker
property of a parallel.Task object.
Parent | parallel.cluster.MJS |
Children | none |
A parallel.Worker object provides access to the MATLAB worker session that executed a task as part of a job.
Worker Type | Description |
---|---|
parallel.cluster.MJSWorker | MATLAB® worker on MATLAB Job Scheduler cluster |
parallel.cluster.CJSWorker | MATLAB worker on CJS cluster |
parallel.ThreadWorker | MATLAB thread worker. |
There are no methods for a parallel.Worker object other than
generic methods for any objects in the workspace, such as delete
,
etc.
The following table describes the properties of a MATLAB Job Scheduler worker.
Property | Description |
---|---|
AllHostAddresses | IP addresses of worker host |
Name | Name of worker, set when worker session started |
Parent | MATLAB Job Scheduler cluster to which this worker belongs |
The following table describes the properties of an CJS worker.
Property | Description |
---|---|
ComputerType | Type of computer on which the worker ran; the value of the MATLAB function computer executed on
the worker |
Host | Host name where the worker executed the task |
ProcessId | Process identifier for the worker |
The following table describes the properties of a thread worker.
Property | Description |
---|---|
ComputerType | Type of computer on which the worker ran; the value of the
MATLAB function computer executed on
the worker |
Host | Host name where the worker executed the task |
To get further help on the types of parallel.Worker objects, including a list of links to help for its properties, type:
help parallel.cluster.MJSWorker help parallel.cluster.CJSWorker help parallel.ThreadWorker