You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Jeremy Sutton <je...@thrivent.com> on 2009/03/05 18:27:14 UTC

Loading Dump File Into Subversion

I am experimenting with migrating PVCS data to Subversion. I am using SVN 
Importer provided by Polarion 
(http://www.polarion.org/index.php?page=overview&project=svnimporter) . 
This tool creates a svn dump file which I then load into a Subversion 
repository.

The problem that I am running into is that the dump file created is 5.5MB 
but when I load it into subversion using

svnadmin load -q f:/svnRepos/Repository < dump-file.txt

the disk space used jumps up to 32.3MB. I have tried this many times and I 
get the same result each time. Is there reason why the repository would 
take more space than the dump file? 

I would appreciate any help you can give me,

Thanks, 

Jeremy Sutton 
Systems Analyst 
Platform Engineering 

625 Fourth Ave. S., Minneapolis, MN 55415-1665 
Direct: 612-844-7245 
Cell: 952-212-9809 
Toll-free: 800-847-4836, ext. 37245 
Email: jeremy.sutton@thrivent.com 



This message contains confidential information intended only for the above 
addressees and may contain information that is proprietary or legally 
privileged. If you received this message in error, please notify us and 
delete the original message. You must obtain permission from Thrivent 
Financial to use its logo on all materials. Failure to do so could result 
in legal action.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1273159

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

Re: Loading Dump File Into Subversion

Posted by Stephen Connolly <st...@gmail.com>.
Probably to do with how subversion stores revisions on disk... the file
system you are using may require allocating an entire allocation unit for
each file, and prior to SVN 1.6, subversion can use a few files for each
revision... so even if the revision only includes a 1 byte change, if could
be taking up many Kbytes of disk to store it.

Version 1.6 is reported to have a much better storage system which reduces
the on-disk requirements.

Another change you could look at is decreasing the allocation unit size for
your file system (but that may introduce other side-effects)

-Stephen

2009/3/5 Jeremy Sutton <je...@thrivent.com>

>
> I am experimenting with migrating PVCS data to Subversion. I am using SVN
> Importer provided by Polarion (
> http://www.polarion.org/index.php?page=overview&project=svnimporter) .
> This tool creates a svn dump file which I then load into a Subversion
> repository.
>
> The problem that I am running into is that the dump file created is 5.5MB
> but when I load it into subversion using
>
> svnadmin load -q f:/svnRepos/Repository < dump-file.txt
>
> the disk space used jumps up to 32.3MB. I have tried this many times and I
> get the same result each time. Is there reason why the repository would take
> more space than the dump file?
>
> I would appreciate any help you can give me,
>
> Thanks,
>
> Jeremy Sutton
> Systems Analyst
> Platform Engineering
>
> 625 Fourth Ave. S., Minneapolis, MN 55415-1665
> Direct: 612-844-7245
> Cell: 952-212-9809
> Toll-free: 800-847-4836, ext. 37245
> Email: *jeremy.sutton@thrivent.com* <je...@thrivent.com>
>
>
>
> This message contains confidential information intended only for the above
> addressees and may contain information that is proprietary or legally
> privileged. If you received this message in error, please notify us and
> delete the original message. You must obtain permission from Thrivent
> Financial to use its logo on all materials. Failure to do so could result in
> legal action.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1276190

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].