Re: Best way to pass project resources in Java MR

2015-12-16 Thread Ashwanth Kumar
Map/Reduce task JVM has your JAR in the classpath. Did you try "MapperClass.class.getResource("/myfile_in_jar")" ? On Wed, Dec 16, 2015 at 8:48 PM, praveenesh kumar wrote: > Hello folks > > Basic Java MR question. > > What is the right practice to pass any program

Best way to pass project resources in Java MR

2015-12-16 Thread praveenesh kumar
Hello folks Basic Java MR question. What is the right practice to pass any program specific files (sitting in src/main/resources) in your project folder to your mapper. I tried the following and it didn't work 1. Inside mapper setup() ->