Skip to content

services: validate-reinstall#746

Open
oliver-sanders wants to merge 4 commits intocylc:masterfrom
oliver-sanders:526
Open

services: validate-reinstall#746
oliver-sanders wants to merge 4 commits intocylc:masterfrom
oliver-sanders:526

Conversation

@oliver-sanders
Copy link
Member

@oliver-sanders oliver-sanders commented Oct 29, 2025

Closes #526

I somehow forgot that we have cylc vr support in the Tui, but not the GUI!

Trivial to add support. Supporting the cylc install command is also possible, however, that will require #512.

UI sibling: cylc/cylc-ui#2347

Check List

  • I have read CONTRIBUTING.md and added my name as a Code Contributor.
  • Contains logically grouped changes (else tidy your branch by rebase).
  • Does not contain off-topic changes (use other PRs for other changes).
  • Applied any dependency changes to both setup.cfg (and conda-environment.yml if present).
  • Tests are included (or explain why tests are not needed).
  • Changelog entry included if this is a change that can affect users
  • Cylc-Doc pull request opened if required at cylc/cylc-doc/pull/XXXX.
  • If this is a bug fix, PR should be raised against the relevant ?.?.x branch.

args: Dict[str, Any],
workflows_mgr: 'WorkflowsManager',
log: 'Logger',
) -> List[Union[bool, str]]:
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed from list[bool | str] to tuple[bool, str] as this is safer for the way we are trying to use it (('msg', False) would have been acceptable before).

Comment on lines +356 to +364
try:
ret_code = proc.wait(timeout=timeout)
except TimeoutExpired as exc:
proc.kill()
ret_code = 124 # mimic `timeout` command error code
# NOTE: preserve any stderr that the command produced this
# far as this may help with debugging
out, err = proc.communicate()
err = str(exc) + (('\n' + err) if err else '')
Copy link
Member Author

@oliver-sanders oliver-sanders Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, it turns out this timeout logic was bunk. You have to actually .kill() to process if you want it to stop.

https://docs.python.org/3/library/subprocess.html#subprocess.Popen.communicate

Additionally, this will now log the command's stderr which might be useful in the event of a timeout.


if command == 'clean': # noqa: SIM116
return await Services.clean(
self.workflows_mgr,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Switched arg order for consistency.

@oliver-sanders
Copy link
Member Author

FYI: style tests will fail until #748

@oliver-sanders oliver-sanders marked this pull request as ready for review October 30, 2025 16:03
@oliver-sanders oliver-sanders requested a review from wxtim October 30, 2025 16:03
Copy link
Member

@wxtim wxtim left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Read Code
  • Tried in practice.

n.b. I think that VR should be on the shortened list of commands, but that's a Cylc UI change

@oliver-sanders
Copy link
Member Author

oliver-sanders commented Nov 3, 2025

n.b. I think that VR should be on the shortened list of commands, but that's a Cylc UI change

There'll be a cylc-ui and cylc-doc counterpart.

@oliver-sanders oliver-sanders force-pushed the 526 branch 2 times, most recently from f8f0f51 to f6a6e5e Compare November 3, 2025 16:31
@oliver-sanders
Copy link
Member Author

@wxtim, since last review:

  • Fixed tests (hopefully)
  • Added support for the "global" option (BoM might want to use this)

oliver-sanders added a commit to oliver-sanders/cylc-ui that referenced this pull request Nov 3, 2025
* The `reload` mutation isn't the most helpful command post
  `cylc install`.
* Swap it out in the workflow command shortlist for the
  [newly added](cylc/cylc-uiserver#746)
  `validateReinstall` mutation which has wider scope.
@oliver-sanders
Copy link
Member Author

(drafting whilst I look at how hard it will be to combine ALL play and reload opts)

@oliver-sanders oliver-sanders marked this pull request as draft November 5, 2025 13:00
* Closes cylc#526
* Add basic support for the `cylc vr` command.
* We were applying a timeout to the `Popen.wait` method, however, this
  doesn't actually kill the process (as one might expect) when the
  timeout elapses, it just stops waiting for it?!
Copy link
Member Author

@oliver-sanders oliver-sanders left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is now the "full" solution which should support all relevant usages/args.

Reviewers, please give attention to the newly-added arguments to ensure they are working as intended:

https://github.com/cylc/cylc-uiserver/pull/746/changes#r2833158708

Set the Cylc version that the workflow starts with.
''')
)
# cylc-rose
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cylc-rose arguments (all new):

  • opt_conf_key
  • clear_rose_install_options
  • define
  • rose_template_variable

''')
resolver = partial(mutator, command='validate_reinstall')

class Arguments(Reinstall.Arguments, Reload.Arguments):
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reload arguments (all new):

  • reload_global

@oliver-sanders oliver-sanders force-pushed the 526 branch 2 times, most recently from e1ea902 to 2dbceab Compare February 20, 2026 13:33
@oliver-sanders oliver-sanders marked this pull request as ready for review February 20, 2026 13:43
oliver-sanders added a commit to oliver-sanders/cylc-ui that referenced this pull request Feb 20, 2026
* The `reload` mutation isn't the most helpful command post
  `cylc install`.
* Swap it out in the workflow command shortlist for the
  [newly added](cylc/cylc-uiserver#746)
  `validateReinstall` mutation which has wider scope.
return cmd


def _substitute_keys(dictionary, substitutions):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO rename is more ronseal that substitute.

Suggested change
def _substitute_keys(dictionary, substitutions):
def _rename_keys(dictionary, substitutions):

''')
)
# cylc-rose
opt_conf_key = graphene.List(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tangential thought - should we be storing old rose-suite-cylc-install.conf when we re-install?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consequences probably already logged in log/install?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure that the variables blown away are stored anywhere.

Copy link
Member Author

@oliver-sanders oliver-sanders Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The consequences of the opt config are written to log/config/TIMESTAMP-rose-suite.conf.

e.g:

cylc install -O '(foo)'
cylc reinstall <wflow> -O '(bar)'

The latest rose-suite.conf in that dir will read:

!opts=(foo) (bar)

[env]
# ROSE_ORIG_HOST set by cylc install.
ROSE_ORIG_HOST=...

[template variables]
# ROSE_ORIG_HOST set by cylc install.
ROSE_ORIG_HOST=...

The previous will read !opts=(foo).

Copy link
Member

@MetRonnie MetRonnie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried adding opt conf keys in the command form but they were not passed to the cylc reinstall command

Comment on lines +248 to +252
cylc_version = CylcVersion(
description=sstrip('''
Set the Cylc version that the workflow starts with.
''')
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this applies to reinstall, surely?

Suggested change
cylc_version = CylcVersion(
description=sstrip('''
Set the Cylc version that the workflow starts with.
''')
)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is implemented for all commands, see def run_command.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But why? I can't see the need to do this for reinstall?

Copy link
Member Author

@oliver-sanders oliver-sanders Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not just for reinstall (which isn't actually implemented), the cylc vr command will also (re)start a stopped workflow, so the CYLC_VERSION argument is just as important here as for the Play mutation.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But vr/ReinstallReload inherits Play's options which includes cylc_version

* Provide full coverage for the `cylc vr` command.
* Separate the command into two GraphQL mutations:
  * [validate-]reinstall-reload.
  * [validate-]reinstall-restart.
@oliver-sanders
Copy link
Member Author

oliver-sanders commented Feb 25, 2026

https://github.com/cylc/cylc-uiserver/compare/2dbceab899de0bdcef9b5a097c2d364dc4781ea0..57b44ec5ab8d24e46f2b811ceb11c81d81b5a474

  • Hardcoded mappings from the GraphQL (plural) to CLI (singular) fields.
  • Renamed field.
  • Applied requested docs changes.

c8523a1

  • Prefix Rose fields with rose_.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

services: vr (validate-reinstall-apply)

3 participants