Click or drag to resize

JetClientRunJob Method (Job, JobConfiguration, String)

Stores the job configuration and the specified files on the DFS, and runs the job.

Namespace:  Ookii.Jumbo.Jet
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public void RunJob(
	Job job,
	JobConfiguration config,
	params string[] files
)

Parameters

job
Type: Ookii.Jumbo.JetJob
The job to run.
config
Type: Ookii.Jumbo.Jet.JobsJobConfiguration
The JobConfiguration for the job.
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: 
An 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