Re: [PATCH 3/3] t5551: pack refs after creating many tags
From: Patrick Steinhardt <hidden>
Date: 2026-06-29 05:57:28
On Sun, Jun 28, 2026 at 04:07:10AM -0400, Jeff King wrote:
We have two tests that create 2,000 and 100,000 tags respectively. After doing so, the resulting state can be a bit slow to work with when using the "files" ref backend, as each of those refs is in its own file. This isn't a very realistic scenario, as we'd expect most of those refs to be packed. If they accrue over time along with objects, they'd get packed by maintenance/gc runs. And if you have a process that creates a ton of refs at once (like a big fast-import), the usual recommendation is to run maintenance afterwards. So let's follow that recommendation and pack the refs ourselves. Unfortunately, this does not seem to produce an improvement to the run-time of the test script! That's because after producing this state, we perform only a few fetches of it. And packing the refs costs at least as much as serving a ref advertisement (both have to iterate the refs, but packing additionally must write .lock files as we pack).
My wall-clock time was slightly improved (but within the noise) with this patch, but my user and system CPU time were slightly worse! However, on a loaded system with I/O bottlenecks, it may be a net win. That's somewhat of a guess, though. It would be nice if we had a way to generate all of these refs without writing so many individual files. But even if we taught the ref code to write large cases directly to the packed-refs file, we'd still need to take individual locks. The real solution is a backend like reftable, which shaves ~30% off of the test runtime.
We kind of already have this with the `REF_TRANSACTION_FLAG_INITIAL` flag, but right now it is only used when performing a clone or when migrating references. Also, it requires an empty repository that has no references yet. It raises the question whether we could also extend git-fast-import(1) to use it, as it would typically be run on an almost-empty repository. It's the "almost" that kills it though, as we already do have at least the HEAD reference. So it could be feasible, but it's not as trivial as just setting the flag and then we're magically faster. And besides, in this particular test here we run git-fast-import(1) multiple times in the same repository, so it wouldn't help us. We could of course extend all of this so that Git is able to write into the packed-refs directly, even with preexisting refs. But I agree with your sentiment: it doesn't feel worth it as the reftable backend fixes scenarios like this anyway.
Signed-off-by: Jeff King <redacted> --- I'm iffy on whether this one is worth it. If you apply just this patch without patch 2, then the run-time does improve quite a bit. The cost of packing is amortized by the improved performance for all of those subsequent tests (but after patch 2, they never even see the unpacked state). Likewise, I suspect this would make our timeout problems go away even without patch 1. So the whole series _could_ be reduced to just this one patch. But hopefully the reasoning given in the earlier patches makes sense, at which point this one is kind of superfluous.
Agreed. I'd just merge the first two patches and drop this one here. Thanks! Patrick