Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[geclipse-dev] Transferring local input files during job submission - changes in jdl

Hello Jdl Experts!

As input for job, user may specify file from his local machine.
All local files have to be sent to grid during job submission. Now I'm developing this functionality.

I'm not sure, how to change jdl after sending local input files to Worker Node.

For example let's say user specified jsdl, which was converted to following jdl:
...
StdInput = "stdIn";

InputSandbox = { "file:/c:/temp/input001.txt", "file:/c:/temp/data.txt", "gridftp://se1.egee.man.poznan.pl:2811/dpm/egee.man.poznan.pl/home/geclipse/mariusz/file.txt"; };

InputSandboxDestFileName = { "stdIn", "data.txt", "file.txt" };
....


Using above jdl I will send local files input001.txt and data.txt to Worker Node and give them names: stdIn, data.txt


After sending local files, I will remove all entries about local files from jdl:
...
StdInput = "stdIn";

InputSandbox = { "gridftp://se1.egee.man.poznan.pl:2811/dpm/egee.man.poznan.pl/home/geclipse/mariusz/file.txt"; };

InputSandboxDestFileName = { "file.txt" };
...

Is it correct?
Or should I put some entries about transfered local files to jdl?


Regards,
--
Mariusz Wojtysiak


Back to the top