-
Notifications
You must be signed in to change notification settings - Fork 29
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
data store: wipe workflow data on reload. #1479
Conversation
2a56276
to
86122aa
Compare
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.
Something is going wrong here when you open the graph view at the same time as the tree view. Both stop updating.
f29b5ee
to
febc956
Compare
store.commit('workflows/REMOVE_CHILDREN', (deltas.updated.workflow.id)) | ||
} | ||
if (deltas.added?.workflow?.reloaded) { | ||
store.commit('workflows/REMOVE_CHILDREN', (deltas.added.workflow.id)) |
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.
To test, try jamming in console.log
statements or whatever here to ensure that the REMOVE_CHILDREN
store method is being called.
@@ -25,3 +25,61 @@ E.G. the Tree *view* displays Cylc cycles/tasks/jobs in a collapsible hierarchy. | |||
It uses the Tree *component* which provides the generic tree logic e.g. | |||
indentation, expand/collapse, etc. This Tree *component* is also used by | |||
the Workflows *view*. | |||
|
|||
|
|||
## Subscriptions |
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.
Added some details here as the rules for subscription writing are getting a little complex.
See also #862 for context, and a possible way to simplify things for view writers.
Started this again from scratch:
The tree and graph seem to be playing together nicely. |
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.
Seems to work well. Spotted a couple of minor issues after a reload which may or may not be specific to this branch
I haven't seen that one in testing, though I have seen cylc/cylc-flow#5215 If you're able to reproduce, could you check whether the job info was sent through in the deltas? |
I can't reproduce either reported issue? Though the graph issue you showed wouldn't be entirely surprising, as I don't imagine svgPanZoom would appreciate a document with no dimensions. I have now seen the absence of graph arrows following a firstParent null error though which is useful. |
Turns out that repeatably reloading the workflow with this branch is a really good way of triggering the firstParent bug. Tried testing with #1513 merged in and everything is looking good after 25 reloads: diff --git a/src/services/treeCallback.js b/src/services/treeCallback.js
index 570c3ac4..1ab9308c 100644
--- a/src/services/treeCallback.js
+++ b/src/services/treeCallback.js
@@ -38,9 +38,11 @@ class CylcTreeCallback extends DeltasCallback {
// do this, we can end up with nodes in the store which aren't meant to be
// there and won't get pruned.
if (deltas.updated?.workflow?.reloaded) {
+ console.warn('REMOVE_CHILDREN')
store.commit('workflows/REMOVE_CHILDREN', (deltas.updated.workflow.id))
}
if (deltas.added?.workflow?.reloaded) {
+ console.warn('REMOVE_CHILDREN')
store.commit('workflows/REMOVE_CHILDREN', (deltas.added.workflow.id))
}
}
|
* Each view must register a subscription requesting the data the view requires. * Currently some of these queries are colocated and have not been kept in sync with the requirements of the views. * This commit moves the queries into the views they are used by.
* Remove fields from the query which are not used by the view. * Fill in missing field requests.
* When a workflow is reloaded or restarted (node restart infers reload), there may be objects left behind in the store which have been wiped out in the scheduler by the configuration change. * To handle this, we must wipe all objects stored on the workflow (e.g. TaskProxies, TaskDefs, Jobs, etc), and rebuild from scratch. * Note, we don't need to wipe the data on the Workflow object itself (e.g. port, stateTotals, etc), these things will be refreshed by this or subsequent deltas.
febc956
to
fceb26a
Compare
|
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.
I've tested out again, and the only problem I can see is the jobs disappear on reload (includes running and succeeded jobs) (seems to be at least latestJob
goes missing?). This does not happen on master / #1513 presumably because the data was not wiped.
Update: turns out this job wiping was only happening in simulation mode, which is forgiveable
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.
LGTM, tested as working 👍
The UI side of cylc/cylc-flow#5715
In combination with cylc/cylc-flow#5715, this closes #1480
Check List
CONTRIBUTING.md
and added my name as a Code Contributor.setup.cfg
(andconda-environment.yml
if present).CHANGES.md
entry included if this is a change that can affect users?.?.x
branch.