Re: [PATCH v3 0/4] multi-pack-index: fix verify on large repos

2019-03-25 Thread Jeff Hostetler
On 3/22/2019 1:37 AM, Junio C Hamano wrote: "Jeff Hostetler via GitGitGadget" writes: Teach "multi-pack-index verify" to handle cases where the number of packfiles exceeds the open file handle limit. The first commit fixes a problem that prevented the LRU-style close_one_pack() mechanism f

Re: [PATCH v3 0/4] multi-pack-index: fix verify on large repos

2019-03-21 Thread Junio C Hamano
"Jeff Hostetler via GitGitGadget" writes: > Teach "multi-pack-index verify" to handle cases where the number of > packfiles exceeds the open file handle limit. > > The first commit fixes a problem that prevented the LRU-style > close_one_pack() mechanism from working which caused midx verify to r

[PATCH v3 0/4] multi-pack-index: fix verify on large repos

2019-03-21 Thread Jeff Hostetler via GitGitGadget
Version 3 drops the packed-git commit I mentioned earlier, simplifies the finish_if_sparse API as suggested by Eric, and splits the object sort commit into 2 commits: one to add the additional progress indicators and one to sort the objects by packfile. This makes it easier to follow. ---