Interface EngineTaskConfigProvider
-
- All Known Implementing Classes:
MapReduceEngineTaskConfigProvider
,SparkEngineTaskConfigProvider
public interface EngineTaskConfigProvider
An interface to get information about a running job and task on any batch computing engine.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getJobName()
java.util.Properties
getJobProps()
int
getTaskId()
-
-
-
Method Detail
-
getJobName
java.lang.String getJobName()
- Returns:
- The name of the compute job. This must be the same for all tasks of the same job.
-
getTaskId
int getTaskId()
- Returns:
- The ID of the current task. This ID number is 0-based.
-
getJobProps
java.util.Properties getJobProps()
- Returns:
- The properties of the compute job.
-
-