public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] fetch --prune performance problem
@ 2025-06-23 23:43 Phil Hord
  2025-06-23 23:43 ` [PATCH v2 1/2] fetch-prune: optimize dangling-ref reporting Phil Hord
  2025-06-23 23:43 ` [PATCH v2 2/2] refs: remove old refs_warn_dangling_symref Phil Hord
  0 siblings, 2 replies; 4+ messages in thread
From: Phil Hord @ 2025-06-23 23:43 UTC (permalink / raw)
  To: gitster; +Cc: peff, git, Jacob Keller, Phil Hord

From: Phil Hord <phil.hord@gmail.com>

`git fetch --prune` runs in O(N^2) time normally. This happens because the code
iterates over each ref to be pruned to display its status. In a repo with
174,000 refs, where I was pruning 15,000 refs, the current code made 2.6 billion
calls to strcmp and consumed 470 seconds of CPU. After this change, the same
operation completes in under 1 second.

The loop looks like this:

    for p in prune_refs { for ref in all_refs { if p == ref { ... }}}

That loop runs only to check for and report newly dangling refs. A workaround to
avoid this slowness is to run with `-q` to bypass this check.

There is similar check/report functionality in `git remote prune`, but it uses a
more efficient method to check for dangling refs. prune_refs is first sorted, so
it can be searched in O(logN), so this loop is O(N*logN).

    for ref in all_refs { if ref in prune_refs { ... }}

We can use that function instead, with some minor cleanup to the output to deal
with the ordering being changed.

This patch version only adds the deleted branch name to the output of the dangling
sym refs since the ordering has changed. This is only a minor cleanup and was
not actually needed since, for example, `git origin prune` already did not
mind losing track of this information in its output. But now it is improved
to be more explicit.

Phil Hord (2):
  fetch-prune: optimize dangling-ref reporting
  refs: remove old refs_warn_dangling_symref

 builtin/fetch.c  | 20 ++++++++++----------
 builtin/remote.c |  4 ++--
 refs.c           | 21 ++++-----------------
 3 files changed, 16 insertions(+), 29 deletions(-)

-- 
2.50.0.84.g5d85fe910b.dirty


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-06-24 10:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-23 23:43 [PATCH v2 0/2] fetch --prune performance problem Phil Hord
2025-06-23 23:43 ` [PATCH v2 1/2] fetch-prune: optimize dangling-ref reporting Phil Hord
2025-06-24 10:49   ` Jeff King
2025-06-23 23:43 ` [PATCH v2 2/2] refs: remove old refs_warn_dangling_symref Phil Hord

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox