vote up 6 vote down star
2

A few times already, I got into situations where one of my SVN repository got corrupt and we could do anything with some versions or branches of the project without really knowing what we did. So I'm asking what can cause a repository to become corrupt?

flag

You are not using file:/// access over a network, or are you? – Bert Huijben Dec 3 '08 at 11:13
Which OS/version? – Thomas Bratt Dec 3 '08 at 14:29
Quite a few, we are in a very heterogeneous environment. – Loki Dec 3 '08 at 17:57

7 Answers

vote up 3 vote down check

There are basically three distinct cases:

  1. Faulty hardware (memory, fs corruption, etc.)
  2. User's with login access to the server can corrupt repository files.
  3. Bugs in Subversion.

Faulty hardware is usually the most difficult to spot, except in the most obvious cases. Case 2 is preventable by limiting login access to the server. Everything else is a bug in Subversion. (This includes compatibility issues between client and the server.) You should never be able to corrupt the repository just by using a Subversion client (not even when there is a bug in the client, IMO).

link|flag
vote up 0 vote down

It seems that incompatibilities between clients may cause problems, more specifically with character sets.

link|flag
vote up 1 vote down

There is always the possibility that the hardware is faulty. Things like bit errors in memory can cause silent corruption instead of simply crashing the computer; if a svn server process is the one affected, the repository can become corrupted.

link|flag
vote up 1 vote down

How can a SVN repository become corrupt?

When the power goes to its head.

link|flag
vote up 0 vote down

This is quite common on File based repos, however if you have a single user / service accessing the repo, this will not happen.

link|flag
Could you expand on that please? – Loki Dec 3 '08 at 14:39
I think I know what you mean. If using something like Windows shares, make sure to only have one user on it. – Loki Dec 3 '08 at 17:59
vote up 0 vote down

I've had it happen a few times. SVN doesn't seem to cope well if the client goes away while the server is taking a long time to do certain things. I don't know the exact details, but I have done a few kill -9s on what I thought were read-only processes and ended up having to run a svnadmin cleanup afterwards before the server would respond again.

link|flag
There are no read-only processes in svn; it always creates a transaction, even for updating. See svnbook.red-bean.com/en/1.0/… for the details. – CesarB Dec 3 '08 at 10:52
svnadmin doesn't have a cleanup command. svn cleanup is a clientside command. In all cases except file:/// repository access a client crash/hang can never harm the server or the data.. And file:/// access over the network is certainly not recommended practice. – Bert Huijben Dec 3 '08 at 11:13
@Bert: Whoops, I meant svnadmin recover. – Ant P Dec 3 '08 at 16:41
vote up 1 vote down

Potential filesystem corruption or someone mucking around with the internal svn directories?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.