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

网格计算

开发平台:

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.DataOutput;
  21. import java.io.IOException;
  22. import java.util.HashSet;
  23. import java.util.Map;
  24. import java.util.HashMap;
  25. import java.util.Set;
  26. import org.apache.hadoop.conf.Configurable;
  27. import org.apache.hadoop.conf.Configuration;
  28. import org.apache.hadoop.io.Writable;
  29. import org.apache.hadoop.io.WritableUtils;
  30. /**
  31.  * The response sent by the {@link JobTracker} to the hearbeat sent
  32.  * periodically by the {@link TaskTracker}
  33.  * 
  34.  */
  35. class HeartbeatResponse implements Writable, Configurable {
  36.   Configuration conf = null;
  37.   short responseId;
  38.   int heartbeatInterval;
  39.   TaskTrackerAction[] actions;
  40.   Set<JobID> recoveredJobs = new HashSet<JobID>();
  41.   HeartbeatResponse() {}
  42.   
  43.   HeartbeatResponse(short responseId, TaskTrackerAction[] actions) {
  44.     this.responseId = responseId;
  45.     this.actions = actions;
  46.     this.heartbeatInterval = MRConstants.HEARTBEAT_INTERVAL_MIN;
  47.   }
  48.   
  49.   public void setResponseId(short responseId) {
  50.     this.responseId = responseId; 
  51.   }
  52.   
  53.   public short getResponseId() {
  54.     return responseId;
  55.   }
  56.   
  57.   public void setRecoveredJobs(Set<JobID> ids) {
  58.     recoveredJobs = ids; 
  59.   }
  60.   
  61.   public Set<JobID> getRecoveredJobs() {
  62.     return recoveredJobs;
  63.   }
  64.   
  65.   public void setActions(TaskTrackerAction[] actions) {
  66.     this.actions = actions;
  67.   }
  68.   
  69.   public TaskTrackerAction[] getActions() {
  70.     return actions;
  71.   }
  72.   
  73.   public void setConf(Configuration conf) {
  74.     this.conf = conf;
  75.   }
  76.   public Configuration getConf() {
  77.     return conf;
  78.   }
  79.   public void setHeartbeatInterval(int interval) {
  80.     this.heartbeatInterval = interval;
  81.   }
  82.   
  83.   public int getHeartbeatInterval() {
  84.     return heartbeatInterval;
  85.   }
  86.   
  87.   public void write(DataOutput out) throws IOException {
  88.     out.writeShort(responseId);
  89.     out.writeInt(heartbeatInterval);
  90.     if (actions == null) {
  91.       WritableUtils.writeVInt(out, 0);
  92.     } else {
  93.       WritableUtils.writeVInt(out, actions.length);
  94.       for (TaskTrackerAction action : actions) {
  95.         WritableUtils.writeEnum(out, action.getActionId());
  96.         action.write(out);
  97.       }
  98.     }
  99.     // Write the job ids of the jobs that were recovered
  100.     out.writeInt(recoveredJobs.size());
  101.     for (JobID id : recoveredJobs) {
  102.       id.write(out);
  103.     }
  104.   }
  105.   
  106.   public void readFields(DataInput in) throws IOException {
  107.     this.responseId = in.readShort();
  108.     this.heartbeatInterval = in.readInt();
  109.     int length = WritableUtils.readVInt(in);
  110.     if (length > 0) {
  111.       actions = new TaskTrackerAction[length];
  112.       for (int i=0; i < length; ++i) {
  113.         TaskTrackerAction.ActionType actionType = 
  114.           WritableUtils.readEnum(in, TaskTrackerAction.ActionType.class);
  115.         actions[i] = TaskTrackerAction.createAction(actionType);
  116.         actions[i].readFields(in);
  117.       }
  118.     } else {
  119.       actions = null;
  120.     }
  121.     // Read the job ids of the jobs that were recovered
  122.     int size = in.readInt();
  123.     for (int i = 0; i < size; ++i) {
  124.       JobID id = new JobID();
  125.       id.readFields(in);
  126.       recoveredJobs.add(id);
  127.     }
  128.   }
  129. }