tags:

views:

1743

answers:

1

Hi. We have a simple performance test flow in an application.

  1. We login
  2. Search based on some criteria
  3. repeat searches for different parameters.

We are using Jmeter to do a performance testing. We need to have multiple threads running to test this in a scalable manner.

The way we currently have this arranged is:

-Test Plan
  - Thread Group
      - Cookie Manager
      - Login To application
      - Search on param 1
      - Search on param 2
  - results summary table
  - Summary report

So basically we have summary return table and report present on plan level while cookie manager is present on thread group level.

When I run for one thread it runs fine and completes well. When I scale it to multiple threads, as soon as the next thread kicks off, the session for the last thread is invalidated. This causes failures for all the already running threads due to newly spawned thread.

I reached this result with observation: 1. If I run multiple threads, only last thread has got valid responses in result summary tree 2. If I run with 2 threads with ramp up period as 10 seconds, which means each thread gets time to finish itself, then both of them run successfully.

As per my understanding each thread login's into application and since cookie manager is at thread level, the values will be maintained for session id for each thread respectively? But what is causing the override of the session id value between threads?

Any help will be much appreciated.

+2  A: 

Copied from jmeter documentation:

The last element is a HTTP Cookie Manager . A Cookie Manager should be added to all web tests - otherwise JMeter will ignore cookies. By adding it at the Thread Group level, we ensure that all HTTP requests will share the same cookies.

From chapter "4.2.2 Logic Controllers" in http://jakarta.apache.org/jmeter/usermanual/test%5Fplan.html.

EDIT: I guess you should use http://jakarta.apache.org/jmeter/usermanual/component%5Freference.html#Simple%5FController to group your requests together with Cookie Manager.

Superfilin