RE: [External Mail]Re: Partial-clone cause big performance impact on server
From: 程洋 <hidden>
Date: 2022-08-15 13:15:26
There is a really easy way to reproduce it git clone --filter=blob:none -b master "https://android.googlesource.com/platform/prebuilts/gradle-plugin" Even Google AOSP Gerrit will have this problem. You will find it hang for minutes on checkout
-----Original Message----- From: ZheNing Hu <redacted> Sent: Monday, August 15, 2022 1:16 PM To: 程洋 <redacted> Cc: Jonathan Tan <redacted>; git@vger.kernel.org; 何浩 [off-list ref]; Xin7 Ma 马鑫 [off-list ref]; 石奉兵 [off-list ref]; 凡军辉 [off-list ref]; 王汉基 [off-list ref] Subject: Re: [External Mail]Re: Partial-clone cause big performance impact on server [外部邮件] 此邮件来源于小米公司外部,请谨慎处理。 程洋 [off-list ref] 于2022年8月13日周六 16:00写道:quoted
quoted
quoted
3. with GIT_TRACE_PACKET=1. We found on big repositories(200K+refs, 6m+ objects). Git will sends 40k want.quoted
quoted
quoted
4. And we then track our server(which is gerrit with jgit). We foundthe server is couting objects. Then we check those 40k objects, most of them are blobs rather than commit. (which means they're not in bitmap)quoted
quoted
quoted
5. We believe that's the root cause of our problem. Git sends toomany "want SHA1" which are not in bitmap, cause the server to count objects frequently, which then slow down the server.quoted
quoted
quoted
What we want is, download the things we need to checkout to specificcommit. But if one commit contain so many objects (like us , 40k+). It takes more time to counting than downloading.quoted
quoted
quoted
Is it possible to let git only send "commit want" rather than all theobjects SHA1 one by one?quoted
quoted
On a technical level, it may be possible - at the point in the Git code where the batch prefetch occurs, I'm not sure if we have the commit, but we could plumb the commit information there. (We have the tree, but this doesn't help us here because as far as I know, the tree won't be in the bitmap so the server would need to count objects anyway, resulting in the same problem.) However, sending only commits as wants would mean that we would be fetching more blobs than needed. For example, if we were to clone (with checkout) and then checkout HEAD^, sending a "commit want" for the latter checkout would result in all blobs referenced by the commit's tree being fetched and not only the blobs that are different.It seems your solution require changes from both server side and client side Why not we just add another filter, allow partial-clone alwayssends commit level want?quoted
If we checkout HEAD~1, then client can send "want HEAD~1 HEAD~2".I am interesting about this question too, maybe I can try if we can do this.. ;-) ZheNing Hu
#/******本邮件及其附件含有小米公司的保密信息,仅限于发送给上面地址中列出的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制、或散发)本邮件中的信息。如果您错收了本邮件,请您立即电话或邮件通知发件人并删除本邮件! This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#