-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: workspace-mode graph pruning needs to follow upgraded roots #49763
Comments
One possible fix is to change However, that loop has a pretty unfortunate running time: any time a dependency is upgraded it reloads the full graph to recompute MVS results, and upgrades can potentially form long spirals. In a single-module setting, that's not terrible because we can record the result in the |
Another possible fix is to change the workspace pruning mode to do the expansion itself: after each round of loading from the roots, re-enqueue the selected version of each root if that version's dependencies have not yet been loaded. If we end up encountering a spiral of upgrades, that doesn't allow us to prune out as many intermediate versions, but it does allow us to avoid reloading the graph multiple times — and upgrade spirals seem like they will be fairly short in practice and are relatively easy for the user to cut off by running CC @matloob |
Any updates on this? Thanks. (checking in as this is a release blocker.) |
Change https://golang.org/cl/370663 mentions this issue: |
We pair-programmed this today (in CL 370663), and if it passes in the longtest builders it should resolve this issue for the release. |
In CL 362754 we added a
workspace
graph-pruning mode, to fix a bug that we identified through code review (added in thework_prune
test script in that CL).I've been thinking some more about that scenario, and I've identified a related problem arising from the interaction between workspaces and graph pruning.
The module graph in that example has edges like:
But what if
example.com/q
itself has edges to new, not-previously-imported dependencies?With current workspace pruning semantics, that edge will be pruned out: it is pruned out of
a
's dependency graph (because it is not relevant to any package imported bya
), and it is not present inb
's dependency graph (becauseb
requires a different version ofq
entirely).The result is that
a
by itself may be tidy, andp
by itself may be tidy, but loading the dependencies ofp
from the combined module graph is missing a dependency.The text was updated successfully, but these errors were encountered: