Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running a mapreduce job which required around 300mb third-party libraries. In order to avoid the cost of copying libraries to data node when running the job. I wonder if there is a way/tool to that can pre-deploy these libraries to all data nodes before job start.

Thanks in advance.

share|improve this question

1 Answer

You can deploy it to Hadoop's distributed cache. Pere Ferrera Bertran explains this well

share|improve this answer
My question is not clear enough. I actually want to deploy all jar files before the job started. If I use the distributed cache, the time of copying jars is still count in the job run time. – Terminal User Jun 13 '12 at 17:53
If you had had read the link you would have seen that it explains this point- if you use the distributed cache programmatically rather than using -libjars you can control when the files are deleted (Also he provides and additional option of copying the files to $HADOOP_HOME/lib which might work for you) – Arnon Rotem-Gal-Oz Jun 13 '12 at 18:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.