Hi I created a chained mapreduce program where each job creates a SequenceFile output. My stopping condition is simply to check if the last output file (Type - SequenceFile) is empty. In order to do that i need to use the SequenceFile.Reader and for him to read the data i need the path of the output file. The problem is that i don't know the name of the file, it usually depends on the number of the reducer. What can i do to solve this?
Thanks.