From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: Joey Hess <id@joeyh.name>, git <git@vger.kernel.org>
Subject: Re: [PATCH] avoid unncessary malloc of whole file size
Date: Thu, 24 Jan 2019 16:18:44 -0500 [thread overview]
Message-ID: <20190124211844.GC16114@sigill.intra.peff.net> (raw)
In-Reply-To: <xmqqlg39hia8.fsf@gitster-ct.c.googlers.com>
On Thu, Jan 24, 2019 at 01:12:15PM -0800, Junio C Hamano wrote:
> Joey Hess <id@joeyh.name> writes:
>
> > When a worktree file is larger than the available memory, and a clean
> > filter is in use, this avoids mallocing a buffer the whole size of the
> > file when reading from the clean filter, which caused commands like git
> > status and git commit to OOM.
> >
> > Often in this situation the clean filter will produce a short identifier
> > for the file, so such a large buffer is not needed.
> >
> > When the clean filter does output something around the same size as the
> > worktree file, the buffer will need to be reallocated until it fits,
> > starting at 8192 and doubling in size. Benchmarking indicates that
> > reallocation is not a significant overhead for outputs up to a
> > few MB in size.
>
> Problem description first, then solultion. "... this avoids ..." is
> already talking about solution while forcing the readers to know
> what the problem is.
>
> When a worktree file is ... filter is in use, we allocate a
> buffer for the whole size of the file when reading from the
> clean filter. This can force us to overallocate if the clean
> filter is used to radically shrink a huge file and replace it
> with a small token (e.g. git-annex or git-lfs) and lead to OOM
> at the worst case. Reading from the filter and growing the
> buffer as we go would avoid such an unnecessary OOM.
>
> When the clean filter does output ...
> ... few MB in size.
>
> perhaps.
Yeah, I agree that organization is nicer. Other than that, the patch
looks good to me.
-Peff
prev parent reply other threads:[~2019-01-24 21:18 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-22 22:07 git status OOM on mmap of large file Joey Hess
2019-01-24 0:39 ` brian m. carlson
2019-01-24 12:14 ` Jeff King
2019-01-24 17:05 ` Joey Hess
2019-01-24 12:10 ` Jeff King
2019-01-24 12:54 ` Duy Nguyen
2019-01-24 18:38 ` Joey Hess
2019-01-24 19:18 ` Jeff King
2019-01-24 19:28 ` Jeff King
2019-01-24 20:36 ` [PATCH] avoid unncessary malloc of whole file size Joey Hess
2019-01-24 21:12 ` Junio C Hamano
2019-01-24 21:18 ` Jeff King [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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190124211844.GC16114@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=id@joeyh.name \
/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).