Created 09-09-2016 04:58 PM
I want to submit a job to Yarn, which has dependencies to third party libraries. Map reduce jobs fail as they can't load these third party libraries on remote Hadoop nodes. Can I use Yarn in someway, to submit a whole package (including 3rd party libs), so MR jobs can successfully load them?
Created 09-09-2016 05:01 PM
did you try packaging all the 3rd party jars into uber jar and submit to cluster.
Created 09-09-2016 05:01 PM
did you try packaging all the 3rd party jars into uber jar and submit to cluster.
Created 09-09-2016 05:14 PM
you can leverage DistributedCache to upload your third party jars to HDFS https://hadoop.apache.org/docs/r2.7.2/api/org/apache/hadoop/filecache/DistributedCache.html for MapReduce