From: "Paweł Sikora" <pawel.sikora@agmk.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: Duy Nguyen <pclouds@gmail.com>, Git Mailing List <git@vger.kernel.org>
Subject: Re: slow git-cherry-pick.
Date: Tue, 03 Dec 2013 20:31:26 +0100 [thread overview]
Message-ID: <2679995.THr9ekVpkO@localhost.localdomain> (raw)
In-Reply-To: <xmqqd2loz92n.fsf@gitster.dls.corp.google.com>
On Monday 25 of November 2013 09:26:40 Junio C Hamano wrote:
> Paweł Sikora <pawel.sikora@agmk.net> writes:
> > On Sunday 24 of November 2013 19:47:10 Duy Nguyen wrote:
> >> On Sun, Nov 24, 2013 at 5:45 PM, Paweł Sikora <pawel.sikora@agmk.net>
wrote:
> >> > i've recently reinstalled a fresh system (fc20-beta) on my workstation
> >> > and observing a big slowdown on git cherry-pick operation
> >> > (git-1.8.4.2-1).
> >> > the previous centos installation with an old git version works faster
> >> > (few seconds per cherry pick). now the same operation takes >1 min.
> >>
> >> What is the git version before the reinstallation?
> >
> > git-1.7.11.3-1.el5.rf.
> >
> > i've checked this version on another machine with centos-5.$latest
> > and it does similar amout of stat/read operation quickly (~6s).
> > this "fast" centos-5 machine has /home on raid-0 (2x500GB) while
> > my "slow (>1min)" workstation has /home on linear lvm (250G+1T).
> >
> > so, i suppose that my "slow" working copy crosses disks boundary
> > or spread over 1TB drive and the random git i/o impacts performance.
> >
> > the question still remains - does the git need to scan whole checkout
> > during picking well defined set of files?
>
> We do update-index to see what local changes you have upfront in
> order to avoid stomping on them (and we do not know upfront what
> paths the cherry-picked commit would change, given that there may be
> renames involved), so the answer is unfortunately yes, we would need
> to do lstat(2) the whole thing.
this is quite weird for me (user). git pull also fetches objects from
server and aborts user's action if working copy contains uncommitted
modifications on files that will be modified by incoming objects.
from the other side, the cherry-pick needs to stat() the whole working
copy to achieve similar precondition. looks like suboptimal implementation.
> Doing that lstat(2) more lazily and do away with the update-index
> might be possible, but I suspect that may be quite a lot of work.
maybe you can use the existing implementation used by 'pull' ?
--
gpg key fingerprint = 60B4 9886 AD53 EB3E 88BB 1EB5 C52E D01B 683B 9411
next prev parent reply other threads:[~2013-12-03 19:31 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-24 10:45 slow git-cherry-pick Paweł Sikora
2013-11-24 12:47 ` Duy Nguyen
2013-11-24 12:48 ` Duy Nguyen
2013-11-24 19:17 ` Paweł Sikora
2013-11-25 17:26 ` Junio C Hamano
2013-12-03 19:31 ` Paweł Sikora [this message]
2013-12-03 20:13 ` Thomas Rast
2013-12-04 1:07 ` Duy Nguyen
2013-12-04 12:46 ` Paweł Sikora
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2679995.THr9ekVpkO@localhost.localdomain \
--to=pawel.sikora@agmk.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=pclouds@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).