Svn Checkout Fails with "Chunk Delimiter Was Invalid" - What Can Be Done

SVN checkout fails with chunk delimiter was invalid - what can be done?

Have a look to this bug :

http://subversion.tigris.org/issues/show_bug.cgi?id=2647

You may try to update/checkout in small chunk, folder by fodler maybe.

SVN checkout fails with “chunk delimiter was invalid”

Do you have Nod32 installed? If yes then disabling protocol filtering can help. Best solution is to add exception for SVN.

Nod32 -> Advanced setup -> Web and email -> Protocol filtering -> Excluded applications -> check you client, mine is TortoiseProc.exe

Updating from svn repository returns Could not read chunk size error

I was getting the "Could not read chunk size" message from clients on several machines.

The key to figuring it out was this error in the Apache error log:

[Fri May 07 14:26:26 2010] [error] [client 155.35.175.50] Provider encountered an error while streaming a REPORT response.  [500, #0]
[Fri May 07 14:26:26 2010] [error] [client 155.35.175.50] Problem replaying revision [500, #24]
[Fri May 07 14:26:26 2010] [error] [client 155.35.175.50] Can't open file '/usr/site/svnrep/impc/db/revs/16122': Too many open files [500, #24]

The Apache process handling the svn operation was running out of file descriptors. On my Ubuntu server, I fixed it by editing /etc/security/limits.conf and adding this at the bottom:

*               hard    nofile          5000
* soft nofile 5000

Which increases the file descriptor limit from 1024 to 5000. Then I logged in on a fresh shell and confirmed that the limit got increased via ulimit -n. Then restarted Apache.



Related Topics



Leave a reply



Submit