0

我正在使用 RHipe 将目录发送到我的 mapreduce 作业中。有没有办法让 Mapper 中正在处理的当前文件?我想将其输出为我的密钥。谢谢!

map <- expression({
   fileName <- "testing123" // ?????
     .....
    rhcollect(fileName, value)
})

z <- rhmr(map=map,reduce=NULL, inout=c("text", "text")
      ,ifolder=directoryName
      ,ofolder=outDirectory)
4

1 回答 1

0

文件名 <- Sys.getenv("mapred.input.file")

是解决方案

于 2013-02-21T23:23:07.733 回答