-
Notifications
You must be signed in to change notification settings - Fork 94
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
base: master
Are you sure you want to change the base?
xtrigger: ui support #6671
Conversation
83ec6a4
to
3cd3101
Compare
This PR has added three new fields, I had expected this to cause an inter-version compatibility issue, because if we request But, when I tried out querying an older version via the UIS, I found that it didn't return an error and a So it looks like there is an implicit For info, here is the UIS shim that I had started to writeI 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) |
"""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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tuple (host name, port number, publish port number, scheduler veresion) | |
Tuple (host name, port number, publish port number, scheduler version) |
3cd3101
to
14b83aa
Compare
@wxtim Try again now 🤞 |
a5e4956
to
21637a5
Compare
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.
21637a5
to
a29095c
Compare
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
tui: add retry, wallclock and xtrigger task modifiers
TODO:
Back-compat support for GUI (requires a cylc-uiserver shim).would appear not to be necessary xtrigger: ui support #6671 (comment)Check List
CONTRIBUTING.md
and added my name as a Code Contributor.setup.cfg
(andconda-environment.yml
if present).?.?.x
branch.