Note that regarding :
jmeter.save.saveservice.sample_count

I opened *Bug 
53742*<https://issues.apache.org/bugzilla/show_bug.cgi?id=53742>which
I fixed.

So now I get results but other issues remain.


Regards
Philippe

On Mon, Aug 20, 2012 at 1:09 AM, Philippe Mouawad <
[email protected]> wrote:

> Hello Milamber , sebb,
> I was trying to play with new RespTimeGraphVisualizer by loading an
> existing result file at CSV format.
>
> File is rather big (400 mo) so it crashed with OOM with Xmx512m.
> Issue comes from internalList which holds around 600000 items.
>
> Looking at code I don't really understand its usage, Milamber could you
> explain a bit ?
> You say:
>             // Internal light list to permit play with interval and label
> filter without a reading file results
>
> particularly:
>                 if (internalList.size() >= 2) {
>                     synchronized (lockInterval) {
>                         @SuppressWarnings("unchecked")
>                         ArrayList<SampleResult> tempList =
> (ArrayList<SampleResult>) internalList.clone();
>                         this.clearData();
>                         for (SampleResult sr : tempList) {
>                             this.add(sr);
>                         }
>                     }
>                 }
>
>
> Other things I noticed:
>
>    - If I set in Y Axis , Scale maximum value to a number < 1000 it is
>    not taken into account, is this voluntary ?
>    - In my test config I had set
>    jmeter.save.saveservice.sample_count=true , this seems to break Response
>    Time graph because in CSVSaveService we have:
>       - if (saveConfig.saveSampleCount()) {
>                       result = new StatisticalSampleResult(timeStamp,
>       elapsed);
>                   } else {
>                       result = new SampleResult(timeStamp, elapsed);
>                   }
>       - This build then StatisticalSampleResult and getTime always
>       returns 0
>
> --
>
> Cordialement.
> Philippe Mouawad.
>
>
>
>


-- 
Cordialement.
Philippe Mouawad.

Reply via email to