 | JetClientRunJob(JobConfiguration, String) Method |
Creates a new job, stores the job configuration and the specified files on the DFS, and runs the job.
Namespace: Ookii.Jumbo.JetAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic Job RunJob(
JobConfiguration config,
params string[] files
)
Public Function RunJob (
config As JobConfiguration,
ParamArray files As String()
) As Job
public:
Job^ RunJob(
JobConfiguration^ config,
... array<String^>^ files
)
member RunJob :
config : JobConfiguration *
files : string[] -> Job
Parameters
- config JobConfiguration
- The JobConfiguration for the job.
- files String
- 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
JobAn instance of the
Job class describing the job that was started.
Remarks
This function uses the application's configuration to create a
FileSystemClient to access the DFS.
See Also