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

网格计算

开发平台:

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.IOException;
  20. /**
  21.  * Expert: Generic interface for {@link Mapper}s.
  22.  * 
  23.  * <p>Custom implementations of <code>MapRunnable</code> can exert greater 
  24.  * control on map processing e.g. multi-threaded, asynchronous mappers etc.</p>
  25.  * 
  26.  * @see Mapper
  27.  * @deprecated Use {@link org.apache.hadoop.mapreduce.Mapper} instead.
  28.  */
  29. @Deprecated
  30. public interface MapRunnable<K1, V1, K2, V2>
  31.     extends JobConfigurable {
  32.   
  33.   /** 
  34.    * Start mapping input <tt>&lt;key, value&gt;</tt> pairs.
  35.    *  
  36.    * <p>Mapping of input records to output records is complete when this method 
  37.    * returns.</p>
  38.    * 
  39.    * @param input the {@link RecordReader} to read the input records.
  40.    * @param output the {@link OutputCollector} to collect the outputrecords.
  41.    * @param reporter {@link Reporter} to report progress, status-updates etc.
  42.    * @throws IOException
  43.    */
  44.   void run(RecordReader<K1, V1> input, OutputCollector<K2, V2> output,
  45.            Reporter reporter)
  46.     throws IOException;
  47. }