将不同的参数传递给每个映射器

时间:2015-01-20 22:27:19

标签: java hadoop

我的工作使用多个映射器和一个减速器。映射器几乎相同,只是它们用于产生结果的String的值不同。

目前我有几个类,我提到的String的每个值都有一个 - 感觉应该有更好的方法,不需要这么多的代码重复。有没有办法将这些String值作为参数传递给映射器?

我的工作看起来像这样:

Input File A  ---->  Mapper A using
                       String "Foo"  ----+
                                         |--->  Reducer
                     Mapper B using  ----+
Input File B  ---->    String "Bar" 

我想把它变成这样的东西:

Input File A  ---->  GenericMapper parameterized
                               with String "Foo" ----+
                                                     |--->  Reducer
                     GenericMapper parameterized ----+ 
Input File B  ---->            with String "Bar"

编辑:这是我目前拥有的两个简化的映射器类。它们准确地代表了我的实际情况。

class MapperA extends Mapper<Text, Text, Text, Text> {
    public void map(Text key, Text value, Context context) {
        context.write(key, new Text(value.toString() + "Foo"));
    }
}

class MapperB extends Mapper<Text, Text, Text, Text> {
    public void map(Text key, Text value, Context context) {
        context.write(key, new Text(value.toString() + "Bar"));
    }
}

编辑:每个映射器应使用的字符串仅取决于数据来自哪个文件。除文件名外,无法区分文件。

3 个答案:

答案 0 :(得分:4)

假设您使用文件输入格式,您可以在映射器中获取当前输入文件名,如下所示:

if (context.getInputSplit() instanceof FileSplit) {
    FileSplit fileSplit = (FileSplit) context.getInputSplit();
    Path inputPath = fileSplit.getPath();
    String fileId = ... //parse inputPath into a file id
    ...
}

您可以根据需要解析inputPath,例如仅使用文件名或仅使用分区ID等来生成标识输入文件的唯一ID。 例如:

/some/path/A -> A
/some/path/B -> B

为每个可能的文件配置属性&#34; id&#34;在你的司机:

conf.set("my.property.A", "foo");
conf.set("my.property.B", "bar"); 

在映射器计算文件&#34; id&#34;如上所述并获得价值:

conf.get("my.property." + fileId);

答案 1 :(得分:0)

也许你会在mapper中使用if语句在字符串之间进行选择。什么取决于使用一个或另一个字符串?

或者也许使用Abstract Mapper类。

答案 2 :(得分:0)

也许是这样的?

abstract class AbstractMapper extends Mapper<Text, Text, Text, Text> {
    protected String text;
    public void map(Text key, Text value, Context context) {
        context.write(key, new Text(value.toString() + text));
    }
}
class MapperImpl1 extends AbstractMapper{
    @Override
    public void map(Text key, Text value, Context context) {
        text = "foo";
        super.map();
    }
}
class MapperImpl2 extends AbstractMapper{
        @Override
        public void map(Text key, Text value, Context context) {
            text = "bar";
            super.map();
        }
    }