Hi, one simple question:
In BSPJobClient.java, method submitJobInternal() we have:
Path submitJobDir = new Path(getSystemDir(), jobId.toString());
Path submitJarFile = new Path(submitJobDir, "job.jar");
Path submitJobFile = new Path(submitJobDir, "job.xml");
getSystemDir() will call BSPMaster.getSystemDir() which reads the
config property "bsp.system.dir".
However, in the constructor of JobInProgress.java we have:
this.localJobFile = master.getLocalPath(BSPMaster.SUBDIR + "/" + jobId
+ ".xml");
this.localJarFile = master.getLocalPath(BSPMaster.SUBDIR + "/" + jobId
+ ".jar");
and getLocalPath() (BSPMaster class) will read the config property
"bsp.local.dir"
So, aren't we supposed to use the same paths in both places for the
job files? (either local or system dir, but not both)
cheers
--
Filipe David Manana,
[email protected], [email protected]
"Reasonable men adapt themselves to the world.
Unreasonable men adapt the world to themselves.
That's why all progress depends on unreasonable men."