Page MenuHomePhabricator

Skip "git for-each-ref" when identifying deleted commits
ClosedPublic

Authored by epriestley on Mar 28 2021, 5:58 PM.
Tags
None
Referenced Files
F15456056: D21658.id51534.diff
Sun, Mar 30, 6:42 AM
F15454234: D21658.id.diff
Sat, Mar 29, 5:09 PM
F15452907: D21658.id51535.diff
Sat, Mar 29, 8:05 AM
F15447590: D21658.diff
Fri, Mar 28, 12:40 AM
F15441876: D21658.diff
Wed, Mar 26, 8:31 PM
F15436871: D21658.id51534.diff
Tue, Mar 25, 4:42 PM
F15419046: D21658.diff
Fri, Mar 21, 3:00 AM
F15410966: D21658.diff
Wed, Mar 19, 8:44 AM
Subscribers
None

Details

Summary

Ref T13647. The ref discovery process prunes commits that no longer exist in the repository before executing "git log <new heads> --not <old heads>" to identify newly published commits.

If we don't do this, the "git log" command will fail if any old head has been pruned from the repository.

Currently, this test for missing commits starts with a call to "git for-each-ref" to attempt to resolve symbols as tag or branch names, but:

  • this is painfully slow in repositories with many refs; and
  • this is incorrect (not consistent with "git" behavior) for 40-character hex strings, which Git will never resolve as symbolic names.

Instead, when a symbol is a 40-character hex string, skip "git for-each-ref" and jump directly to "git cat-file --batch-check".

Test Plan
  • Ran bin/repository update in a repository with 65K refs and extra debugging info.
    • Before: took ~30s, three calls to git for-each-ref.
    • After: took ~20s, two calls to git for-each-ref. Same resolution result on queries.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable