ar099968
ar099968

Reputation: 7577

"Chunk delimiter was invalid" or "Could not read chunk size" on Visual SvnServer

ERRORS

When checking out a large project we receive error on a random file in the project:

Could not read chunk size: connection was closed by server

or

Chunk delimiter was invalid

the problem occurs randomly. Most of the time everything works.

SETTING

Svnserver run on port 80, with this custom setting in C:\Program Files (x86)\VisualSVN Server\conf\httpd-custom.conf

SVNInMemoryCacheSize 1000000

<Location /svn/>
  SVNCacheTextDeltas on
  SVNCacheFullTexts on
  SVNCacheRevProps on
</Location>

COMPONENTS

DETAILS

Project is very large, more or less 200 files and over 500 mega bytes

Anyone aware of this issue and how to resolve it?

Upvotes: 2

Views: 863

Answers (1)

Ivan Zhakov
Ivan Zhakov

Reputation: 4041

Do you have any out of memory/crash events in event log?

I suggest you upgrade to VisualSVN Server 3.3.0 due the following change:

I also would like to note that you configured VisualSVN Server to use 1 GB for internal caches: do you really need this? Do you have another RAM on your server for such big cache?

Btw 200 files and 500 MB is pretty small project size for Subversion.

Upvotes: 2

Related Questions