I have written a map-reduce application that consists of two map-reduce phases.
binary input file -> m1-> r1 -> m2 -> r2 -> text output
The input file to my application contains a small chunk of data (<1k) that is needed by the second reducer (r2). I have written a custom record reader that extracts this data, but then how do I pass this along to the next job? It seems like this is a job for DistributedCache, but it appears that DistributedCache cache files are scoped to a single job's scratch space. What is the best way to share small data between different jobs in the same chain?