Thread (5 messages) 5 messages, 4 authors, 2019-07-29

Re: Settings for minimizing repacking (and keeping 'rsync' happy)

From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2019-07-29 12:56:39

On Mon, Jul 29 2019, Jeff King wrote:
On Sun, Jul 28, 2019 at 01:41:34AM +0200, ardi wrote:
quoted
Some of my Git repositories have mirrors, maintained with 'rsync'. I
want to have some level of repacking, so that the repositories are
efficient, but I also want it to minimize it, so that 'rsync' never
has to perform a big transfer for the repositories.
Yes, this is a common problem. The solutions I've seen/used are:

  - use a git-aware transport like git-fetch that can negotiate which
    objects to send

  - use a tool that can find duplicated chunks across files. Many
    de-duping backup systems (e.g., borg) use a rolling hash similar to
    rsync to find moveable chunks, but then look up those chunks in a
    master index (whereas rsync is always looking to match chunks in a
    file of the same name). This works well in practice because Git is
    not usually rewriting most of the data, but just shuffling it around
    between files.

    In theory it shouldn't be that hard to tell the receiving rsync to
    look for source chunks not just in the file of the same name, but
    from a set of existing packfiles (say, everything already in
    .git/objects/pack/ on the receiver). But I don't know offhand of an
    option to rsync to do so.
quoted
For example, I think it would be fine if files are repacked just once
in their lifetimes, and then that resulting pack file is never
repacked again. I did read the gc.bigPackThreshold and
gc.autoPackLimit settings, but I don't think they would accomplish
that.

Basically, what I'm describing is the behaviour of not packing files
until the resulting pack would be a given size (say 10MB for example),
and then never repack such ~10MB packs again, ever.

Can this be done with some Git settings? And do you foresee any kind
of serious drawback or potential problem with this kind of behaviour?
You can mark a pack to be kept forever by creating a matching
"pack-1234abcd.keep" file. That doesn't do your automatic "I want 10MB
packs" thing, but if you did it occasionally at the right frequency,
you'd end up with a bunch of 10MB-ish packs.

But there are downsides to having a bunch of packs:

  - object lookups are O(log n) within a single pack, but O(n) over the
    number of packs. So if you get a very large number of packs, normal
    operations will start to suffer. This is mitigated by the new "midx"
    feature, which generates an index for multiple packs.

  - git doesn't allow delta compression across packs. So imagine you
    have ten versions of a file that's 5kb, and each version changes
    about 100 bytes. In a single pack, we'd store one base object, plus
    9 deltas, for a total of about 6kb (5000 + 9*100). Across two packs,
    we'd store ~11kb (2*5000 + 8*100). And the worst case is ten packs
    at 50kb.

    As a more real-world example, try this:

      git -c pack.packsizelimit=10M repack -ad

    In a fresh clone of git.git, the size of the pack directory jumps
    from 88MB to 168MB. And in a time-based split (i.e., creating a new
    10MB pack every week), it may be even worse. The command above
    ordered the objects optimally to keep deltas together and _then_
    split things. Whereas a time-based scheme would likely sprinkle
    versions of a file across more packs.

    It should be possible to loosen this restriction and allow
    cross-pack deltas, but it would be very risky. The assumption that
    packs are independent of each other is implicit in much of Git's
    repacking code, so it would be easy to introduce a bug where we
    generate a circular dependency (object A in pack X is a delta
    against object B in pack Y, which is a delta against object A --
    oops, we don't have a full copy anymore).
The thread I started at
https://public-inbox.org/git/87bmhiykvw.fsf@evledraar.gmail.com/ should
also be of interest. I.e. we could have some knobs to create more
"stable" packs, I know rsync does some in-file hashing, but I don't
if/how that works if you have 1 file split into N where some chunks in
the N are in the one file.

But it's possible to imagine a repacking algorithm that would keep
producing entirely new packs but arrange for it to be ordered/delta'd in
such a way that it optimizes for page-by-page similarity to an older
pack to some degree.

So e.g. in the examples you mention break the delta chain at 5, then
pick it up again once it's 10 etc. So the intermediate packs where it's
6, 7, 8, 9 would have the new stuff at the end.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help