I have a static object in my map reduce job class that I want to initialize once (in the main method), then call a function on it in every mapping. So I have this object, MyObject that I declare as a variable:
static MyObject obj;
And in my main function, before I start the job I call:
obj = new MyObject();
obj.init();
And then in my map function I want to call:
obj.execute();
But for some reason I get a null pointer exception when I try this (it says obj is null). If I initialize it in my main function, shouldn't the mapper see it as initialized? Does the mapper see static variables?