-
Notifications
You must be signed in to change notification settings - Fork 45
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
Requiring shared directory for remote execution of tasks #1535
Comments
Agreed, considering most of our user cases so far are the simpler case of completely local or remote. |
One problem with this approach is that the $HOME directory on different systems can be different (although there can be shared mounts). It is then necessary to allow the specification of For backward compatibility, let us keep tasks to home directory. In this way, We need to
|
Done, with a new version of sos released. #1536 |
Currently the sos task execution system is complicated because it needs to copy files around if files reside on directories that are not shared by the job submission machine and the head node. A lot of work, such as signature checking, directory mapping, and file synchronization has been done to enable a powerful, yet complicated and confusing system that can easily break.
I propose that we remove all the file mapping feature and require file systems to be shared. In this way input and output files have to exist on both local and remote file systems, and there is no need to map directories and copy files around. The system will be much easier to understand, configure, and a lot more robust.
The text was updated successfully, but these errors were encountered: