Click or drag to resize

TaskExecutionUtilityRunTask(Guid, String, String, TaskAttemptId, Boolean) Method

Executes a task on behalf of the task host. For Jumbo internal use only.

Namespace: Ookii.Jumbo.Jet
Assembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public static void RunTask(
	Guid jobId,
	string jobDirectory,
	string dfsJobDirectory,
	TaskAttemptId taskAttemptId,
	bool noLogConfig = false
)

Parameters

jobId  Guid
The job id.
jobDirectory  String
The job directory.
dfsJobDirectory  String
The DFS job directory.
taskAttemptId  TaskAttemptId
The task attempt id.
noLogConfig  Boolean  (Optional)
to initialize logging configuration; otherwise, .
Remarks

This method assumes that the current AppDomain is used only for running the task, as it will override the global logging configuration and register the custom assembly resolver.

This method should only be invoked by the TaskHost, and by the TaskServer when using AppDomain mode.

See Also