Hi
Your simplest solution is to use different thread groups

Thread Group (1 thread, Loop Forever)
     One HTTP Sampler
        Timer (Delay = 15 secs)
Thread Group (6 thread , loop forever)
    Interleave controller  (6 in parallel but only one at any one time)
        Six HTTP Samplers
        Test Action Sampler (Pause , Delay = 20 secs)
  Thread Group Controller (1thread ,Loop Forever)
     One HTTP Sampler
        Timer (Delay = 60 secs)

In your test,the first loop controller never quits (you have said forever)

Im think you could achieve what you want with a single thread group , but Im
not sure the delays would work as you want ...
Thread Group 8 threads, forever
    Interleave
      Simple Controller
         Req 1
         Delay 1
      Interleave
         Simple Controller
              Req 2
              Req 3
              ...
              Req 7
              Delay 2
     Simple Controller
             Req 8
             Delay 8

regards
deepak
On Wed, Sep 16, 2009 at 9:19 PM, Jatin Davey <[email protected]> wrote:

> Hi
>
> I have a requirement as below:
>
> 1. One HTTP Get Sampler to execute every 15 secs
> 2. Six HTTP Get Samplers to execute every 20 secs
> 3. One HTTP Get Samplers to execute every 60 secs
>
> I had the controllers organization as below in JMeter:
>
> Thread Group
>   Loop Controller (Loop Forever)
>      One HTTP Sampler
>         Timer (Delay = 15 secs)
>   Loop Controller (Loop Forever)
>      Six HTTP Samplers
>         Test Action Sampler (Pause , Delay = 20 secs)
>   Loop Controller (Loop Forever)
>      One HTTP Sampler
>         Timer (Delay = 60 secs)
>
> When i execute i see that only the first sampler gets executed and the
> others do not get executed. I want my requests such that there are 8
> requests going to my Web App , the rate of individual samplers being as per
> the requirment mentioned above.
>
> I tried many different combinations such as simple controller , Random
> Controller and Throughput controller. Throughput controller was near to my
> solution but it loaded my Web App way too much.
>
> Can someone please help me on this.
>
> Thanks
> Jatin
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to