I get the following error for my test run:
ERROR: sbatch: error: Batch job submission failed: Invalid account or account/partition combination specified
I think I have found out what is causing this error but can’t work out why it is happening.
I am running a copy of suite u-ds632 (belonging to eemvpg) suite on JASMIN (my suite is u-dx182).
When I compare the two suites we have the same rose-suite.conf settings within the roses directory. These are:
JASMIN_MPI_NUM_TASKS=30
JASMIN_RUN_QUEUE=‘par-multi’
JASMIN_WALLTIME_RUN=‘15:00:00’
The settings are available to compare in /home/users/eempvg/roses/u-ds632/rose-suite.conf and /home/users/earagr/roses/u-dx182/rose-suite.conf.
However, in the test run for my run (u-dx182) the job file within the run directory inherits different settings for these variables. (head -100 /home/users/earagr/cylc-run/u-dx182/run1/log/job/20010101T0000Z/spinup_01/NN/job). in this file they are set to:
#SBATCH --qos=high
#SBATCH --partition=standard
#SBATCH --time=15:00:00
#SBATCH --ntasks=30
**#SBATCH --mem=40000
#SBATCH --nodes=1
**
This does not happen for the same test run in the u-ds632 run directory (head -100 /home/users/eempvg/cylc-run/u-ds632/run1/log/job/20010101T0000Z/spinup_01/03/job):
JASMIN_MPI_NUM_TASKS=30
JASMIN_RUN_QUEUE=‘par-multi’
JASMIN_WALLTIME_RUN=‘15:00:00’
My run seems to inheriting these settings from the /home/users/earagr/roses/u-dx182/location/JASMIN/suite.rc:
\[\[jules\]\]
inherit = None, JASMIN_LOTUS
\[\[\[job\]\]\]
batch system = slurm
\[\[\[directives\]\]\]
**--account = jules**
**--qos = high**
**--partition = standard**
**#--partition = {{ JASMIN_RUN_QUEUE }}**
**--time = {{ JASMIN_WALLTIME_RUN }}**
**--ntasks = {{ JASMIN_MPI_NUM_TASKS }}**
**--mem = 40000**
**--nodes = 1**
\[\[\[remote\]\]\]
retrieve job logs max size = 10M
\[\[\[environment\]\]\]
ROSE_LAUNCHER = mpirun
MPI_NUM_TASKS = {{ JASMIN_MPI_NUM_TASKS }}
ANCIL_BASE_PWD = {{ JASMIN_ANCIL_PATH }}/{{ MIPID|lower }}/jules_ancils/
DRIVE_BASE_PWD = {{ JASMIN_DRIVE_PATH }}/{{ MIPID|lower }}
OUTPUT_BASE = {{ JASMIN_OUTPUT_BASE }}/$ROSE_SUITE_NAME
{% if L_SPINUP_GENERIC %}
{% if INITIALSE_FROM_NON_DUMP_FILE_SPINUP_GENERIC %}
INITIAL_NON_DUMP_FILE = {{ JASMIN_INITIAL_NON_DUMP_FILE }}
{% else %}
INITIAL_DUMP_FOR_SPINUP_GENERIC = {{ JASMIN_INITIAL_DUMP_FOR_SPINUP_GENERIC }}
{% endif %}
{% endif %}
{% if L_SPINUP_2NDSPIN and not L_SPINUP_GENERIC %}
{% if START_WITH_2NDSPIN %}
INITIAL_DUMP_FOR_SPINUP_2NDSPIN = {{ JASMIN_INITIAL_DUMP_FOR_SPINUP_2NDSPIN }}
{% endif %}
{% endif %}
I am not sure why this is happening for me (u-dx182) and not for the original suite (u-ds632). Or how I might fix this issue. Any help or suggestions you can provide would be really helpful.
Thanks,
Ailish