summaryrefslogtreecommitdiff
path: root/t/perf/p5600-partial-clone.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2021-04-13 07:15:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-13 20:16:39 (GMT)
commitfcc07e980b344a813b47358d0aa823d07c7ac744 (patch)
treebd8aa86f92cabe55e76c5213d1686be5b8cebf33 /t/perf/p5600-partial-clone.sh
parent89b43f80a514aee58b662ad606e6352e03eaeee4 (diff)
downloadgit-fcc07e980b344a813b47358d0aa823d07c7ac744.zip
git-fcc07e980b344a813b47358d0aa823d07c7ac744.tar.gz
git-fcc07e980b344a813b47358d0aa823d07c7ac744.tar.bz2
is_promisor_object(): free tree buffer after parsing
To get the list of all promisor objects, we not only include all objects in promisor packs, but also parse each of those objects to see which objects they reference. After parsing a tree object, the tree->buffer field will remain populated until we explicitly free it. So in a partial clone of blob:none, for example, we are essentially reading every tree in the repository (since they're all in the initial promisor pack), and keeping all of their uncompressed contents in memory at once. This patch frees the tree buffers after we've finished marking all of their reachable objects. We shouldn't need to do this for any other object type. While we are using some extra memory to store the structs, no other object type stores the whole contents in its parsed form (we do sometimes hold on to commit buffers, but less so these days due to commit graphs, plus most commands which care about promisor objects turn off the save_commit_buffer global). Even for a moderate-sized repository like git.git, this patch drops the peak heap (as measured by massif) for git-fsck from ~1.7GB to ~138MB. Fsck is a good candidate for measuring here because it doesn't interact with the promisor code except to call is_promisor_object(), so we can isolate just this problem. The added perf test shows only a tiny improvement on my machine for git.git, since 1.7GB isn't enough to cause any real memory pressure: Test HEAD^ HEAD -------------------------------------------------------------------------------- 5600.4: fsck 21.26(20.90+0.35) 20.84(20.79+0.04) -2.0% With linux.git the absolute change is a bit bigger, though still a small percentage: Test HEAD^ HEAD ----------------------------------------------------------------------------- 5600.4: fsck 262.26(259.13+3.12) 254.92(254.62+0.29) -2.8% I didn't have the patience to run it under massif with linux.git, but it's probably on the order of about 14GB improvement, since that's the sum of the sizes of all of the uncompressed trees (but still isn't enough to create memory pressure on this particular machine, which has 64GB of RAM). Smaller machines would probably see a bigger effect on runtime (and sadly our perf suite does not measure peak heap). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/perf/p5600-partial-clone.sh')
-rwxr-xr-xt/perf/p5600-partial-clone.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/perf/p5600-partial-clone.sh b/t/perf/p5600-partial-clone.sh
index 3e04bd2..754aaec 100755
--- a/t/perf/p5600-partial-clone.sh
+++ b/t/perf/p5600-partial-clone.sh
@@ -23,4 +23,8 @@ test_perf 'checkout of result' '
git -C worktree checkout -f
'
+test_perf 'fsck' '
+ git -C bare.git fsck
+'
+
test_done