限定符和类型 | 字段和说明 |
---|---|
static int |
FAILED |
static int |
KILLED |
static int |
PREP |
static int |
RUNNING |
static int |
SUCCEEDED |
构造器和说明 |
---|
JobStatus() |
JobStatus(JobID jobid,
float setupProgress,
float mapProgress,
float reduceProgress,
float cleanupProgress,
int runState,
JobPriority jp)
Create a job status object for a given jobid.
|
JobStatus(JobID jobid,
float mapProgress,
float reduceProgress,
float cleanupProgress,
int runState)
Create a job status object for a given jobid.
|
JobStatus(JobID jobid,
float mapProgress,
float reduceProgress,
float cleanupProgress,
int runState,
JobPriority jp)
Create a job status object for a given jobid.
|
JobStatus(JobID jobid,
float mapProgress,
float reduceProgress,
int runState)
Create a job status object for a given jobid.
|
限定符和类型 | 方法和说明 |
---|---|
float |
cleanupProgress() |
Object |
clone() |
String |
getFailureInfo()
gets any available info on the reason of failure of the job.
|
Map<JobACL,AccessControlList> |
getJobACLs()
Get the acls for Job.
|
String |
getJobId()
已过时。
use getJobID instead
|
JobID |
getJobID() |
JobPriority |
getJobPriority()
Return the priority of the job
|
static String |
getJobRunState(int state)
Helper method to get human-readable state of the job.
|
int |
getRunState() |
String |
getSchedulingInfo()
Gets the Scheduling information associated to a particular Job.
|
long |
getStartTime() |
String |
getUsername() |
boolean |
isJobComplete()
Returns true if the status is for a completed job.
|
float |
mapProgress() |
void |
readFields(DataInput in)
Deserialize the fields of this object from
in . |
float |
reduceProgress() |
void |
setFailureInfo(String failureInfo)
set the reason for failuire of this job
|
protected void |
setJobACLs(Map<JobACL,AccessControlList> acls)
Set the job acls
|
void |
setJobPriority(JobPriority jp)
Set the priority of the job, defaulting to NORMAL.
|
void |
setRunState(int state)
Change the current run state of the job.
|
void |
setSchedulingInfo(String schedulingInfo)
Used to set the scheduling information associated to a particular Job.
|
float |
setupProgress() |
void |
write(DataOutput out)
Serialize the fields of this object to
out . |
public static final int RUNNING
public static final int SUCCEEDED
public static final int FAILED
public static final int PREP
public static final int KILLED
public JobStatus()
public JobStatus(JobID jobid, float mapProgress, float reduceProgress, float cleanupProgress, int runState)
jobid
- The jobid of the jobmapProgress
- The progress made on the mapsreduceProgress
- The progress made on the reducescleanupProgress
- The progress made on cleanuprunState
- The current state of the jobpublic JobStatus(JobID jobid, float mapProgress, float reduceProgress, int runState)
jobid
- The jobid of the jobmapProgress
- The progress made on the mapsreduceProgress
- The progress made on the reducesrunState
- The current state of the jobpublic JobStatus(JobID jobid, float mapProgress, float reduceProgress, float cleanupProgress, int runState, JobPriority jp)
jobid
- The jobid of the jobmapProgress
- The progress made on the mapsreduceProgress
- The progress made on the reducesrunState
- The current state of the jobjp
- Priority of the job.public JobStatus(JobID jobid, float setupProgress, float mapProgress, float reduceProgress, float cleanupProgress, int runState, JobPriority jp)
jobid
- The jobid of the jobsetupProgress
- The progress made on the setupmapProgress
- The progress made on the mapsreduceProgress
- The progress made on the reducescleanupProgress
- The progress made on the cleanuprunState
- The current state of the jobjp
- Priority of the job.public static String getJobRunState(int state)
state
- job state@Deprecated public String getJobId()
public JobID getJobID()
public float mapProgress()
protected void setJobACLs(Map<JobACL,AccessControlList> acls)
acls
- Map
from JobACL
to AccessControlList
public float cleanupProgress()
public float setupProgress()
public float reduceProgress()
public int getRunState()
public void setRunState(int state)
public long getStartTime()
public String getUsername()
public String getSchedulingInfo()
public String getFailureInfo()
public void setFailureInfo(String failureInfo)
failureInfo
- the reason for failure of this job.public void setSchedulingInfo(String schedulingInfo)
schedulingInfo
- Scheduling information of the jobpublic Map<JobACL,AccessControlList> getJobACLs()
Map
from JobACL
to AccessControlList
public JobPriority getJobPriority()
public void setJobPriority(JobPriority jp)
jp
- new job prioritypublic boolean isJobComplete()
public void write(DataOutput out) throws IOException
Writable
out
.write
在接口中 Writable
out
- DataOuput
to serialize this object into.IOException
public void readFields(DataInput in) throws IOException
Writable
in
.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields
在接口中 Writable
in
- DataInput
to deseriablize this object from.IOException
Copyright © 2009 The Apache Software Foundation