I have a large Subversion repository with nearly 15gb of data spread across ~500,000 files. Now I need to checkout this repository to a remote host which would take days to complete.

The host I'm checking out to already has a complete copy of the data in the repository. But seeing as the files weren't checked out directly from the repo, they do not constitute a working copy (no ".svn" folders).

I'd like to avoid copying all this data across the network, especially when it already exists on the target host. Is there a trick I can use that will turn a preexisting directory into a working copy without replacing the local files with identical copies from the repository?

Thanks!

link|improve this question

25% accept rate
Just out of curiosity: What are you keeping in that repository? I've never heard of a repo this large. – sleske May 14 '09 at 9:41
Raw audio, mostly spoken word. – weston May 14 '09 at 17:09
What this sounds like is "how to get the .svn directories back after cleaning them out" or "I did an export that took days. But I wanted the .svn files, too..." – lilbyrdie Jun 22 '11 at 14:23
feedback

6 Answers

There is the relocate command: http://svnbook.red-bean.com/en/1.1/re27.html

EDIT: If the local files aren't linked to a repository then you could create a local repository, import the files into it and then use the relocate command.

Alternatively if you have physical access to both machines you can you check out the repository locally and then copy the files to the remote machine via a external HD.

link|improve this answer
I don't see how you could use relocate here. relocate only updates metada in the .svn folders. There are no .svn folders according to OP. – Wim Coenen May 14 '09 at 0:34
See my edit for a workaround for this. – Jonathan Parker May 14 '09 at 0:50
I doubt this will work, because you can only relocate to a repository with same repository UID – Peter Parker May 14 '09 at 12:41
The documentation I linked to above says: If the working copy still reflects the same repository directory, but the location of the repository itself has changed, then use svn switch --relocate. – Jonathan Parker May 17 '09 at 23:25
feedback

You could try using rsync if you already have a working copy under svn control somewhere else on the network.

link|improve this answer
This isn't such a bad idea but, as mentioned in another comment, the .svn/text-base folder contains pristine copies of all your repo files, so rsync would end up copying all the data over anyway. You could possibly tell rsync to ignore replicating "text-base" and then script something to populate the "text-base" once the .svn folders are synced. – weston May 14 '09 at 18:41
feedback

I don't believe there's a solution without transferring those 15 GBs to the destination. It would probably be faster and easier to copy the repository there and do a local checkout.

link|improve this answer
Well, funny you suggest this because I tried checking out just a local working copy on the server itself. Even a local checkout takes well over a day to complete and this wouldn't include the time it would take to dump/copy/load into a new repository on the remote host. – weston May 14 '09 at 18:31
It may mean that subversion isn't the right tool for you... – Gleb May 15 '09 at 18:02
feedback

Use:

svn co http://myRepo --force

link|improve this answer
On a CentOS5.5 system this gives me Subcommand 'checkout' doesn't accept option '--force' – Stefan Lasiewski Apr 14 '11 at 21:38
If I'm reading the docs on the force correctly, this forces the checkout -- as in, it forces the download of files, even if the local file exists. While this will work for small repos, the OP specifically doesn't want to download or copy the files again. – lilbyrdie Jun 22 '11 at 14:22
You're right, sorry :) – Danita Jun 27 '11 at 16:17
feedback

None of the native svn commands will checksum existing files for matches and not download them.

What protocol are you using to access the repository? If it is https, that may be your problem. Try the native svn protocol (using svnserve), or svn+ssh. Or perhaps even do a checkout via a file:// URL on the server hosting the svn repo, andthen use rsync to transfer across the network.

So long as you are not paying for the bandwidth per-byte, it might just make sense to let "svn co --force" run under nice or (START /LOW on Windows) and not waste your own time. It will not make anything on the local filesystem unavailable during the checkout process.

Finally, I can't figure out why your checkout is so slow... we have 500K file repositories that checkout in ~6 minutes via https on a gigabit LAN. Granted all the files are much smaller (1 GB total). How far away from the server are you in terms of latency?

link|improve this answer
feedback

You could just checkout the repository locally, then transfer only the .svn directories (careful, they contain copies of the workspace files, obviously you don't want to copy those). That should work, as you would have the exact files of a correct working copy.

Of course you'd have to write some kind of script to transfer the .svn files. On a Unix system you could do it with find and friends.

link|improve this answer
-1 If he has around 500,000 files imagine to move all the .svn folders 'carefully'? – victor hugo May 14 '09 at 0:56
Of course you would use some script. The "careful" was to warn of a potential problem when writing such a script. – sleske May 14 '09 at 9:39
I considered this, but as Victor pointed out this could be pretty tedious with such a large repo. Also, the ".svn/text-base" folders of the working copy contain pristine copies of all files in the repo, so even copying just the .svn folders will still require a complete copy of the data. – weston May 14 '09 at 18:27
Yes, of course, that's why I mentioned a script. I'm not expecting anyone to copy it all by hand :-/. And of course you wouldn't copy the stuff under text-base, you'd only create the emtpy directories '.svn/text-base', then copy the existing files from the destination into text-base. Yes, that might require a bit of programming, but it still beats recopying 15 GiB. – sleske May 14 '09 at 23:17
feedback

Your Answer

 
or
required, but never shown

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