comparison tests/test-issue672.t @ 42621:99ebde4fec99

commit: improve the files field of changelog for merges Currently, the files list of merge commits repeats all the deletions (either actual deletions, or files that got renamed) that happened between base and p2 of the merge. If p2 is the main branch, the list can easily be much bigger than the change being merged. This results in various problems worth improving: - changelog is bigger than necessary - `hg log directory` lists many unrelated merge commits, and `hg log -v -r commit` frequently fills multiple screens worth of files - it possibly slows down adjustlinkrev, by forcing it to read more manifests, and that function can certainly be a bottleneck - the server side of pulls can waste a lot of time simply opening the filelogs for pointless files (the constant factors for opening even a tiny filelog is apparently pretty bad) So stop listing such files as described in the code. Impacted merge commits and their descendants get a different hash than they would have without this. This doesn't seem problematic, except for convert. The previous commit helped with that in the hg->hg case (but if you do svn->hg twice from scratch, hashes can still change). The rest of the description is numbers. I don't have much to report, because recreating the files list of existing repositories is not easy: - debugupgradeformat and bundle/unbundle don't recreate the list - export/import tends to choke quickly applying patches or on description that contain diffs, - merge commits from the convert extension don't have the right files list for reasons orthogonal to the current commit - replaying the merge with hg update/hg merge/hg revert --all/hg commit can end up failing in hg revert - I wasn't sure that using debugsetparents + debugrebuilddirstate would really build the right thing I measured commit time before and after this change, in a case with no files filtered out, several files filtered out (no difference) and 5k files filtered out (+1% time). Recreating the 100 more recent merges in a private repo, the concatenated uncompressed files lists goes from 1.12MB to 0.52MB. Excluding 3 merges that are not representative, then the size goes from 570k to 15k. I converted part of mozilla-central, and observed file list shrinking quite a bit too, starting at the very first merge, 733641d9feaf, going from 550 files to 10 files (although they have relatively few merges, so they probably wouldn't care). Differential Revision: https://phab.mercurial-scm.org/D6613
author Valentin Gatien-Baron <valentin.gatienbaron@gmail.com>
date Tue, 02 Jul 2019 12:59:58 -0400
parents 91a0bc50b288
children 17e12938f8e7
comparison
equal deleted inserted replaced
42620:d98ec36be808 42621:99ebde4fec99
58 all copies found (* = to merge, ! = divergent, % = renamed and deleted): 58 all copies found (* = to merge, ! = divergent, % = renamed and deleted):
59 src: '1' -> dst: '1a' * 59 src: '1' -> dst: '1a' *
60 checking for directory renames 60 checking for directory renames
61 resolving manifests 61 resolving manifests
62 branchmerge: True, force: False, partial: False 62 branchmerge: True, force: False, partial: False
63 ancestor: c64f439569a9, local: e327dca35ac8+, remote: 746e9549ea96 63 ancestor: c64f439569a9, local: f4a9cff3cd0b+, remote: 746e9549ea96
64 preserving 1a for resolve of 1a 64 preserving 1a for resolve of 1a
65 starting 4 threads for background file closing (?) 65 starting 4 threads for background file closing (?)
66 1a: local copied/moved from 1 -> m (premerge) 66 1a: local copied/moved from 1 -> m (premerge)
67 picked tool ':merge' for 1a (binary False symlink False changedelete False) 67 picked tool ':merge' for 1a (binary False symlink False changedelete False)
68 merging 1a and 1 to 1a 68 merging 1a and 1 to 1a
69 my 1a@e327dca35ac8+ other 1@746e9549ea96 ancestor 1@c64f439569a9 69 my 1a@f4a9cff3cd0b+ other 1@746e9549ea96 ancestor 1@c64f439569a9
70 premerge successful 70 premerge successful
71 0 files updated, 1 files merged, 0 files removed, 0 files unresolved 71 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
72 (branch merge, don't forget to commit) 72 (branch merge, don't forget to commit)
73 73
74 $ hg co -C 4 74 $ hg co -C 4
80 all copies found (* = to merge, ! = divergent, % = renamed and deleted): 80 all copies found (* = to merge, ! = divergent, % = renamed and deleted):
81 src: '1' -> dst: '1a' * 81 src: '1' -> dst: '1a' *
82 checking for directory renames 82 checking for directory renames
83 resolving manifests 83 resolving manifests
84 branchmerge: True, force: False, partial: False 84 branchmerge: True, force: False, partial: False
85 ancestor: c64f439569a9, local: 746e9549ea96+, remote: e327dca35ac8 85 ancestor: c64f439569a9, local: 746e9549ea96+, remote: f4a9cff3cd0b
86 preserving 1 for resolve of 1a 86 preserving 1 for resolve of 1a
87 removing 1 87 removing 1
88 starting 4 threads for background file closing (?) 88 starting 4 threads for background file closing (?)
89 1a: remote moved from 1 -> m (premerge) 89 1a: remote moved from 1 -> m (premerge)
90 picked tool ':merge' for 1a (binary False symlink False changedelete False) 90 picked tool ':merge' for 1a (binary False symlink False changedelete False)
91 merging 1 and 1a to 1a 91 merging 1 and 1a to 1a
92 my 1a@746e9549ea96+ other 1a@e327dca35ac8 ancestor 1@c64f439569a9 92 my 1a@746e9549ea96+ other 1a@f4a9cff3cd0b ancestor 1@c64f439569a9
93 premerge successful 93 premerge successful
94 0 files updated, 1 files merged, 0 files removed, 0 files unresolved 94 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
95 (branch merge, don't forget to commit) 95 (branch merge, don't forget to commit)
96 96