Hi our SVN repo is approaching 1/2 a gig. We have nowhere near that amount of code in our production system.

Is it possible to remove old revisions I tried svn dump with a beginning revision number but to no avail. I couldn't import that into a clean svn repository.

We don't need history over a year old.

Any ideas?

link|improve this question

4  
Have you considered buying a larger harddisk? 1 terabyte disks are affordable for most companies these days. – Mark Byers Dec 3 '10 at 21:50
1  
read this stackoverflow.com/questions/681279/… – Ish Kumar Dec 3 '10 at 21:51
Not sure about this, but doesn't SVN slow down as it has to run through all the revs to figure out what the HEAD files actually are? @Mark: Usually the cost of everything is at least double or triple, as redundancy is desired, then the cost of backup space. – Nick T Dec 3 '10 at 21:53
2  
@Nick: No, SVN does not slow down if a file has more revisions. (The SVN project has been self-hosting for a very long time, so it must be the oldest SVN repo around. If many older revision would be annoying, the SVN developers themselves would be the first to notice.) If you waste 5hrs on this, you have the cost of a 1TB disk, including copying data and swapping the physical disks, and enough room to wiggle in a 0.5TB external backup disk. – sbi Dec 3 '10 at 22:00
1  
@Wes also keep in mind the space of a checkout is 2 copies of the files (one in .svn folders, one actual), and that svn repository itself is highly compressed - still, it will give you a ballpark number, and you can compare it to the size of a full checkout a year ago and look for large files... – Joshua McKinnon Dec 3 '10 at 23:00
show 3 more comments
feedback

2 Answers

up vote 3 down vote accepted

You can remove or better "shrink" the history of your svn repo. Say you have 1000 revisions and you want to shrink to only have the revisions from r950-r1000. You can do the following:

svnadmin dump /path/to/current/repo -r950:1000 > small_svn.dump
svnadmin create /path/to/new/repo
svnadmin load /path/to/new/repo < small_svn.dump

However there are two caveat to see:

1st: all your tags and branches will end up as standalone copies and so will take much more space than before(this could end in an even bigger repository, you have to try) - you can use svndumpfilter to remove tags and branches, however, than you need the old repository to get information of these tags/branches

2nd: If your branches stay in your new repository, all mergeinfo will show wrong revisions as your new repository starts with revision 0 again and also all branches are gone in version history (due to pt. 1)

Much better solution:

  • find the revision(s) which are responsible for the growth of your repository(search for large files in your repository datastorage usually located under: /path/to/repo/db/revs/[0...X]).
  • check the log history of these revisions and locate the files which are responsible
  • If you do not need these files, remove them via svndumpfilter
  • teach your user how to avoid committing unnecessary, large files

Otherwise you will have to shrink your repository in several weeks again! *

link|improve this answer
feedback

How can your business afford to waste time on this instead of just buying a bigger disk, moving the stuff over, and get on? 1TB costs the equivalent of 1-2 man-hours plus the time needed to move the data and swap the disks.

link|improve this answer
Well I wanted to back it up each night – Wes Dec 3 '10 at 22:07
@Wes: 366 * 0.5 Gig < 1 Terabyte. – Mark Byers Dec 3 '10 at 22:09
First the cost of a disk is much more than the cost of a disk. Remote hosting. Secondly I struggle to get them to pay £30 on a book. Bandwidth isn't free either, and the time to transfer 1/2 a gig every time isn't trivial either. Oh and the rate of growth is crazy. We had most of the work done in the first year and the size of the repo was 80megs 1 year later its arround 500 – Wes Dec 3 '10 at 22:22
Supposedly, remote hosting is done because it's cheaper than hosting yourself? Then how could "it's more expensive because we're remote-hosting" ever be a valid argument? – sbi Dec 3 '10 at 22:34
And as for £30 for a book: I used to have a boss who, when asked to buy a certain book would ask back "Does this have a chance to save you X hours?" with the book's price/X being my monthly rate. When answered with "Yes", he'd buy the book. (I never had to answer with "No", but I suppose that, had I done so, he'd probably told me to close his office's door and sit down, so he could have a talk with me to find out why I come bothering him about a book that I don't think is worth its money. :) To bad I had to leave there.) – sbi Dec 3 '10 at 22:35
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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