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

Partial #6914 job_agent separated terminating vs destroying #7337

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions etc/schema-import/elegant/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Run:
sirepo elegant-schema parse-manual
186 changes: 0 additions & 186 deletions etc/schema-import/elegant/update-schema-from-manual.py

This file was deleted.

6 changes: 5 additions & 1 deletion sirepo/const.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# -*- coding: utf-8 -*-
"""Constant values

:copyright: Copyright (c) 2021 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

import asyncio
from pykern.pkcollections import PKDict
import pykern.pkio

ASYNC_CANCELED_ERROR = asyncio.CancelledError

Expand Down Expand Up @@ -53,3 +54,6 @@
SRUNIT_USER_AGENT = "srunit/1.0"

TEST_PORT_RANGE = range(10000, 11000)

#: hardwired root of development src tree
DEV_SRC_RADIASOFT_DIR = pykern.pkio.py_path("~/src/radiasoft/")
6 changes: 3 additions & 3 deletions sirepo/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
OP_RUN = "run"
OP_SBATCH_AGENT_READY = "sbatch_agent_ready"
OP_SBATCH_LOGIN = "sbatch_login"
OP_VERIFY_STATUS = "verify_status"
OP_BEGIN_SESSION = "begin_session"


#: Types of slots required by op types
CPU_SLOT_OPS = frozenset((OP_ANALYSIS, OP_RUN))
SLOT_OPS = frozenset().union(*[CPU_SLOT_OPS, (OP_IO,)])

#: All ops that have slots (see job_driver.DriverBase._slots_ready)
SLOT_OPS = frozenset().union(*[CPU_SLOT_OPS, (OP_IO, OP_VERIFY_STATUS)])

_OK_REPLY = PKDict(state="ok")

Expand Down
4 changes: 2 additions & 2 deletions sirepo/job_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,11 +395,11 @@ async def _alloc_check(alloc, msg):
if n == job.OP_SBATCH_LOGIN:
return res
await _alloc_check(
op.op_slot.alloc, "Waiting for another simulation to complete await=op_slot"
op.op_slot.alloc, "Waiting for another sim op to complete await=op_slot"
)
await _alloc_check(
op.run_dir_slot.alloc,
"Waiting for access to simulation state await=run_dir_slot",
"Waiting for access to sim state await=run_dir_slot",
)
if n not in job.CPU_SLOT_OPS:
return res
Expand Down
15 changes: 9 additions & 6 deletions sirepo/job_driver/sbatch.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# -*- coding: utf-8 -*-
"""TODO(e-carlin): Doc

:copyright: Copyright (c) 2019 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""
from __future__ import absolute_import, division, print_function

from pykern import pkconfig
from pykern import pkio
from pykern import pkjson
Expand All @@ -16,6 +15,7 @@
import asyncssh
import datetime
import errno
import sirepo.const
import sirepo.job_supervisor
import sirepo.simulation_db
import sirepo.util
Expand Down Expand Up @@ -232,10 +232,13 @@ def _agent_start_dev(self):
scancel -u $USER >& /dev/null || true
"""
if self.cfg.shifter_image:
res += """
(cd ~/src/radiasoft/sirepo && git pull -q) || true
(cd ~/src/radiasoft/pykern && git pull -q) || true
"""
res += (
"\n".join(
f"(cd {sirepo.const.DEV_SRC_RADIASOFT_DIR.join(p)} && git pull -q || true)"
for p in ("pykern", "sirepo")
)
+ "\n"
)
return res

def _raise_sbatch_login_srexception(self, reason, msg):
Expand Down
Loading