Re: Minimizing repository growth when large files change....
From: Peter Valdemar Mørch <peter_at_morch.com>
Date: 2004-12-28 22:27:11 CET
Peter Valdemar Mørch swp5jhu02-at-sneakemail.com |Lists| wrote:
OK, well, I discovered it myself... (Why did it have to happen *after* i
First off, I was using --fs-type bdb. And so removing the logs with
Second, now 1.1.X is available on Debian, so I tried the fsfs. And
The fsfs repository uses 11% of the space the bdb repository does - for
bdb fsfs
Repository size vs.
Peter
-- Peter Valdemar Mørch http://www.morch.com -- Script to reproduce: #!/bin/bash file1=f1 file2=f2 # file1=F1.gz # file2=F2.gz rm -rf rep dir/ # svnadmin create --fs-type fsfs rep svnadmin create --fs-type bdb rep export r=file://`pwd`/rep svn mkdir -m "" $r/dir svn co $r/dir cp $file1 dir/file svn add dir/file svn ci -m "" dir svnadmin list-unused-dblogs rep/ | xargs rm -f echo echo "Repos size 1" calc.pl `du -s --block-size=1 rep | sed s/rep//` / 1024 / 1024 svn ci -m "" dir cp $file2 dir/file svn ci -m "" dir svnadmin list-unused-dblogs rep/ | xargs rm -f echo echo "Repos size 2" calc.pl `du -s --block-size=1 rep | sed s/rep//` / 1024 / 1024 --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org For additional commands, e-mail: users-help@subversion.tigris.orgReceived on Wed Dec 29 07:40:26 2004 |
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.