[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: missing db/revs, db/revprops and db/current files?

From: Ryan Schmidt <subversion-2008c_at_ryandesign.com>
Date: Fri, 19 Sep 2008 13:33:59 -0500

On Sep 18, 2008, at 12:58 PM, Ritenour, Russell C. (Contr) wrote:

> I'm normally a user of SVN and inherited a working system. I made
> the horrible mistake of assuming that backups were being done
> correctly.
>
> Our backup software failed AND we lost our SVN server. I was able
> to use KNOPPIX to pull the svn repository sans some files. We are
> missing db/current and the db/revs directory is missing some
> numbers (e.g. has versions 1-17, missing 18, has versions 19-32,
> missing 33-47, etc...).
>
>
> I ran svnadmin recover on the repository (after creating a db/
> current containing "3556 1 1")
>
> I then tried to run "svnadmin verify" and continually bump into the
> missing versions.
>
> What is the best way to recover the repository? Or am I truly lost?

Well, it's not good.

The files in db/revs are the revision data. These are stored as a
difference against a previous revision (though not necessarily the
immediately previous revision; see the skip-deltas algorithm [1]).
According to skip-deltas, revision 19 is based on 18, so a missing
revision 18 can cause problems for revision 19. Revision 48 is based
on revision 32, so missing revisions 33-47 won't impact that. But if
other higher revisions are missing, there may be extant revisions
which will be broken because of this. You'll have to try and see.

The files in db/revprops are the properties for the corresponding
revision. These aren't stored as diffs but as complete files. If
you're missing the revprop file corresponding to a rev file that you
do still have, you may need to reconstruct the revprop file before
you can recover the remaining revisions. It shouldn't be too hard to
create a valid revprop file, since it's a fairly readable text
format. You'll just have to make up the date, author and log message.
You could use an author and log message like "recovered" for example,
and either try to pick a date that makes chronological sense given
the remaining revisions or just set it to some random date in the
past, or even today's date. Using non-chronological revisions will
mean that you cannot use the '-r{date}' or '-r{fromdate}:{todate}'
revision syntax to find revisions, so consider whether that's
important to you.

To recover what's left of the repository, you would have to dump the
revisions that remain, in chunks. For example, since you're missing
revisions 18 and 33-47:

svnadmin dump -r1:17 /path/to/brokenrepo > dump1-17
svnadmin dump -r19:32 --incremental /path/to/brokenrepo > dump19-32
svnadmin dump -r48:xx --incremental /path/to/brokenrepo > dump48-xx

If you're lucky and this works, then you can create a new repo and
try loading these dumps into it:

svnadmin create /path/to/newrepo
svnadmin load /path/to/newrepo --ignore-uuid < dump1-17
svnadmin load /path/to/newrepo < dump19-32
svnadmin load /path/to/newrepo < dump48-xx

If you're lucky and that works too, then you can move over any hook
scripts or configuration files from the broken repo to the new one
and start using the new repo. Anybody with existing working copies
will have to move them aside and check out new ones, since we've
assigned the new repo a new UUID since it is not the same as your old
repo. You should keep everybody's old working copies around, in case
they had uncommitted changes (they can check out new working copies
and manually move over their changes and commit them). Also it's
possible that somebody's working copy contains some data that was
lost from your original repo; if so, they can manually identify those
changes and commit them again.

[1] http://svn.collab.net/repos/svn/trunk/notes/skip-deltas

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-09-19 20:34:26 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.