我有很多文件存储在分布式缓存中,每个文件对应一个用户 ID。我想将与特定用户 id 对应的特定文件(这将是 reducer 的键)附加到特定的 reduce 任务。但我不能这样做,因为我使用 configure 方法从分布式缓存中读取文件,该方法位于 reduce 类中的 reduce 方法之前。所以我不能在reduce类的configure方法中访问reduce方法的键,因此不能只读取我想要的文件。请帮助我。
class reduce{
void configure(args)
{
/*I can a particular file from the Path[] here.
I want to select the file corresponding to the key of the reduce method and pass its
contents to the reduce method. I am not able to do this as I can't access the key of
the reduce method.*/
}
void reduce(args)
{
}
}