Trying to run a pretty basic suite on NCAR Cheyenne where I submit a python job to the queue via PBS generates the following errors:
(cylc8b1) bcash@cheyenne5:~/cylc-run/L96> crun L96/run2
._.
| |
._____._. ._| |_____.
| .___| | | | | .___| The Cylc Workflow Engine [8.0b1]
| !___| !_! | | !___. Copyright (C) 2008-2021 NIWA
!_____!___. |_!_____! & British Crown (Met Office) & Contributors.
.___! |
!_____!
2021-05-20T15:12:27-06:00 ERROR - [Errno 11] Resource temporarily unavailable: '/glade/u/home/bcash/cylc-run/L96/run2/.service/db' -> '/glade/u/home/bcash/cylc-run/L96/run2/log/dbrsqoeuu2'
Traceback (most recent call last):
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/site-packages/cylc/flow/scheduler.py", line 621, in run
await self.configure()
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/site-packages/cylc/flow/scheduler.py", line 429, in configure
self.suite_db_mgr.on_suite_start(self.is_restart)
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/site-packages/cylc/flow/suite_db_mgr.py", line 196, in on_suite_start
self.copy_pri_to_pub()
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/site-packages/cylc/flow/suite_db_mgr.py", line 128, in copy_pri_to_pub
copy(self.pri_dao.db_file_name, temp_pub_db_file_name)
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/shutil.py", line 418, in copy
copyfile(src, dst, follow_symlinks=follow_symlinks)
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/shutil.py", line 275, in copyfile
_fastcopy_sendfile(fsrc, fdst)
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/shutil.py", line 172, in _fastcopy_sendfile
raise err
File "/glade/u/home/bcash/.conda/envs/cylc8b1/lib/python3.8/shutil.py", line 152, in _fastcopy_sendfile
sent = os.sendfile(outfd, infd, offset, blocksize)
BlockingIOError: [Errno 11] Resource temporarily unavailable:
'/glade/u/home/bcash/cylc-run/L96/run2/.service/db' -> '/glade/u/home/bcash/cylc-run/L96/run2/log/dbrsqoeuu2'
2021-05-20T15:12:27-06:00 CRITICAL - Suite shutting down
- [Errno 11] Resource temporarily unavailable:
'/glade/u/home/bcash/cylc-run/L96/run2/.service/db' -> '/glade/u/home/bcash/cylc-run/L96/run2/log/dbrsqoeuu2'
2021-05-20T15:12:27-06:00 INFO - DONE
My flow.cylc is:
[meta]
title = "Basic cylc suite for executing L96 model"
[scheduling]
[[dependencies]]
graph = "L96"
[runtime]
[[root]]
platform = cheyenne
[[L96]]
script = "python /glade/work/bcash/ssf/L96/L96_roxie.py"
[[[directives]]]
-A = UMIN0005
And my global.cylc is:
[platforms]
[[cheyenne]]
job runner = qsub
job runner command template = qsub %(job)s
I assume I’m making some kind of novice error with 8.0b1 but don’t know what it is.