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

xtrigger: ui support #6671

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

oliver-sanders
Copy link
Member

@oliver-sanders oliver-sanders commented Mar 14, 2025

This exposes xtriggers in Tui and lays the groundwork for exposing them in the GUI.

Visibility of xtriggers in the GUI (retry triggers in particular) has been flagged as a high priority development for production use cases and a desirable feature in general.

xtriggers: fix update and add is_retry, is_wallclock and is_xtriggered attrs

  • Don't update xtriggers incrementally:
  • Add is_retry, is_wallclock and is_xtriggered task attributes.
    • We would like to be able to incorporate xtriggers into the task icons used in the GUI and Tui.
    • These attributes allow clients to access the required information without having to subscribe to and monitor all xtriggers.
    • Unblocks xtriggers: tree view and beyond cylc-ui#331

tui: add retry, wallclock and xtrigger task modifiers

  • Display information about a task's xtriggers as part of the task icon using a modifier.
  • Incorporate a text-based summary of these modifiers into the task menu.
  • Change the runahead task modifier icon to match the placement of theother modifiers.

Screenshot from 2025-03-14 16-33-10

Screenshot from 2025-03-14 16-33-26

TODO:

  • Confirm viability of selected Tui icons in various terminals.
    • linux/xterm (good)
    • linux/terminator (good)
    • chromium/vscode (task alignment good, modifier alignment differs, ok IMO)
    • browser/jupyterlab (task alignment good, modifier alignment differs, ok IMO)
    • macos/terminal.app (good)
  • Settle the names and descriptions of the is_retry, is_wallclock and is_xtriggered attributes (if folk would like to debate them).
  • Update Tui integration tests.
  • Back-compat support for Tui (detect workflow version and modify the query).
  • Back-compat support for GUI (requires a cylc-uiserver shim). would appear not to be necessary xtrigger: ui support #6671 (comment)

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.

@oliver-sanders oliver-sanders self-assigned this Mar 14, 2025
@oliver-sanders oliver-sanders added this to the 8.5.0 milestone Mar 14, 2025
@oliver-sanders oliver-sanders force-pushed the xtrigger-ui-support branch 4 times, most recently from 83ec6a4 to 3cd3101 Compare March 26, 2025 17:23
@oliver-sanders oliver-sanders marked this pull request as ready for review March 26, 2025 17:28
@oliver-sanders oliver-sanders requested a review from wxtim March 27, 2025 10:01
@oliver-sanders
Copy link
Member Author

TODO: Back-compat support for GUI (requires a cylc-uiserver shim).

This PR has added three new fields, I had expected this to cause an inter-version compatibility issue, because if we request isRetry on a 8.4.0 workflow, that field doesn't exist.

But, when I tried out querying an older version via the UIS, I found that it didn't return an error and a False value was returned (which is what we want).

So it looks like there is an implicit default_value = False (for boolean fields) coming from somewhere. Fortunately, that happens to be the right default so I don't think that any UIS shim is required. Although we'll need to confirm that this is still the case after the GraphQL upgrade.

For info, here is the UIS shim that I had started to write

I put this in place and it all worked fine. I then commented out the overrides and found that it worked exactly the same 🤷 😕 ???

diff --git a/cylc/uiserver/schema.py b/cylc/uiserver/schema.py
index 38de421..3fee4df 100644
--- a/cylc/uiserver/schema.py
+++ b/cylc/uiserver/schema.py
@@ -31,11 +31,14 @@ from cylc.flow.rundb import CylcWorkflowDAO
 from cylc.flow.pathutil import get_workflow_run_dir
 from cylc.flow.workflow_files import WorkflowFiles
 from cylc.flow.network.schema import (
+    ALL_PROXY_ARGS,
+    DELTA_ADDED,
     NODE_MAP,
     CyclePoint,
     GenericResponse,
     SortArgs,
     Task,
+    TaskProxy,
     Job,
     Mutations,
     Queries,
@@ -45,7 +48,8 @@ from cylc.flow.network.schema import (
     WorkflowID,
     WorkflowRunMode as RunMode,
     _mut_field,
-    get_nodes_all
+    get_nodes_all,
+    delta_subs,
 )
 from cylc.flow.util import sstrip
 from cylc.uiserver.resolvers import (
@@ -585,6 +589,42 @@ class UISQueries(Queries):
     )
 
 
+class UISTaskProxy(TaskProxy):
+
+    # Replace workflow and task name in workflow and task URLs.
+    # BACK COMPAT: isRetry, isWallclock, isXtriggered
+    # url:
+    #     https://github.com/cylc/cylc-flow/pull/6671
+    # from:
+    #     Cylc < 8.5.0
+    # to:
+    #     Cylc 8.5.0
+    # remove at:
+    #     Cylc 8.x (when inter-operability is no longer required)
+
+    isRetry = graphene.Boolean(default_value=False)
+    isWallclock = graphene.Boolean(default_value=False)
+    isXtriggered = graphene.Boolean(default_value=False)
+
+
+class UISFamilyProxy(TaskProxy):
+
+    # Replace workflow and task name in workflow and task URLs.
+    # BACK COMPAT: isRetry, isWallclock, isXtriggered
+    # url:
+    #     https://github.com/cylc/cylc-flow/pull/6671
+    # from:
+    #     Cylc < 8.5.0
+    # to:
+    #     Cylc 8.5.0
+    # remove at:
+    #     Cylc 8.x (when inter-operability is no longer required)
+
+    isRetry = graphene.Boolean(default_value=False)
+    isWallclock = graphene.Boolean(default_value=False)
+    isXtriggered = graphene.Boolean(default_value=False)
+
+
 class UISSubscriptions(Subscriptions):
     # Example graphiql workflow log subscription:
     # subscription {
@@ -615,6 +655,30 @@ class UISSubscriptions(Subscriptions):
         resolver=stream_log
     )
 
+    # task_proxies = graphene.List(
+    #     UISTaskProxy,
+    #     description=UISTaskProxy._meta.description,
+    #     args=ALL_PROXY_ARGS,
+    #     strip_null=graphene.Boolean(default_value=True),
+    #     delta_store=graphene.Boolean(default_value=True),
+    #     delta_type=graphene.String(default_value=DELTA_ADDED),
+    #     initial_burst=graphene.Boolean(default_value=True),
+    #     ignore_interval=graphene.Float(default_value=0.0),
+    #     resolver=delta_subs
+    # )
+
+    # family_proxies = graphene.List(
+    #     UISFamilyProxy,
+    #     description=UISFamilyProxy._meta.description,
+    #     args=ALL_PROXY_ARGS,
+    #     strip_null=graphene.Booolean(default_value=True),
+    #     delta_store=graphene.Booolean(default_value=True),
+    #     delta_type=graphene.String(default_value=DELTA_ADDED),
+    #     initial_burst=graphene.Booolean(default_value=True),
+    #     ignore_interval=graphene.Float(default_value=0.0),
+    #     resolver=delta_subs
+    # )
+
 
 class UISMutations(Mutations):
     play = _mut_field(Play)

@wxtim
Copy link
Member

wxtim commented Mar 28, 2025

Not working with my PR:

[scheduler]
    allow implicit tasks = True

[scheduling]
    cycling mode = integer
    [[xtriggers]]
        foo_made = file_exists('/var/tmp/foo')
        bar_made = file_exists('/var/tmp/bar')

    [[graph]]
        R1 = @foo_made & @bar_made => task

image

"""Extract host and port from a workflow's contact file.

NB: if it fails to load the workflow contact file, it will exit.

Args:
workflow: workflow ID
Returns:
Tuple (host name, port number, publish port number)
Tuple (host name, port number, publish port number, scheduler veresion)
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
Tuple (host name, port number, publish port number, scheduler veresion)
Tuple (host name, port number, publish port number, scheduler version)

@oliver-sanders
Copy link
Member Author

oliver-sanders commented Mar 28, 2025

@wxtim Try again now 🤞

(added test)

@oliver-sanders oliver-sanders force-pushed the xtrigger-ui-support branch 4 times, most recently from a5e4956 to 21637a5 Compare March 31, 2025 08:57
@wxtim
Copy link
Member

wxtim commented Mar 31, 2025

cylc/cylc-ui#2102 Works with 21637a5

…d attrs

* Don't update xtriggers incrementally:
  * Xtriggers were being updated in the data store incrementally.
  * This doesn't work with GraphQL subscriptions
    (see cylc#6307).
  * This turns off incremental updates ensuring that all xtriggers are
    included in all updates.
  * Unblocks cylc/cylc-ui#2103
* Add is_retry, is_wallclock and is_xtriggered task attributes.
  * We would like to be able to incorporate xtriggers into the task
    icons used in the GUI and Tui.
  * These attributes allow clients to access the required information
    without having to subscribe to and monitor all xtriggers.
  * Unblocks cylc/cylc-ui#331
* Display information about a task's xtriggers as part of the task icon
  using a modifier.
* Incorporate a text-based summary of these modifiers into the task
  menu.
* Change the runahead task modifier icon to match the placement of the
  other modifiers.
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.

2 participants