... what happens if someone tries to commit during a svnadmin dump REPOS_PATH?

The subversion book doesn't say anything about that.

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

A concurrently running svnadmin dump will not interfere with new commits. The resulting dump file, however, will only contain the revisions that were present in the repository when you started svnadmin dump.

You'll need to grab commits made while the initial dump was running with a second dump.

Other options you might be interested in:

svnadmin hotcopy
Unlike a dump file, this will include conf and hooks.

svnsync
For maintaining a read-only clone of an existing repository.

Of the three, I make the most use of svnsync. It allows me to keep a second copy of our repositories on a separate machine, which is closer to me. This makes for a nice backup, as well as for faster checkouts. (If the svnsync clone and the original have the same UUID, you can svn co svn://the-clone and then svn switch --relocate svn://the-clone https://the-original)

link|improve this answer
I didn't know dumping won't interfere with repo changes. Thanks for telling us. (Do you have a reference for this?) – sbi Oct 17 '09 at 13:12
No, I don't have a reference, though I recall it coming up in a discussion on the subversion user's mailing list some time ago. I've looked, but can't find the thread. So, I just tried it out by making commits to one of my repositories while I was dumping it. – bendin Oct 17 '09 at 14:18
The thread I was thinking of is the one that starts with this message: subversion.tigris.org/ds/… but be warned, the OP is aggressively stupid. – bendin Oct 17 '09 at 14:30
@bendin: Thanks for the pointer! – sbi Oct 18 '09 at 12:22
feedback

Your Answer

 
or
required, but never shown

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