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 に答える