TaskID.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.mapred;
  19. import java.io.DataInput;
  20. import java.io.IOException;
  21. /**
  22.  * TaskID represents the immutable and unique identifier for 
  23.  * a Map or Reduce Task. Each TaskID encompasses multiple attempts made to
  24.  * execute the Map or Reduce Task, each of which are uniquely indentified by
  25.  * their TaskAttemptID.
  26.  * 
  27.  * TaskID consists of 3 parts. First part is the {@link JobID}, that this 
  28.  * TaskInProgress belongs to. Second part of the TaskID is either 'm' or 'r' 
  29.  * representing whether the task is a map task or a reduce task. 
  30.  * And the third part is the task number. <br> 
  31.  * An example TaskID is : 
  32.  * <code>task_200707121733_0003_m_000005</code> , which represents the
  33.  * fifth map task in the third job running at the jobtracker 
  34.  * started at <code>200707121733</code>. 
  35.  * <p>
  36.  * Applications should never construct or parse TaskID strings
  37.  * , but rather use appropriate constructors or {@link #forName(String)} 
  38.  * method. 
  39.  * 
  40.  * @see JobID
  41.  * @see TaskAttemptID
  42.  */
  43. @Deprecated
  44. public class TaskID extends org.apache.hadoop.mapreduce.TaskID {
  45.   /**
  46.    * Constructs a TaskID object from given {@link JobID}.  
  47.    * @param jobId JobID that this tip belongs to 
  48.    * @param isMap whether the tip is a map 
  49.    * @param id the tip number
  50.    */
  51.   public TaskID(org.apache.hadoop.mapreduce.JobID jobId, boolean isMap,int id) {
  52.     super(jobId, isMap, id);
  53.   }
  54.   
  55.   /**
  56.    * Constructs a TaskInProgressId object from given parts.
  57.    * @param jtIdentifier jobTracker identifier
  58.    * @param jobId job number 
  59.    * @param isMap whether the tip is a map 
  60.    * @param id the tip number
  61.    */
  62.   public TaskID(String jtIdentifier, int jobId, boolean isMap, int id) {
  63.     this(new JobID(jtIdentifier, jobId), isMap, id);
  64.   }
  65.   
  66.   public TaskID() {
  67.     super(new JobID(), false, 0);
  68.   }
  69.   
  70.   /**
  71.    * Downgrade a new TaskID to an old one
  72.    * @param old a new or old TaskID
  73.    * @return either old or a new TaskID build to match old
  74.    */
  75.   public static TaskID downgrade(org.apache.hadoop.mapreduce.TaskID old) {
  76.     if (old instanceof TaskID) {
  77.       return (TaskID) old;
  78.     } else {
  79.       return new TaskID(JobID.downgrade(old.getJobID()), old.isMap(), 
  80.                         old.getId());
  81.     }
  82.   }
  83.   @Deprecated
  84.   public static TaskID read(DataInput in) throws IOException {
  85.     TaskID tipId = new TaskID();
  86.     tipId.readFields(in);
  87.     return tipId;
  88.   }
  89.   
  90.   public JobID getJobID() {
  91.     return (JobID) super.getJobID();
  92.   }
  93.   /** 
  94.    * Returns a regex pattern which matches task IDs. Arguments can 
  95.    * be given null, in which case that part of the regex will be generic.  
  96.    * For example to obtain a regex matching <i>the first map task</i> 
  97.    * of <i>any jobtracker</i>, of <i>any job</i>, we would use :
  98.    * <pre> 
  99.    * TaskID.getTaskIDsPattern(null, null, true, 1);
  100.    * </pre>
  101.    * which will return :
  102.    * <pre> "task_[^_]*_[0-9]*_m_000001*" </pre> 
  103.    * @param jtIdentifier jobTracker identifier, or null
  104.    * @param jobId job number, or null
  105.    * @param isMap whether the tip is a map, or null 
  106.    * @param taskId taskId number, or null
  107.    * @return a regex pattern matching TaskIDs
  108.    */
  109.   @Deprecated
  110.   public static String getTaskIDsPattern(String jtIdentifier, Integer jobId
  111.       , Boolean isMap, Integer taskId) {
  112.     StringBuilder builder = new StringBuilder(TASK).append(SEPARATOR)
  113.       .append(getTaskIDsPatternWOPrefix(jtIdentifier, jobId, isMap, taskId));
  114.     return builder.toString();
  115.   }
  116.   
  117.   @Deprecated
  118.   static StringBuilder getTaskIDsPatternWOPrefix(String jtIdentifier
  119.       , Integer jobId, Boolean isMap, Integer taskId) {
  120.     StringBuilder builder = new StringBuilder();
  121.     builder.append(JobID.getJobIDsPatternWOPrefix(jtIdentifier, jobId))
  122.       .append(SEPARATOR)
  123.       .append(isMap != null ? (isMap ? "m" : "r") : "(m|r)").append(SEPARATOR)
  124.       .append(taskId != null ? idFormat.format(taskId) : "[0-9]*");
  125.     return builder;
  126.   }
  127.   public static TaskID forName(String str
  128.                                ) throws IllegalArgumentException {
  129.     return (TaskID) org.apache.hadoop.mapreduce.TaskID.forName(str);
  130.   }
  131. }