Mercurial > hg
comparison mercurial/repair.py @ 18040:fe8caf28d580
strip: make query to get new bookmark target cheaper
The current query to get the new bookmark target for stripped revisions
involves multiple walks up the DAG, and is really expensive, taking over 2.5
seconds on a repository with over 400,000 changesets even if just one
changeset is being stripped.
A slightly simplified version of the current query is
max(heads(::<tostrip> - <tostrip>))
We make two observations here.
1. For any set s, max(heads(s)) == max(s). That is because revision numbers
define a topological order, so that the element with the highest revision
number in s will not have any children in s.
2. For any set s, max(::s - s) == max(parents(s) - s). In other words, the
ancestor of s with the highest revision number not in s is a parent of one
of the revs in s. Why? Because if it were an ancestor but not a parent of s,
it would have a descendant that would be a parent of s. This descendant
would have a higher revision number, leading to a contradiction.
Combining these two observations, we rewrite the revset query as
max(parents(<tostrip>) - <tostrip>)
The time complexity is now linear in the number of changesets being stripped.
For the above repository, the query now takes 0.1 seconds when one changeset
is stripped. This speeds up operations that use repair.strip, like the rebase
and strip commands.
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Wed, 05 Dec 2012 14:33:15 -0800 |
parents | 747a2f43d5d9 |
children | f8a13f061a8a |
comparison
equal
deleted
inserted
replaced
18039:2c2564280900 | 18040:fe8caf28d580 |
---|---|
110 if saverevs: | 110 if saverevs: |
111 descendants = set(cl.descendants(saverevs)) | 111 descendants = set(cl.descendants(saverevs)) |
112 saverevs.difference_update(descendants) | 112 saverevs.difference_update(descendants) |
113 savebases = [cl.node(r) for r in saverevs] | 113 savebases = [cl.node(r) for r in saverevs] |
114 stripbases = [cl.node(r) for r in tostrip] | 114 stripbases = [cl.node(r) for r in tostrip] |
115 newbmtarget = repo.revs('sort(heads((::%ld) - (%ld)), -rev)', | 115 |
116 tostrip, tostrip) | 116 # For a set s, max(parents(s) - s) is the same as max(heads(::s - s)), but |
117 # is much faster | |
118 newbmtarget = repo.revs('max(parents(%ld) - (%ld))', tostrip, tostrip) | |
117 if newbmtarget: | 119 if newbmtarget: |
118 newbmtarget = repo[newbmtarget[0]].node() | 120 newbmtarget = repo[newbmtarget[0]].node() |
119 else: | 121 else: |
120 newbmtarget = '.' | 122 newbmtarget = '.' |
121 | 123 |