温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

mapreduce怎么获得文件的路径

发布时间:2021-12-16 16:17:15 来源:亿速云 阅读:102 作者:小新 栏目:云计算

这篇文章主要介绍mapreduce怎么获得文件的路径,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

通常的做法是通过inputSplit来获得,如下:

 InputSplit split = context.getInputSplit();

但是,如果使用MultipleInputs的话,则需要进行转化,将TaggedInputSplit转成InputSplit,如下:

        InputSplit split = context.getInputSplit();
        Class<? extends InputSplit> splitClass = split.getClass();

        FileSplit fileSplit = null;
        if (splitClass.equals(FileSplit.class)) {
            fileSplit = (FileSplit) split;
        } else if (splitClass.getName().equals("org.apache.hadoop.mapreduce.lib.input.TaggedInputSplit")) {
            try {
                Method getInputSplitMethod = splitClass.getDeclaredMethod("getInputSplit");
                getInputSplitMethod.setAccessible(true);
                fileSplit = (FileSplit) getInputSplitMethod.invoke(split);
            } catch (Exception e) {
                throw new IOException(e);
            }
        }

但是,进一步说,如果使用了CombineTextInputFormat的话,那么上述的代码仍然会报错,org.apache.hadoop.mapreduce.lib.input.CombineFileSplit cannot be cast to org.apache.hadoop.mapreduce.lib.input.FileSplit。并且CombineFileSplit内部也没有提供返回正在处理的InputSplit,虽然本身是多个InputSplit的组合。

有一个简单的办法,通过String filename = context.getConfiguration().get("map.input.file");便可以直接获得文件的全部路径。

以上是“mapreduce怎么获得文件的路径”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI