-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Execution of global section of task can fail on remote host #1155
Comments
This only fixes part of the problem. as stated here, the global section can fail if it is executed on the remote host. For example
You load the gene list from a local file, submit the task to a remote host where
because parameters are passed instead of processed in this case. A real solution might be separating the parts that cannot be executed remotely:
|
The problem with the patch 0a0e7bd is that when all parameters are passed as dependencies to every step, change of parameters in global section will cause all steps to be re-executed. Something more clever has to be done. |
Should we explicitly require the global section to be executable on remote host? If the section reads a file, the user should be responsible for making sure the file is available... I think this is the cleanest solution. |
I'm not sure if I understand this ... is there a way to only execute global section once, have it pickled somewhere (and keep them in sync), and for each steps that follows we load this pickled object? Or is this less efficient than the current implementaiton? |
and to clarify, executing global section happens at every step, not every substep, right? |
No. Things like import time cannot be pickled around. I meant if you have a local file and read it from the global section, you will have to transfer the file to remote server if you execute any task there. |
I see, right we discussed |
The scenario was like getting a large number of loci and dispatch individual locus to tasks, so asking each task to read the file and get all the loci does not make much sense. This is why I simply ignored errors for failed execution of global section on remote host. |
For sanity reasons I think we should require global section to be correctly executed on master, but we will need to provide a way to ignore some statements.
will serve the purpose but I am not sure we should advertise it. |
The global section will no longer be executed on remote host... |
is ok, but
fails because parameters are not handled in tasks and should have been passed. However, SoS checks the content of step
default
and does not seeparameter
is needed....The text was updated successfully, but these errors were encountered: