All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: Thomas Lucas <toml@zuken.co.uk>
Cc: git@vger.kernel.org
Subject: Re: Git Garbage Collect Error.
Date: Thu, 12 Jul 2012 05:32:21 -0400	[thread overview]
Message-ID: <20120712093221.GA4443@sigill.intra.peff.net> (raw)
In-Reply-To: <4FD86AF8.1050100@zuken.co.uk>

On Wed, Jun 13, 2012 at 11:27:04AM +0100, Thomas Lucas wrote:

> Hopefully this is the right place to send bug reports... The
> community page "http://git-scm.com/community" suggests that it is.

It is the right place. Sorry that you did not get any response before
now.

> During garbage collection (git gc) it encountered the following error:
> 
> git gc | git gc --prune :
> 
>    Counting objects: 856758, done.
>    Delta compression using up to 2 threads.
>    fatal: Out of memory, malloc failed (tried to allocate 303237121 bytes)
>    error: failed to run repack

Packing can be memory hungry if you have a lot of large objects (we may
hold several large objects in memory while comparing them for deltas).
It is also worse with 2 threads, as they will be working simultaneously,
but in the same memory space.

> The compression gets over 90% of the way through before this error
> occurs, but I don't think any compression results are kept, because
> when you repeat it has the same amount of work to do.

Right. Nothing is written during compression; we are just coming up with
a list of deltas to perform during the writing phase.

> My system is XP64 2 core with 4Gb of memory and plenty of virtual memory.

Unfortunately, I believe that the msysgit build is 32-bit, which means
you are probably not even getting to use all 4Gb of your address space
(my impression is that without special flags, 32-bit Windows processes
are limited to 2Gb of address space).

I'd first try doing the pack single-threaded by setting the pack.threads
config option to 1. If that doesn't work, you might try setting
pack.windowMemory to limit the delta search based on available memory
(usually it is limited by number of objects). If the large blobs are
ones that do not delta well anyway (e.g., compressed media files), you
might also consider setting the "-delta" attribute for them to skip
delta compression entirely.

-Peff

  reply	other threads:[~2012-07-12  9:32 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-13 10:27 Git Garbage Collect Error Thomas Lucas
2012-07-12  9:32 ` Jeff King [this message]
2012-07-14  3:36   ` sascha-ml
2012-07-12 12:34 ` Philippe Vaucher

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=20120712093221.GA4443@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=git@vger.kernel.org \
    --cc=toml@zuken.co.uk \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.