Jianmin Woo wrote: > > Do you have some sample on the re-usage of static variables?
You can define static variables in your Mapper/Reducer class. Static variables will survive till the jvm is live. So multiple tasks of same job running in a single jvm would able to share those. - Sharad