public class TaskAttemptID extends ID
TaskID, that this TaskAttemptID belongs to.
Second part is the task attempt number. attempt_200707121733_0003_m_000005_0 , which represents the
zeroth task attempt for the fifth map task in the third job
running at the jobtracker started at 200707121733.
Applications should never construct or parse TaskAttemptID strings
, but rather use appropriate constructors or forName(String)
method.
| 构造器和说明 |
|---|
TaskAttemptID() |
TaskAttemptID(String jtIdentifier,
int jobId,
boolean isMap,
int taskId,
int id)
Constructs a TaskId object from given parts.
|
TaskAttemptID(TaskID taskId,
int id)
Constructs a TaskAttemptID object from given
TaskID. |
| 限定符和类型 | 方法和说明 |
|---|---|
protected StringBuilder |
appendTo(StringBuilder builder)
Add the unique string to the StringBuilder
|
int |
compareTo(ID o)
Compare TaskIds by first tipIds, then by task numbers.
|
boolean |
equals(Object o) |
static TaskAttemptID |
forName(String str)
Construct a TaskAttemptID object from given string
|
JobID |
getJobID()
Returns the
JobID object that this task attempt belongs to |
TaskID |
getTaskID()
Returns the
TaskID object that this task attempt belongs to |
int |
hashCode() |
boolean |
isMap()
Returns whether this TaskAttemptID is a map ID
|
void |
readFields(DataInput in)
Deserialize the fields of this object from
in. |
String |
toString() |
void |
write(DataOutput out)
Serialize the fields of this object to
out. |
public TaskAttemptID(TaskID taskId, int id)
TaskID.taskId - TaskID that this task belongs toid - the task attempt numberpublic TaskAttemptID(String jtIdentifier, int jobId, boolean isMap, int taskId, int id)
jtIdentifier - jobTracker identifierjobId - job numberisMap - whether the tip is a maptaskId - taskId numberid - the task attempt numberpublic TaskAttemptID()
public boolean isMap()
protected StringBuilder appendTo(StringBuilder builder)
builder - the builder to append otpublic void readFields(DataInput in) throws IOException
Writablein.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields 在接口中 WritablereadFields 在类中 IDin - DataInput to deseriablize this object from.IOExceptionpublic void write(DataOutput out) throws IOException
Writableout.write 在接口中 Writablewrite 在类中 IDout - DataOuput to serialize this object into.IOExceptionpublic int compareTo(ID o)
compareTo 在接口中 Comparable<ID>compareTo 在类中 IDpublic static TaskAttemptID forName(String str) throws IllegalArgumentException
IllegalArgumentException - if the given string is malformedCopyright © 2009 The Apache Software Foundation