Here's the step by step that I used to have a running workflow.
- Synced
masterbranch - Re-installed dependencies in venv,
pip install -U -e . - Removed old files,
rm -rf ~/.autosubmit*andrm -rf ~/autosubmit - Configured and installed Autosubmit,
autosubmit configure, followed byautosubmit install - Created a new dummy experiment with
autosubmit expid -H local --dummy -d DummyExp - Updated my experiment's platform file
# File: /home/kinow/autosubmit/a000/conf/platforms_a000.conf
[local]
TYPE = PS
HOST = localhost
PROJECT = local
USER = root
SCRATCH_DIR = /tmp
- Started a Docker container with SSH (didn't want to install OpenSSH),
sudo docker run -d -P --name test_sshd -p22:22 rastasheep/ubuntu-sshd:14.04and copied my SSH pub ID there withssh-copy-id root@localhost(pass isroot) - Ran the experiment
autosubmit run a000 - Then monitored it,
autosubmit monitor a000
- Changed the chunk size in the experiment definition file
# File: /home/kinow/autosubmit/a000/conf/expdef_a000.conf
#...
NUMCHUNKS = 2
#...
- Ran again, and monitored it again


The plot appears to have some issue with how it is displaying the members and chunks 😕