使用较新的Hadoop API从DistributedCache
读取文件的好方法是什么?我已将文件放在DistributedCache
中,并在我的驱动程序代码中包含此行:
DistributedCache.addCacheFile(new URI("c1.txt"), getConf());
我想在Mapper的c1.txt
函数中访问setup
的内容。
答案 0 :(得分:0)
显然我可以打开它并在setup()
方法中阅读:
FileReader in = new FileReader("c1.txt");
明天我会试试。