Flaw in Git bloated Microsoft repository by a factor of 35. (www.techzine.eu)
from Dot@feddit.org to technology@lemmy.world on 29 Oct 2024 10:14
https://feddit.org/post/4223608

#technology

threaded - newest

JonnyRobbie@lemmy.world on 29 Oct 2024 10:39 next collapse

Ahh - the joys of monorepo.

brezel@piefed.social on 29 Oct 2024 11:00 next collapse

The algorithm checked only the last 16 characters of the path, so package differences were not considered.

that is such a C thing to do.

Corngood@lemmy.ml on 29 Oct 2024 11:53 collapse

It’s not as stupid as this blog post makes it sound. This was a hashing function that was intentionally taking the end of the path as the most significant part. This just impacts the order of objects in a pack file, and the size of the compression window needed to compress it.

It’s not actually mistaking one file for another, and their proposed solution is not better in all situations.

brezel@piefed.social on 29 Oct 2024 12:37 collapse

yeah i'm not saying it is stupid or something, but this kind of optimisation is found in C code very often, where people take the first|last N of something because it is most likely good enough :D

drre@feddit.org on 29 Oct 2024 11:25 collapse

maybe I’m missing something but wouldn’t this show up in a diff before pushing?

breadsmasher@lemmy.world on 29 Oct 2024 11:37 collapse

The culprit: name-hash collisions. With files like changelog.md and changelog.json, Git found all kinds of differences with each commit even though there often were none, which gradually added 173GB of unnecessary bloat. However, the changelogs were in completely different packages. The algorithm checked only the last 16 characters of the path, so package differences were not considered.

drre@feddit.org on 29 Oct 2024 13:16 collapse

thanks for the reply, but i think i got that. from the linked article:

For example, if you changed repo/packages/foo/CHANGELOG.json, when git was getting ready to do the push, it was generating a diff against repo/packages/bar/CHANGELOG.json! This meant we were in many occasions just pushing the entire file again and again, which could be 10s of MBs per file in some cases, and you can imagine in a repo our size, how that would be a problem.

but wouldn’t these erroneous diffs not show up in git diff? it seems that they were pushing (maybe automatically?)without inspecting the diffs first