ACK_stoverflow
ACK_stoverflow

Reputation: 3305

Resume failed svnrdump dump | svnadmin load

I tried to clone a remote svn repo like this:

svnadmin create /root/repo/
svnrdump dump svn://myserver | svnadmin load /root/repo/

But it failed with:

svnadmin: E140001: Sum of subblock sizes larger than total block content length
* adding path : [snip] ...svnrdump: E210008: Error while replaying commit

That doesn't look like a very meaningful error message. Is there some way I can just resume the dump/load operation?

Upvotes: 3

Views: 1644

Answers (1)

JohnA
JohnA

Reputation: 21

You need to include --incremental something like

svnrdump dump svn://server/ --incremental -r REV:HEAD | svnadmin load /root/repo/

Upvotes: 2

Related Questions