Hadoop:从DistributedCache中解析文件

时间:2014-02-02 05:11:50

标签: hadoop

使用较新的Hadoop API从DistributedCache读取文件的好方法是什么?我已将文件放在DistributedCache中,并在我的驱动程序代码中包含此行:

DistributedCache.addCacheFile(new URI("c1.txt"), getConf());

我想在Mapper的c1.txt函数中访问setup的内容。

1 个答案:

答案 0 :(得分:0)

显然我可以打开它并在setup()方法中阅读:

FileReader in = new FileReader("c1.txt");

明天我会试试。