On Mon, 28 Nov 2011 18:15:51 +0100, Martin Kutter <martin.kut...@fen-net.de> wrote: > Hello, > > I received a strange error when attempting ro dump a large repository: > > "svnadmin dump REPO" results (repeatably) in a IOT/Abort trap error after > rev22615 > "svnadmin dump --deltas REPO" repeatably yields a IOT/Abort trap error > after rev3142
I finally got it resolved > OS is AIX 7.1, Subversion version is 1.6.17 with FSFS backend built from > source, the > repository version is 4 (1.4). On AIX, there's not only ulimit, but there are additional memory constraints for processes defined using the LDR_CNTRL environment variable. Setting LDR_CNTRL=MAXDATA=0x80000000 means a Limit of 2GB for 32bit processes, which was (in my case) enough. The high memory requirement is probably a result of issue #3593 , http://subversion.tigris.org/issues/show_bug.cgi?id=3593 , and thus should disappear in 1.7. As a workaround, I'll dump in chunks. Martin