Skip to content
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

Handling AvailableData entries that end up as RemoteData #132

Closed
wants to merge 3 commits into from

Conversation

GeigerJ2
Copy link
Collaborator

@GeigerJ2 GeigerJ2 commented Mar 20, 2025

Problem is that RemoteData behaves like RemoteFolderData. Thus, we cannot specify the path to a file in our Sirocco input YAML files, because otherwise, the CalcInfo object created by aiida-shell contains instructions such as:

image

meaning that the provided filename is assumed to be a directory name, and its contents are copied over/symlinked to the running directory. For initial_conditions, there are no contents, as this is actually a file, thus, nothing is copied over/symlinked to the directory where the dummy ICON task is being run, and the task fails.

Changing the spec in our YAML file from:

         src: /mnt/home/geiger_j/test/sirocco/data/initial_conditions

to

         src: /mnt/home/geiger_j/test/sirocco/data/

Fixes it for now, but is not really a viable long-term solution, as the initial_conditions key in our example:

data:
  available:
     - initial_conditions:

just happens to be the filename we want to symlink, however, it could be anything, as it's just a reference to the cycles section.

Notes

  • Resolve src of script to be run on remote Computer by copying over?
  • Take into account filenames argument for launch_shell_job
  • Set symlink true by default for remote data, rather than copying the files
  • Resolve environment source files -> They should be local and copied over, right? Currently, they are put into _aiidasubmit.sh with the absolute paths on the local machine
  • Input keys in the YAML file, e.g., initial_cond here:
      tasks:
        - icon:
            inputs:
              - initial_cond:
...
data:
  available:
     - initial_cond:
         type: file
         computer: thor

end up literally in the call to the script, e.g.:

'/mnt/home/geiger_j/test/sirocco/icon.py' '--restart' '--init' 'initial_cond'  > 'stdout' 2> 'stderr'

Thus, they must correspond to the actual filenames. Do we want this constraint?

@GeigerJ2 GeigerJ2 changed the base branch from main to ref_workgraph March 20, 2025 12:13
@GeigerJ2
Copy link
Collaborator Author

Should be fixed by sphuber/aiida-shell#109.

@GeigerJ2 GeigerJ2 changed the title WIP: Remote submission Handling AvailableData entries that end up as RemoteData Mar 27, 2025
@leclairm leclairm deleted the branch C2SM:ref_workgraph March 27, 2025 14:20
@leclairm leclairm closed this Mar 27, 2025
@GeigerJ2 GeigerJ2 deleted the remote-data branch March 27, 2025 15:19
@GeigerJ2
Copy link
Collaborator Author

Superseded by #136.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants