On 14/08/2008, rmiller <[EMAIL PROTECTED]> wrote: > > Hi All, > > I wrote the data from a Summary Report to disk. The resulting jtl file is > 194 MB in size. But when I try to open the file in the Summary Report I get > an Out of Memory error. I'm running this on a machine with Windows XP with 2 > GB of RAM. I have increased the heap size to 1 GB (1024MB). > > Is there anything I can do to run this report? >
Is the JTL file CSV or XML format? The XML format is much more resource intensive to read, as currently the whole file is read before it can be processed, whereas CSV is processed a line at a time. If the file is XML, and you cannot re-run the test to generate CSV, then one possible workround would be to convert the XML file to CSV using something like Perl. The XML format is fairly simple so would not be too hard to convert. > Thanks, > Ron > > -- > View this message in context: > http://www.nabble.com/Summary-Report-Out-of-Memory-errot-tp18974134p18974134.html > Sent from the JMeter - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

