source: proiecte/HadoopJUnit/hadoop-0.20.1/src/test/testjar/ClassWordCount.java @ 141

Last change on this file since 141 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 2.1 KB
Line 
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
19package testjar;
20
21import java.io.*;
22import java.util.*;
23
24import org.apache.hadoop.fs.Path;
25import org.apache.hadoop.io.IntWritable;
26import org.apache.hadoop.io.LongWritable;
27import org.apache.hadoop.io.Text;
28import org.apache.hadoop.io.Writable;
29import org.apache.hadoop.io.WritableComparable;
30import org.apache.hadoop.mapred.JobClient;
31import org.apache.hadoop.mapred.JobConf;
32import org.apache.hadoop.mapred.Mapper;
33import org.apache.hadoop.mapred.OutputCollector;
34import org.apache.hadoop.mapred.Reducer;
35import org.apache.hadoop.mapred.Reporter;
36import org.apache.hadoop.mapred.MapReduceBase;
37import org.apache.hadoop.mapred.WordCount;
38
39/**
40 * This is an example Hadoop Map/Reduce application being used for
41 * TestMiniMRClasspath. Uses the WordCount examples in hadoop.
42 */
43public class ClassWordCount {
44 
45  /**
46   * Counts the words in each line.
47   * For each line of input, break the line into words and emit them as
48   * (<b>word</b>, <b>1</b>).
49   */
50  public static class MapClass extends WordCount.MapClass
51    implements Mapper<LongWritable, Text, Text, IntWritable> {
52  }
53 
54  /**
55   * A reducer class that just emits the sum of the input values.
56   */
57  public static class Reduce extends WordCount.Reduce
58    implements Reducer<Text, IntWritable, Text, IntWritable> {
59  }
60}
Note: See TracBrowser for help on using the repository browser.