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

restore error svnadmin: E160013: File not found

From: MOKRANI Rachid <rachid.mokrani_at_ifpen.fr>
Date: Fri, 27 Nov 2015 11:33:31 +0000

Hi,

I am trying to migrate a SVN Project without success. I have a lot errors like E160013.....
Any idea help will be very appreciated

Following all I done on CentOS platform.

1. The source project has a size of 60GB and 170 000 revisions installed on a SVN server, Version 1.6.12 (r955767)

Some revisions are missing (I do not know why ...) in the source project and to perform the dump I execute the following script. The dump takes 4 hours.

#! / bin / bash
$ svnadmin dump $old_repo -r1> $save_path/r1.dump

for rev in `seq 170000` 2; do # 170000 is the number of the last revision
  echo $rev
  $ svnadmin dump $old_repo -r$rev --incremental > $save_path/r${rev}.dump
done

The dump goes well and when it is finish (4 hours later) I get a directory of size 170GB (du -sh $save_path)

2. Then on the new SVN server, Version 1.8.11 (r1643975) I do a restore with this script. The restore ends after 25 hours.

svnadmin create $new_repo
$ svnadmin load $new_repo < $save_path/r1.dump
for rev in `seq 162717` 2; do
  echo $rev
$ svnadmin load $new_repo < $path_path/r${rev}.dump
done

This is where the problem begin ....

I get to very very many messages with the error below.

svnadmin: E160013: File not found: transaction '113292-3h08' path .......
....
....
svnadmin: E160013: File not found: transaction '113292-3h0a' path '...
....
svnadmin: E160013: File not found: 113267 revision, path ....
....
....

When the restore finish, a lot of files are missing and the result du -sh $save_path return ONLY 25GB

Help please.

__________________________
Avant d'imprimer, pensez à l'environnement ! Please consider the environment before printing !
Ce message et toutes ses pièces jointes sont confidentiels et établis à l'intention exclusive de ses destinataires. Toute utilisation non conforme à sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. IFP Energies nouvelles décline toute responsabilité au titre de ce message. This message and any attachments are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. IFP Energies nouvelles should not be liable for this message.
__________________________
Received on 2015-11-27 12:33:45 CET

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.