Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

porting I run ./create_test ERS.f19_g17.A ERROR

Sreerag

Sreerag
Member
As a part of porting I run ./create_test ERS.f19_g17.A which gave a error ERROR: No result from jobs [('case.test', None)], Even though the model is running Do anyone experience this error. Can anyone help regarding this. Thanks in advance

Case dir: /data/sreerag/scratch/ERS.f19_g17.A.albert_gnu.20230515_183335_qkwbf4
Errors were:
submit_jobs case.test
Submit job case.test
Running test for ERS
check for resubmit
dout_s False
mach albert
resubmit_num 0
check for resubmit
dout_s False
mach albert
resubmit_num 0
ERROR: No result from jobs [('case.test', None)]
 

slevis

Moderator
Staff member
Dear @Sreerag,

I searched the forums for "no result from jobs" and found several relevant discussions. This one may be the most helpful, though I recommend looking at all of them:
 

erik

Erik Kluzek
CSEG and Liaisons
Staff member
@Sreerag this error means that the job ID that case.submit is getting from submission is 0, which would usually mean something went wrong with the batch submission. If the batch submission actually went OK, that would mean there is something wrong in the batch setup for your system. I would look at your batch config files and make sure they are setup correctly. And also look at the command that gets executed when you submit case.submit and make sure it makes sense. You can also use the preview_run script to see what the submission will look like and make sure it's correct. You might need to work with the system admins on your system to help you get all of the batch commands setup correctly for your system.
 

Sreerag

Sreerag
Member
Dear @slevis & @erik

Really thankful for your help and you are suggestion finds really valuable.
For my case, I am having the batch system in config_machine as "none".(I am not using batch submit).
My preview run looks like:

CASE INFO:
nodes: 1
total tasks: 4
tasks per node: 4
thread count: 1

BATCH INFO:
FOR JOB: case.test
ENV:
Setting Environment NETCDF_C_PATH=/data/sreerag/software/netcdf/lib
Setting Environment NETCDF_FORTRAN_PATH=/data/sreerag/software/netcdf/lib
Setting Environment OMP_NUM_THREADS=1

SUBMIT CMD:
None

MPIRUN (job=case.test):
mpirun -np 4 -prepend-rank /data/sreerag/scratch/ERS.f19_g17.A.albert_gnu.20230515_183335_qkwbf4/bld/cesm.exe >> cesm.log.$LID 2>&1


My config_batch file for "none" look like:

<batch_system type="none" >
<batch_query args=""></batch_query>
<batch_submit></batch_submit>
<batch_redirect></batch_redirect>
<batch_directive></batch_directive>
<directives>
<directive></directive>
</directives>
</batch_system>


Can I ignore this error? Thanks in advance
 

erik

Erik Kluzek
CSEG and Liaisons
Staff member
Ahhh, yes that's likely why it's throwing an error because you aren't running in batch. So it wouldn't have a job ID to return so it fails. If the simulation is running as you need, you should ignore the error then. We likely don't have a batch==None system that we test with. That probably also means you'll need to run the "st_archive" step by hand after the model simulation finishes. Everything you have above looks right to me.
 

Sreerag

Sreerag
Member
Dear @erik ,
Really thankful for your fast reply. Your contribution really help me and believe will help someone who run without batch submit.
Thankfully
Sreerag
 
Top