-
I want to get some info from JDL while exceuting the scipt https://github.com/DIRACGrid/DIRAC/blob/integration/src/DIRAC/WorkloadManagementSystem/Client/DownloadInputData.py. I am using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I am not sure I really understand... This file is not a script, but it is a module used by the Now in general, if you want to convert a relative path to an absolute path, use |
Beta Was this translation helpful? Give feedback.
-
I am also not sure I fully understand, but IIUC there's the need for few notions. The DIRAC WMS isn't the easiest of the systems to understand and I think some explanations are needed. The JDL is an old-ish format for representing a job "in the grid" (whatever that means) but in DIRAC is not very important :) |
Beta Was this translation helpful? Give feedback.
I am also not sure I fully understand, but IIUC there's the need for few notions. The DIRAC WMS isn't the easiest of the systems to understand and I think some explanations are needed.
The JDL is an old-ish format for representing a job "in the grid" (whatever that means) but in DIRAC is not very important :)
In DIRAC there's a more powerful way: https://dirac.readthedocs.io/en/latest/AdministratorGuide/Systems/Workflow/index.html
In practice, the "workflow" above has an xml representation and a "jobDescription.xml" file is added in InputSandbox. There are methods to create the JDL starting from the XML. While you can find the XML file in the same directory of the Worker Node of where the…