zoukankan      html  css  js  c++  java
  • MapReduce单元测试

    MapReduce进行单元测试的步骤:

    1. 在POM中添加MRUnit

    <dependency>
                <groupId>org.apache.mrunit</groupId>
                <artifactId>mrunit</artifactId>
                <version>1.1.0</version>
                <classifier>hadoop2</classifier>
                <scope>test</scope>
     </dependency>

    2. Mapper测试用例

        @Test
        public void testCountMapper() throws IOException {
            LongWritable key = new LongWritable(0);
            Text value = new Text("hadoop yarn");
            new MapDriver<LongWritable,Text,Text,IntWritable>()
                    .withMapper(new WordCountMapper())
                    .withInput(key,value)
                    .withOutput(new Text("hadoop"),new IntWritable(1))
                    .withOutput(new Text("yarn"),new IntWritable(1))
                    .runTest();
        }

     3. Reducer测试用例

        @Test
        public void testCountReducer() throws IOException {
            new ReduceDriver<Text,IntWritable,Text,IntWritable>()
                    .withReducer(new WordCountReducer())
                    .withInput(new Text("hadoop"), Arrays.asList(new IntWritable(1),new IntWritable(1)))
                    .withOutput(new Text("hadoop"),new IntWritable(2))
                    .runTest();
        }
  • 相关阅读:
    prayer OJ M
    51nod1295
    纪念第一次ak。。。
    noip2007-4
    51nod1344
    51nod1079
    51nod1537
    51nod1269Devu and Flowers
    python基本数据类型之列表list
    Python基本数据类型
  • 原文地址:https://www.cnblogs.com/xdlaoliu/p/7235675.html
Copyright © 2011-2022 走看看