TestRecordWritable.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.record;
  19. import java.io.*;
  20. import java.util.*;
  21. import junit.framework.TestCase;
  22. import org.apache.hadoop.fs.*;
  23. import org.apache.hadoop.io.*;
  24. import org.apache.hadoop.conf.*;
  25. import org.apache.commons.logging.*;
  26. import org.apache.hadoop.mapred.InputSplit;
  27. import org.apache.hadoop.mapred.InputFormat;
  28. import org.apache.hadoop.mapred.FileInputFormat;
  29. import org.apache.hadoop.mapred.JobConf;
  30. import org.apache.hadoop.mapred.RecordReader;
  31. import org.apache.hadoop.mapred.Reporter;
  32. import org.apache.hadoop.mapred.SequenceFileInputFormat;
  33. public class TestRecordWritable extends TestCase {
  34.   private static final Log LOG = FileInputFormat.LOG;
  35.   private static int MAX_LENGTH = 10000;
  36.   private static Configuration conf = new Configuration();
  37.   public void testFormat() throws Exception {
  38.     JobConf job = new JobConf(conf);
  39.     FileSystem fs = FileSystem.getLocal(conf);
  40.     Path dir = new Path(System.getProperty("test.build.data",".") + "/mapred");
  41.     Path file = new Path(dir, "test.seq");
  42.     
  43.     int seed = new Random().nextInt();
  44.     //LOG.info("seed = "+seed);
  45.     Random random = new Random(seed);
  46.     fs.delete(dir, true);
  47.     FileInputFormat.setInputPaths(job, dir);
  48.     // for a variety of lengths
  49.     for (int length = 0; length < MAX_LENGTH;
  50.          length+= random.nextInt(MAX_LENGTH/10)+1) {
  51.       // create a file with length entries
  52.       SequenceFile.Writer writer =
  53.         new SequenceFile.Writer(fs, conf, file,
  54.                                 RecInt.class, RecBuffer.class);
  55.       try {
  56.         for (int i = 0; i < length; i++) {
  57.           RecInt key = new RecInt();
  58.           key.setData(i);
  59.           byte[] data = new byte[random.nextInt(10)];
  60.           random.nextBytes(data);
  61.           RecBuffer value = new RecBuffer();
  62.           value.setData(new Buffer(data));
  63.           writer.append(key, value);
  64.         }
  65.       } finally {
  66.         writer.close();
  67.       }
  68.       // try splitting the file in a variety of sizes
  69.       InputFormat<RecInt, RecBuffer> format =
  70.         new SequenceFileInputFormat<RecInt, RecBuffer>();
  71.       RecInt key = new RecInt();
  72.       RecBuffer value = new RecBuffer();
  73.       for (int i = 0; i < 3; i++) {
  74.         int numSplits =
  75.           random.nextInt(MAX_LENGTH/(SequenceFile.SYNC_INTERVAL/20))+1;
  76.         InputSplit[] splits = format.getSplits(job, numSplits);
  77.         // check each split
  78.         BitSet bits = new BitSet(length);
  79.         for (int j = 0; j < splits.length; j++) {
  80.           RecordReader<RecInt, RecBuffer> reader =
  81.             format.getRecordReader(splits[j], job, Reporter.NULL);
  82.           try {
  83.             int count = 0;
  84.             while (reader.next(key, value)) {
  85.               assertFalse("Key in multiple partitions.", bits.get(key.getData()));
  86.               bits.set(key.getData());
  87.               count++;
  88.             }
  89.           } finally {
  90.             reader.close();
  91.           }
  92.         }
  93.         assertEquals("Some keys in no partition.", length, bits.cardinality());
  94.       }
  95.     }
  96.   }
  97.   public static void main(String[] args) throws Exception {
  98.     new TestRecordWritable().testFormat();
  99.   }
  100. }