Jeff Hammerbacher wrote:
So a common use case for the Distributed Cache would be to store a lookup table for use during a map task, perhaps?
Yes. It is used internally to cache the job's jar file on nodes where map and reduce tasks are run, and should be suitable for other data files that might be useful to cache for multiple jobs.
Doug