svn: REPORT request failed on '/svn/repo/!svn/vcc/default' svn: REPORT of '/svn/repo/!svn/vcc/default': Could not read response body: Secure connection truncated (https://svn.myco.com)
...or like this, apparently random choice as to which:
svn: REPORT request failed on '/svn/repo/!svn/vcc/default' svn: REPORT of '/svn/repo/!svn/vcc/default': Could not read chunk delimiter: Secure connection truncated (https://svn.myco.com)
I had taken the following steps to try to ameliorate the problem already:
Then, after investigating and watching apache while the checkout was running, I noted that the working apache process would grow during the checkout to consume appro. 27m of resident memory and then suddenly vanish when the error occured, briefly showing up in the process list as httpd <defunct>. Closer examination of the apache logs showed that these httpd children were indeed segfaulting.
This is a RHEL5 system using Subversion 1.4.5 compiled from source, being served by the distro's Apache (httpd-2.2.3-7.el5) over SSL using the distro's neon-0.25.5-5.1 at runtime AFAICT (although subversion was compiled with neon source in the tree, from subversion-deps). It is a fsfs repository on an ext3 filesystem (local disk) using mod_auth_kerb to auth to a windows DC.
THE ANSWER
So someone smarter than I continued where I left off and discovered that I was mostly right, there was a memory leak. But when I had tumbled off to get sleep, exhausted, he soldiered on, and tracked that leak to the DAV module (mod_dav_svn) in Apache. The problem, apparently, is that the DAV module was performing the authentication steps for every directory, every time it was accessed, and the leak was leaking during the auth process. Thus, in a large tree, the dozens or hundreds of auth steps would end up leaking the module into instability. The solution was to tell the DAV module not to reauthenticate for every path underneath the main one once the user had been authenticated into the repository. To do this, add the following statement to the apache config (in the vhost entry for the repo, in our case):
SVNPathAuthz off
...and in our case at least, all was well.
Posted by jbz at September 14, 2007 2:29 PM
| TrackBack
Thank you for spotting this. Same trouble with our repo (caused various other errors as well). Now I see the httpd using like 1% of available memory in a big svn commit.
In particular:
svn: Failed to start '/var/www/html/repos/stomp/hooks/pre-commit' hook
Hope this helps others find this page.