Is there a way to initialize Mapper classes based on some args passed through the command line ? Ideally I would like to do conf.setMapperClass( Mapper.class ) which I am assuming ultimately creates an instance of this class by invoking the default ctor ? But is it possible to initialize some member variables in the Mapper class ?
Thanks A
