gpt4 book ai didi

java - Map ->Reduce ->Reduce(顺序调用两个reducer)-如何配置驱动程序

转载 作者:行者123 更新时间:2023-12-02 08:54:19 30 4
gpt4 key购买 nike

我需要编写一个连续调用两个reducer的Mapreduce程序。即,第一个 reducer 的输出将是第二个 reducer 的输入。我如何实现这一目标?

到目前为止我发现的内容表明我需要在我的驱动程序代码中配置两个映射缩减作业(代码如下)。
这看起来很浪费,有两个原因 -

  1. 我的第二份工作并不真正需要映射器
  2. 拥有两份工作看起来有点过分了。

是否有更好的方法来实现这一目标?

另外,关于以下方法的问题:Job1 的输出将是 OUTPUT_PATH 目录中的多个文件。这个目录作为Job2的输入传入,这样可以吗?它不必是一个文件吗? Job2会处理给定目录下的所有文件吗?

Configuration conf = getConf();
FileSystem fs = FileSystem.get(conf);
Job job = new Job(conf, "Job1");
job.setJarByClass(ChainJobs.class);

job.setMapperClass(MyMapper1.class);
job.setReducerClass(MyReducer1.class);

job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);

job.setInputFormatClass(TextInputFormat.class);
job.setOutputFormatClass(TextOutputFormat.class);

TextInputFormat.addInputPath(job, new Path(args[0]));
TextOutputFormat.setOutputPath(job, new Path(OUTPUT_PATH));

job.waitForCompletion(true); /*this goes to next command after this job is completed. your second job is dependent on your first job.*/


/*
* Job 2
*/
Configuration conf2 = getConf();
Job job2 = new Job(conf2, "Job 2");
job2.setJarByClass(ChainJobs.class);

job2.setMapperClass(MyMapper2.class);
job2.setReducerClass(MyReducer2.class);

job2.setOutputKeyClass(Text.class);
job2.setOutputValueClass(Text.class);

job2.setInputFormatClass(TextInputFormat.class);
job2.setOutputFormatClass(TextOutputFormat.class);

TextInputFormat.addInputPath(job2, new Path(OUTPUT_PATH));
TextOutputFormat.setOutputPath(job2, new Path(args[1]));

return job2.waitForCompletion(true) ? 0 : 1;

最佳答案

dont really need a maper in second job

框架确实如此

having two jobs looks like an overkill... Is there a better way to achieve this?

那就不要使用 MapReduce...Spark,例如可能会更快并且代码更少

Will Job2 process all files under the given directory?

是的

关于java - Map ->Reduce ->Reduce(顺序调用两个reducer)-如何配置驱动程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60581691/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com