Skip to Content.
Sympa Menu

grouper-dev - import memory error

Subject: Grouper Developers Forum

List archive

import memory error


Chronological Thread 
  • From: Mark Weber <>
  • To:
  • Subject: import memory error
  • Date: Fri, 06 Oct 2006 15:41:34 -0500

Another diff.

the max memory wasn't specified in the import/export sections of the build.xml file. This caused an Out of memory error when importing large files.

--Mark

--
.Mark G. Weber----------------------Division of Information Technology.
|
University Of Wisconsin - Madison|
|608/263.8945 Room 3159 Computer Science|
`---------------------------------------------------------------------'
Index: build.xml
===================================================================
RCS file: /home/cvs/i2mi/grouper/build.xml,v
retrieving revision 1.131
diff -u -8 -p -r1.131 build.xml
--- build.xml 5 Oct 2006 19:34:51 -0000 1.131
+++ build.xml 6 Oct 2006 20:37:45 -0000
@@ -654,31 +654,33 @@
<target name="xml-export"
description='Perform XML export of Groups Registry [Pass
-Dcmd="command line arguments"]'
depends="ensure-cmd"
>
<java fork="true"
classpathref="project.classpath"
classname="edu.internet2.middleware.grouper.XmlExporter"
failonerror="true"
+ maxmemory="${memory.max}"
>
<arg line="${cmd}"/>
</java>
</target>
<!-- xml-export -->

<!-- xml-import -->
<target name="xml-import"
description='Perform XML import of Groups Registry [Pass
-Dcmd="command line arguments"]'
depends="ensure-cmd"
>
<java fork="true"
classpathref="project.classpath"
classname="edu.internet2.middleware.grouper.XmlImporter"
failonerror="true"
+ maxmemory="${memory.max}"
>
<arg line="${cmd}"/>
</java>
</target>
<!-- xml-import -->


<!-- TODO what are these doing down here? -->

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature




Archive powered by MHonArc 2.6.16.

Top of Page