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);
Job job = Job.getInstance(cluster);
In the InputFormat I get a difference instance of "Configuration" and
all my custom values are gone.
What's going on?
cheers
--
Torsten
