hadoop文件读取

nbewdwxp  于 2021-05-30  发布在  Hadoop
关注(0)|答案(1)|浏览(357)

hadoop2.2.0中的hadoop分布式缓存字数示例。将文件复制到hdfs文件系统中,以便在mapper类的安装程序中使用。

protected void setup(Context context) throws IOException,InterruptedException 
{
      Path[] uris = DistributedCache.getLocalCacheFiles(context.getConfiguration());
      cacheData=new HashMap<String, String>();

      for(Path urifile: uris)
      {   
      try
      {

        BufferedReader readBuffer1 = new BufferedReader(new FileReader(urifile.toString()));
        String line;
        while ((line=readBuffer1.readLine())!=null)
        {      System.out.println("**************"+line);
               cacheData.put(line,line);
        }
        readBuffer1.close(); 
        }       
       catch (Exception e)
       {
                  System.out.println(e.toString());
       }
      }

}

内部驱动程序主类

Configuration conf = new Configuration();
    String[] otherArgs = new GenericOptionsParser(conf,args).getRemainingArgs();
    if (otherArgs.length != 3)
    {
      System.err.println("Usage: wordcount <in> <out>");
      System.exit(2);
    }
    Job job = new Job(conf, "word_count");
    job.setJarByClass(WordCount.class);
    job.setMapperClass(Map.class);
    job.setReducerClass(Reduce.class);
    job.setOutputKeyClass(Text.class);
    job.setOutputValueClass(IntWritable.class);
    FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
    Path outputpath=new Path(otherArgs[1]);
    outputpath.getFileSystem(conf).delete(outputpath,true);
    FileOutputFormat.setOutputPath(job,outputpath);
    System.out.println("CachePath****************"+otherArgs[2]);
    DistributedCache.addCacheFile(new URI(otherArgs[2]),job.getConfiguration());
    System.exit(job.waitForCompletion(true) ? 0 : 1);

但有例外
java.io.filenotfoundexception:文件:/home/user12/tmp/mapred/local/1408960542382/cache(没有这样的文件或目录)
所以缓存功能不能正常工作。你知道吗?

x3naxklr

x3naxklr1#

解决了问题。错误地给出了文件位置。现在一切正常。

相关问题