On Fri, Jun 11, 2010 at 5:05 AM, Torsten Curdt <[email protected]> wrote: > I am setting some custom values on my job configuration: > > Configuration conf = new Configuration(); > > conf.set("job.time.from", time_from); > conf.set("job.time.until", time_until); > > Cluster cluster = new Cluster(conf);
Do: Job job = new Job(conf); and it will work. -- Owen
