Yes, as an additional info, you can use this code just to start the job, not wait until it's finished:
JobClient client = new JobClient(conf); client.runJob(conf); 2009/4/1 javateck javateck <[email protected]> > you can run from java program: > > JobConf conf = new JobConf(MapReduceWork.class); > > // setting your params > > JobClient.runJob(conf); > >
