|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.hadoop.mapreduce.lib.jobcontrol.ControlledJob
@InterfaceAudience.Public @InterfaceStability.Evolving public class ControlledJob
This class encapsulates a MapReduce job and its dependency. It monitors the states of the depending jobs and updates the state of this job. A job starts in the WAITING state. If it does not have any depending jobs, or all of the depending jobs are in SUCCESS state, then the job state will become READY. If any depending jobs fail, the job will fail too. When in READY state, the job can be submitted to Hadoop for execution, with the state changing into RUNNING state. From RUNNING state, the job can get into SUCCESS or FAILED state, depending the status of the job execution.
Nested Class Summary | |
---|---|
static class |
ControlledJob.State
|
Field Summary | |
---|---|
static String |
CREATE_DIR
|
Constructor Summary | |
---|---|
ControlledJob(Configuration conf)
Construct a job. |
|
ControlledJob(Job job,
List<ControlledJob> dependingJobs)
Construct a job. |
Method Summary | |
---|---|
boolean |
addDependingJob(ControlledJob dependingJob)
Add a job to this jobs' dependency list. |
void |
failJob(String message)
|
List<ControlledJob> |
getDependentJobs()
|
Job |
getJob()
|
String |
getJobID()
|
String |
getJobName()
|
ControlledJob.State |
getJobState()
|
JobID |
getMapredJobID()
|
String |
getMessage()
|
boolean |
isCompleted()
|
boolean |
isReady()
|
void |
killJob()
|
void |
setJob(Job job)
Set the mapreduce job |
void |
setJobID(String id)
Set the job ID for this job. |
void |
setJobName(String jobName)
Set the job name for this job. |
protected void |
setJobState(ControlledJob.State state)
Set the state for this job. |
void |
setMessage(String message)
Set the message for this job. |
protected void |
submit()
Submit this job to mapred. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String CREATE_DIR
Constructor Detail |
---|
public ControlledJob(Job job, List<ControlledJob> dependingJobs) throws IOException
job
- a mapreduce job to be executed.dependingJobs
- an array of jobs the current job depends on
IOException
public ControlledJob(Configuration conf) throws IOException
conf
- mapred job configuration representing a job to be executed.
IOException
Method Detail |
---|
public String toString()
toString
in class Object
public String getJobName()
public void setJobName(String jobName)
jobName
- the job namepublic String getJobID()
public void setJobID(String id)
id
- the job IDpublic JobID getMapredJobID()
public Job getJob()
public void setJob(Job job)
job
- the mapreduce job for this job.public ControlledJob.State getJobState()
protected void setJobState(ControlledJob.State state)
state
- the new state for this job.public String getMessage()
public void setMessage(String message)
message
- the message for this job.public List<ControlledJob> getDependentJobs()
public boolean addDependingJob(ControlledJob dependingJob)
dependingJob
- Job that this Job depends on.
public boolean isCompleted()
public boolean isReady()
public void killJob() throws IOException, InterruptedException
IOException
InterruptedException
public void failJob(String message) throws IOException, InterruptedException
IOException
InterruptedException
protected void submit()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |