Fix slow clone/fetch from git remotes - #11247
Merged
Merged
Conversation
Contributor
|
@elianddb DOLT
|
Contributor
Contributor
Contributor
Contributor
Contributor
Contributor
Contributor
macneale4
reviewed
Jun 26, 2026
macneale4
left a comment
Contributor
There was a problem hiding this comment.
This smells very wrong to me. I don't think changes which are only related to git+ remote types should be so invasive to bs_persister.go.
Ref counting of anything is almost always a sign that something is wrong, and given the sentence above I think it merrits some discussion about that the actual problem is.
Contributor
Contributor
Contributor
reltuk
reviewed
Jul 2, 2026
reltuk
left a comment
Contributor
There was a problem hiding this comment.
Looks good to me. One comment about the Reader() implementation which I think is a pretty near-at-hand fix.
Contributor
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
|
@coffeegoddd DOLT
|
This was referenced Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reading a git-backed table file went chunk by chunk, and because git cat-file cannot serve a byte range, each read re-streamed the whole object from the start. Fetching a large table spawned thousands of git processes and stalled.
git cat-file --batch-checkcallFix git remote clone/fetch stalls importing refs/dolt/data #11236