Issue creating large # of nodes in a transaction. (SWIG perl bindings)
From: Dan Mercer <dmercer_at_8kb.net>
Date: 2006-03-11 00:08:56 CET
Hi folks,
I have a tool that imports files into a subversion repository. Each
* Subversion version 1.3.0 (r17949)
And here is a very simple recipe to reproduce what I am seeing. Run on a
#!/usr/local/bin/perl -w
use strict;
use SVN::Core;
$|=1;
my $repos_path = shift;
my $svn = SVN::Repos::open($repos_path);
my $nc = 0;
-- output: $ svnadmin create --fs-type fsfs /tmp/test1 $ ./test.pl /tmp/test2 2048 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26, ...SNIP... 1406,1407,1408,1409,1410,1411,Abort trap (core dumped) $ $ ./test.pl /tmp/test I'm not sure what I'm doing wrong here, but any pointers would be helpful, even if you can just verify that this code behaves the same in your environment. It could be that my assumption that a single transaction should be able to handle many (certainly more than a few thousands) events is incorrect as well. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org For additional commands, e-mail: users-help@subversion.tigris.orgReceived on Sat Mar 11 00:08:21 2006 |
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.