git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: "Pyeron, Jason J CTR (US)" <jason.j.pyeron.ctr@mail.mil>
Cc: "git@vger.kernel.org" <git@vger.kernel.org>
Subject: Re: http.postBuffer set at the server side?
Date: Wed, 28 Aug 2013 23:52:09 -0400	[thread overview]
Message-ID: <20130829035209.GC22788@sigill.intra.peff.net> (raw)
In-Reply-To: <871B6C10EBEFE342A772D1159D132085416127CF@umechphj.easf.csd.disa.mil>

On Wed, Aug 28, 2013 at 11:08:02PM +0000, Pyeron, Jason J CTR (US) wrote:

> We have systems hosting git which are behind proxies, and unless the
> client sets the http.postBuffer to a large size they connections
> fails.
> 
> Is there a way to set this on the server side? If not would a patch be
> possible to fix this?

What would it mean to set it on the server?  It is the size at which the
client decides to use a "chunked" transfer-encoding rather than
buffering the whole output to send at once. So you'd want to figure out
why the server is upset about the chunked encoding.

> jason.pyeron@hostname /home/jason.pyeron/desktop/projectname
> $ git push remote --all
> Username for 'https://server.fqdn':
> Password for 'https://jpyeron@server.fqdn':
> Counting objects: 1820, done.
> Delta compression using up to 4 threads.
> Compressing objects: 100% (1276/1276), done.
> error: RPC failed; result=22, HTTP code = 411
> fatal: The remote end hung up unexpectedly
> Writing objects: 100% (1820/1820), 17.72 MiB | 5.50 MiB/s, done.
> Total 1820 (delta 527), reused 26 (delta 6)
> fatal: The remote end hung up unexpectedly

The server (or the proxy) returns 411, complaining that it didn't get a
Content-Length header. That's because the git http client doesn't know
how big the content is ahead of time (and that's kind of the point of
chunked encoding; the content is streamed).

> jason.pyeron@hostname /home/jason.pyeron/desktop/projectname
> $ git config http.postBuffer 524288000
> 
> jason.pyeron@hostname /home/jason.pyeron/desktop/projectname
> $ git push remote --all
> Username for 'https://server.fqdn':
> Password for 'https://jpyeron@server.fqdn':
> Counting objects: 1820, done.
> Delta compression using up to 4 threads.
> Compressing objects: 100% (1276/1276), done.
> Writing objects: 100% (1820/1820), 17.72 MiB | 11.31 MiB/s, done.
> Total 1820 (delta 519), reused 26 (delta 6)
> To https://server.fqdn/git/netasset-portal/
>  * [new branch]      master -> master

And here you've bumped the buffer to 500MB, so git will potentially
buffer that much in memory before sending anything. Which works for your
17MB packfile, as we buffer the whole thing and then send the exact size
ahead of time, appeasing the proxy.

But there are two problems I see with just bumping the postBuffer value:

  1. You've just postponed the problem. The first 501MB push will fail
     again. You can bump it higher, but you may eventually hit a point
     where your buffer is too big to fit in RAM.

  2. You've lost the pipelining. With a small postBuffer, we are
     streaming content up to the server as pack-objects generates it.
     But with a large buffer, we generate all of the content, then start
     sending the first byte (notice how the progress meter, which is
     generated by pack-objects, shows twice as fast in the second case.
     It is not measuring the network at all, but is streaming into
     git-remote-https's buffer).

If the server really insists on a content-length header, then we can't
ever fix (2). But we could fix (1) by spooling the packfile to disk and
then sending from there (under the assumption that you have way more
temporary disk space than RAM).

However, if you have control of the proxies, the best thing would be to
tweak its config to stop complaining about a lack of content-length
header (at least in cases where you're getting a "chunked"
content-transfer-encoding). That would solve both issues (and without
clients having to change anything).

-Peff

  reply	other threads:[~2013-08-29  3:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-28 23:08 http.postBuffer set at the server side? Pyeron, Jason J CTR (US)
2013-08-29  3:52 ` Jeff King [this message]
2013-08-29  4:40   ` Jason Pyeron
2013-08-29  6:31     ` Jeff King

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=20130829035209.GC22788@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=git@vger.kernel.org \
    --cc=jason.j.pyeron.ctr@mail.mil \
    /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).