和有什么区别
ChainMapper.addMapper(conf, UpperCaserMapper.class, Text.class, IntWritable.class, Text.class, IntWritable.class, true, mapBConf);
和
ChainReducer.addMapper(conf, LastMapper.class, Text.class, IntWritable.class, Text.class, IntWritable.class, true, mapCConf);
什么时候用一个。
我也无法理解第七个论点的含义。第 7 个参数 --> 指示键/值是否应按值传递给链中的下一个 Mapper(如果有)。我知道如果设置为 true,则必须传递键/值。将值设置为 false 的用例可能是什么。这是什么意思?