| JetClientRunJob Method (JobConfiguration, FileSystemClient, String) |
Creates a new job, stores the job configuration and the specified files on the DFS using the specified
FileSystemClient, and runs the job.
Namespace:
Ookii.Jumbo.Jet
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public Job RunJob(
JobConfiguration config,
FileSystemClient fileSystemClient,
params string[] files
)
Public Function RunJob (
config As JobConfiguration,
fileSystemClient As FileSystemClient,
ParamArray files As String()
) As Job
public:
Job^ RunJob(
JobConfiguration^ config,
FileSystemClient^ fileSystemClient,
... array<String^>^ files
)
member RunJob :
config : JobConfiguration *
fileSystemClient : FileSystemClient *
files : string[] -> Job
Parameters
- config
- Type: Ookii.Jumbo.Jet.JobsJobConfiguration
The JobConfiguration for the job. - fileSystemClient
- Type: Ookii.Jumbo.Dfs.FileSystemFileSystemClient
A FileSystemClient used to access the Jumbo DFS. - files
- Type: SystemString
The local paths of the files to store in the job directory on the DFS. This should include the assembly containing the task classes.
Return Value
Type:
JobAn instance of the
Job class describing the job that was started.
See Also