git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: karsten.blees@dcon.de
To: Jeff King <peff@peff.net>
Cc: git@vger.kernel.org, msysgit@googlegroups.com, pro-logic@optusnet.com.au
Subject: Re: [PATCH] update-index/diff-index: use core.preloadindex to improve performance
Date: Tue, 13 Nov 2012 16:33:43 +0100	[thread overview]
Message-ID: <OF88D51EE0.C9BFCE98-ONC1257AB5.005493C9-C1257AB5.00557CDD@dcon.de> (raw)
In-Reply-To: <20121102152616.GD11170@sigill.intra.peff.net>

Jeff King <peff@peff.net> wrote on 02.11.2012 16:26:16:

> On Tue, Oct 30, 2012 at 10:50:42AM +0100, karsten.blees@dcon.de wrote:
> 
> > 'update-index --refresh' and 'diff-index' (without --cached) don't 
honor
> > the core.preloadindex setting yet. Porcelain commands using these 
(such as
> > git [svn] rebase) suffer from this, especially on Windows.
> > 
> > Use read_cache_preload to improve performance.
> > 
> > Additionally, in builtin/diff.c, don't preload index status if we 
don't
> > access the working copy (--cached).
> > 
> > Results with msysgit on WebKit repo (2GB in 200k files):
> > 
> >                 | update-index | diff-index | rebase
> > ----------------+--------------+------------+---------
> > msysgit-v1.8.0  |       9.157s |    10.536s | 42.791s
> > + preloadindex  |       9.157s |    10.536s | 28.725s
> > + this patch    |       2.329s |     2.752s | 15.152s
> > + fscache [1]   |       0.731s |     1.171s |  8.877s
> 
> Cool numbers. On my quad-core SSD Linux box, I saw a few speedups, too.
> Here are the numbers for "update-index --refresh" on the WebKit repo
> (all are wall clock time, best-of-five):
> 
>              | before | after
>   -----------+--------+--------
>   cold cache | 4.513s | 2.059s
>   warm cache | 0.252s | 0.164s
>

Great, and thanks for testing on Linux (I only have Linux VMs for testing, 
and I couldn't get meaningful performance data from those).
 
> Not as dramatic, but still nice. I wonder how a spinning disk would fare
> on the cold-cache case, though.  I also tried it with all but one CPU
> disabled, and the warm cache case was a little bit slower.
> 

Unfortunately, with a 'real' disk, cold cache times increase with the 
number of threads. I've played around with '#define MAX_PARALLEL 20' in 
preload-index.c, with the following results ('git update-index --refresh' 
on WebKit repo, Win7 x64, Core i7 860 (2.8GHz 4 Core HT), WD VelociRaptor 
(300G 10krpm 8ms), msysgit 1.8.0 + preload-index patch + fscache patch):

MAX_PARALLEL | cold cache | warm cache
-------------+------------+------------
no preload   |     49.938 |     9.204 (*)
           1 |     45.412 |     1.622
           2 |     55.334 |     1.123
           3 |     65.973 |     0.982
           4 |     67.579 |     0.889
           5 |     76.159 |     0.827
           6 |     81.510 |     0.811
           7 |     86.269 |     0.858
           8 |     85.862 |     0.827
        ...
          10 |     87.953 |     0.717
        ...
          20 |    176.251 |     0.749

(*) core.preloadindex currently also disables fscache, thus the 9s

With more threads, Windows resource monitor also shows increasing disk 
queue length and response times.

It seems clear that more concurrent disk seeks hurt cold cache performance 
pretty badly. On the other hand, warm cache improvements for #threads > 
#cores are only about 10 - 20%.

I don't know if Linux is better at caching / prefetching directory 
listings (might depend on file system, too), but perhaps MAX_PARALLEL 
should be set to a more reasonable value, or be made configurable (e.g. 
core.preloadIndexThreads)?

Karsten

      parent reply	other threads:[~2012-11-13 15:33 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-30  9:50 [PATCH] update-index/diff-index: use core.preloadindex to improve performance karsten.blees
2012-10-30 10:15 ` Erik Faye-Lund
2012-10-30 22:50   ` Albert Krawczyk
2012-11-02 15:26 ` Jeff King
2012-11-02 15:38   ` Jeff King
2012-11-13 15:36     ` karsten.blees
2012-11-13 16:46       ` Junio C Hamano
2012-11-13 21:51         ` Karsten Blees
2012-11-13 15:33   ` karsten.blees [this message]

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

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=OF88D51EE0.C9BFCE98-ONC1257AB5.005493C9-C1257AB5.00557CDD@dcon.de \
    --to=karsten.blees@dcon.de \
    --cc=git@vger.kernel.org \
    --cc=msysgit@googlegroups.com \
    --cc=peff@peff.net \
    --cc=pro-logic@optusnet.com.au \
    /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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).