Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread jagdeepjain01
Yes this is useful, not yet thought of this. -- View this message in context: http://jmeter.512774.n5.nabble.com/how-to-maintain-Jsessionid-across-different-thread-groups-tp4520662p4522216.html Sent from the JMeter - User mailing list archive at Nabble.com

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread Deepak Shetty
properties will share across thread groups but you need to change the key per thread otherwise the thread2 will overwrite thread 1 value. Any other shared system like files would have worked as well On Fri, Jun 24, 2011 at 1:36 PM, jagdeepjain01 wrote: > Yes I am doing it Sebb's way

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread jagdeepjain01
Yes I am doing it Sebb's way only but want to check this as well. -- View this message in context: http://jmeter.512774.n5.nabble.com/how-to-maintain-Jsessionid-across-different-thread-groups-tp4520662p4522198.html Sent from the JMeter - User mailing list archive at Nabbl

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread Deepak Shetty
Unless you only have 1 thread, you have to come up with a scheme to append thread number. Why do you not do it as sebb has suggested? On Fri, Jun 24, 2011 at 12:33 PM, jagdeepjain01 wrote: > got something good: > > We can utilize jmeter properties to pass information b/w thread g

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread jagdeepjain01
got something good: We can utilize jmeter properties to pass information b/w thread groups see below: After extracting via post processors you can use bean shell to set the property as below. ${__setProperty(session_id, ${session_id})}; and then in other threads you can utilize by ${__property

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread jagdeepjain01
Thank you all. I agree with Sebb that for a single session structure of the test plan should be as described by you. Different perspective: I can use these three thread groups separating my steps with thread groups and will run the test with lets say 10 threads for a test plan and this will give

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread Bruce Ide
Oh, Yeah! Since I'm using jmeter for functional testing more than for load testing, most of my thread groups are single threads. So I tend to use the two terms interchangeably. I probably should get out of that habit. That set of questions can apply to many things in computer programming, t

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread sebb
On 24 June 2011 15:53, Bruce Ide wrote: > Indeed. Threads are like Singletons. In the face of regular and systematic > misuse (And outright abuse,) they require extra justification to use them. I > like to ask myself: > >  * Why am I using a thread here? I assume you mean Thread Group here rather

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread Bruce Ide
Indeed. Threads are like Singletons. In the face of regular and systematic misuse (And outright abuse,) they require extra justification to use them. I like to ask myself: * Why am I using a thread here? * Can this test be written with only one main thread? * Am I using threads just because the

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread sebb
On 24 June 2011 12:13, jagdeepjain01 wrote: > Hi, > > I am having different thread groups in my jmeter test plan and I want to > maintain same jsessionid across all thread groups. Can anyone help here? > > For example below is the test plan looks like: > > Test Plan >

Re: how to maintain Jsessionid across different thread groups

2011-06-24 Thread Konstantin S.
JSESSIONID ${jes_id} domain path where jes_id will be yours jsession from property the point is you have to add cookie manager to thread and declare JSESSIONID there On Fri, Jun 24, 2011 at 2:13 PM, jagdeepjain01 wrote: > Hi, > > I am having different thread groups in my jmeter test p

how to maintain Jsessionid across different thread groups

2011-06-24 Thread jagdeepjain01
Hi, I am having different thread groups in my jmeter test plan and I want to maintain same jsessionid across all thread groups. Can anyone help here? For example below is the test plan looks like: Test Plan -Thread Group 1 (run once) - Login -Thread Group 2 (I will run

Re: Unable to run multiple thread groups

2011-02-17 Thread SanderW
Hi DJ, At test plan level you have an option 'Run Thread Groups consecutively'. Is that option enabled? Kind Regards, Sander -- View this message in context: http://jmeter.512774.n5.nabble.com/Unable-to-run-multiple-thread-groups-tp3390044p3390693.html Sent from the JMeter - User ma

Re: Passing variables between Thread Groups

2010-06-30 Thread prasanna bhat
This topic has been discussed many a times in the forum.. refer this url for a quick reference: http://old.nabble.com/Passing-variables-between-thread-groups-in-a-test-plan-td28848054.html#a28848054 Thanks, Prasanna On Wed, Jun 30, 2010 at 4:36 PM, Iain_10 wrote: > > Hi, > > I a

Passing variabled between Thread Groups

2010-06-30 Thread Iain_10
generated random number from Thread Group 1 to Thread Group 2? thanks in advance! -- View this message in context: http://old.nabble.com/Passing-variabled-between-Thread-Groups-tp29033244p29033244.html Sent from the JMeter - User mailing list archive at Nabble.com

Passing variables between thread groups in a test plan

2010-06-10 Thread Janine DeBeradinis
Hello - I was wondering if it is possible to pass a variable from one thread group to another in a JMeter Test Plan? For example, my first thread group calls another test via an Include Controller, and then uses variables that were extracted via RegEx from that test, in that thread group (user

Re: Passing variables between thread groups in a test plan

2010-06-10 Thread Deepak Shetty
Hi a. You have to use JMeter properties instead of variables (variables coped to thread) OR b. You can use a shared resource (e.g. a file or static maps in java classes). for e.g. you might write a file as CSV with these variables which the next thread group reads regards deepak On Thu, Jun 10

Re: Ordered execution of multiple thread groups

2010-05-15 Thread prasanna bhat
> > > > I had overlooked the features in the TestPlan. > > > > Now that executing Thread groups sequentially is possible, is it > possible to > > introduce some delay between the execution of consecutive thread groups, > if > > so how

Re: Ordered execution of multiple thread groups

2010-05-15 Thread sebb
Look up Timers and Test Action in the Manual On 15/05/2010, prasanna bhat wrote: > Thanks Sebb, Deepak. > > I had overlooked the features in the TestPlan. > > Now that executing Thread groups sequentially is possible, is it possible to > introduce some delay betwee

Re: Ordered execution of multiple thread groups

2010-05-15 Thread prasanna bhat
Thanks Sebb, Deepak. I had overlooked the features in the TestPlan. Now that executing Thread groups sequentially is possible, is it possible to introduce some delay between the execution of consecutive thread groups, if so how can this be achieved?? Thanks, Prasanna On Sat, May 15, 2010 at

Re: Ordered execution of multiple thread groups

2010-05-15 Thread Deepak Shetty
Specify it on the test plan On May 15, 2010 10:15 AM, "prasanna bhat" wrote: Hi, I have a use case where in the entire test case has to be split into multiple thread groups. Say: +Thread Group 1: ++Components + Thread Group 2 ++Components +Thread Group 3 ++ Components +Thre

Re: Ordered execution of multiple thread groups

2010-05-15 Thread sebb
http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Test_Plan Run thread groups consecutively. On 15/05/2010, prasanna bhat wrote: > Hi, > > I have a use case where in the entire test case has to be split into > multiple thread groups. > > Say: &

Ordered execution of multiple thread groups

2010-05-15 Thread prasanna bhat
Hi, I have a use case where in the entire test case has to be split into multiple thread groups. Say: +Thread Group 1: ++Components + Thread Group 2 ++Components +Thread Group 3 ++ Components +Thread Group 4 ++Components +Thread Group 5 ++Components Is there a feature in JMeter that

Re: Serial/Non-parallel execution of thread groups

2010-04-22 Thread prasanna bhat
Hi Noel, Thanks a lot!! It worked for me.. Regards, Prasanna On Mon, Apr 19, 2010 at 2:02 PM, Noel O'Brien wrote: > Hi, > > This will probably do what you need : > > http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Synchronizing_Timer > > Regards, > Noel > > - "prasanna

Re: Serial/Non-parallel execution of thread groups

2010-04-19 Thread Noel O'Brien
Hi, This will probably do what you need : http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Synchronizing_Timer Regards, Noel - "prasanna bhat" wrote: > Hi, > > I have a use case where in a set of users have to fill in a form and wait > for all other users to co

Serial/Non-parallel execution of thread groups

2010-04-18 Thread prasanna bhat
Hi, I have a use case where in a set of users have to fill in a form and wait for all other users to complete filling the form then all the users will have to submit the form at once. So i plan to have a the action of user filling the form in one thread group and another thread group for performi

Re: Two thread groups with the same name?

2009-10-14 Thread Deepak Shetty
The only time the name of the thread group has mattered(to me) is when I used module controllers. I suppose using the same name would be confusing in this case. regards deepak On Wed, Oct 14, 2009 at 7:54 AM, Andrew Melnyk wrote: > Hi gentleman, > > I'm using two thread groups i

Two thread groups with the same name?

2009-10-14 Thread Andrew Melnyk
Hi gentleman, I'm using two thread groups in my test plan with the same name. Things work fine but i wonder if there is any prohibition i should be aware of? Andrew

Re: [solved] Re: Possible memory leaks when running consecutive thread groups

2009-09-28 Thread Ronan Klyne
m just catering to some of my own hacky code ;-) } OUT.println("Cleared vars."); """ I hope that helps anyone else running into this problem... Ronan sebb wrote: 2009/9/24 Ronan Klyne : Hi all, I've got a fairly sizeable test plan with s

Re: [solved] Re: Possible memory leaks when running consecutive thread groups

2009-09-28 Thread sebb
[i]); > } > OUT.println("Cleared vars."); > """ > > I hope that helps anyone else running into this problem... > > > Ronan > > > sebb wrote: > > > 2009/9/24 Ronan Klyne : > > > > > > > Hi all, > > > &

[solved] Re: Possible memory leaks when running consecutive thread groups

2009-09-28 Thread Ronan Klyne
into this problem... Ronan sebb wrote: 2009/9/24 Ronan Klyne : Hi all, I've got a fairly sizeable test plan with several thread groups in in, configured to run consecutively. These thread groups run the same test (a large test, linked to with a module controller) with increasing num

Re: Possible memory leaks when running consecutive thread groups

2009-09-24 Thread sebb
2009/9/24 Ronan Klyne : > Hi all, > > I've got a fairly sizeable test plan with several thread groups in in, > configured to run consecutively. > > These thread groups run the same test (a large test, linked to with a module > controller) with increasing numbers of users,

Possible memory leaks when running consecutive thread groups

2009-09-24 Thread Ronan Klyne
Hi all, I've got a fairly sizeable test plan with several thread groups in in, configured to run consecutively. These thread groups run the same test (a large test, linked to with a module controller) with increasing numbers of users, from 2 to 20, in steps of 2. I can successfull

Re: ramp up time for a collection of thread groups

2009-08-18 Thread sebb
On 12/08/2009, wsmith84 wrote: > > I know you can set a ramp up time for all threads in 1 thread group, > but I need to stagger the starting of a collection of thread groups- Use the scheduler start-up delay. > each thread group needs to have throughput control > (I have a

ramp up time for a collection of thread groups

2009-08-12 Thread wsmith84
I know you can set a ramp up time for all threads in 1 thread group, but I need to stagger the starting of a collection of thread groups- each thread group needs to have throughput control (I have added a constant throughput timer to each thread group) any ideas? also, how does a gaussian

Re: Synchronisation of Thread Groups

2009-01-28 Thread sebb
uncan Davidson wrote: > Hi > > I have 3 thread groups which have 9, 1 and 1 samplers respectively. I wish > to run these threads numerous times but want them to start each new iteration > in synch. I have tried a synchronisation timer but this didn't work. Any > ideas gr

Synchronisation of Thread Groups

2009-01-28 Thread Duncan Davidson
Hi I have 3 thread groups which have 9, 1 and 1 samplers respectively. I wish to run these threads numerous times but want them to start each new iteration in synch. I have tried a synchronisation timer but this didn't work. Any ideas grateful received. Thanks Duncan -- The Universi

Re: Order of thread groups in a jmeter scenario

2009-01-19 Thread TSurendar
Thank you very much Thanks, Surendar. sebb-2-2 wrote: > > On 19/01/2009, TSurendar wrote: >> >> Hi, >> >> i have created a jmeter scenario with 2 thread groups and set number of >> users and duration seaprately for each group. i have executed this

Re: Order of thread groups in a jmeter scenario

2009-01-19 Thread sebb
On 19/01/2009, TSurendar wrote: > > Hi, > > i have created a jmeter scenario with 2 thread groups and set number of > users and duration seaprately for each group. i have executed this scenario > 3-4 times. each time the order in which the thread groups executed are not >

Order of thread groups in a jmeter scenario

2009-01-19 Thread TSurendar
Hi, i have created a jmeter scenario with 2 thread groups and set number of users and duration seaprately for each group. i have executed this scenario 3-4 times. each time the order in which the thread groups executed are not same.Could any one of you give clarification regarding the order of

Re: Use of Multiple Thread groups in a test plan

2008-09-27 Thread sebb
On 27/09/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Guys, > I was wondering what would be the test scenario when someone > would want t keep more than one Thread group in a test plan ..can you give > me two or three such cases that pertain to Test plans containing > HTTPSa

Use of Multiple Thread groups in a test plan

2008-09-26 Thread Choudhury
Guys, I was wondering what would be the test scenario when someone would want t keep more than one Thread group in a test plan ..can you give me two or three such cases that pertain to Test plans containing HTTPSamplers only Regards, Subhrajyoti Mobile: +919830079545 Mail: [

Re: Multiple thread groups / jtl file

2008-08-13 Thread Eric Tchepannou
Yes, you're right. It works fine as you described. On Mon, Aug 11, 2008 at 1:09 PM, sebb <[EMAIL PROTECTED]> wrote: > On 11/08/2008, sebb <[EMAIL PROTECTED]> wrote: > > On 08/08/2008, Eric Tchepannou <[EMAIL PROTECTED]> wrote: > > > Hi, > > >

Re: Multiple thread groups / jtl file

2008-08-11 Thread sebb
On 11/08/2008, sebb <[EMAIL PROTECTED]> wrote: > On 08/08/2008, Eric Tchepannou <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I have two thread groups in my test plan script. When running it (in > non-gui > > mode) I get a jtl file that does not contai

Re: Multiple thread groups / jtl file

2008-08-10 Thread sebb
On 08/08/2008, Eric Tchepannou <[EMAIL PROTECTED]> wrote: > Hi, > > I have two thread groups in my test plan script. When running it (in non-gui > mode) I get a jtl file that does not contain the response information from > both thread groups requests, but just from one.

Re: Correlate between two thread groups?

2008-08-10 Thread sebb
ic test works, I can send requests in and get results back, but now > I need > to correlate between the two thread groups. That is, I send out order > id's #1 - 100, > and I get the same order id's back, and nothing else. The order id is in > the XML > request sent ou

Correlate between two thread groups?

2008-08-08 Thread Bob Yetman
with the order). I've got the basic test working: Thread group 1 - Soap XML Request Sampler Thread group 2 - JMS Subscriber Sampler The basic test works, I can send requests in and get results back, but now I need to correlate between the two thread groups. That is, I sen

Multiple thread groups / jtl file

2008-08-07 Thread Eric Tchepannou
Hi, I have two thread groups in my test plan script. When running it (in non-gui mode) I get a jtl file that does not contain the response information from both thread groups requests, but just from one. Is it possible to have a single jtl file for each thread group? If yes how? Thanks, Eric.

Re: Synchronizing Timer across Thread Groups

2008-02-29 Thread sebb
with the main part of the test. E.g. if it takes 1 minute for all the logins to complete, run the test for at least 10 minutes. On 29/02/2008, Kam <[EMAIL PROTECTED]> wrote: > I'm testing a web application which involves multiple thread groups; > one thread group for each type o

Synchronizing Timer across Thread Groups

2008-02-28 Thread Kam
I'm testing a web application which involves multiple thread groups; one thread group for each type of role a user can hold in it. I need the users in all thread groups to complete their logins first, before any requests can start to be sent. So I need to test performance independent of

Re: How can JMeter variables be shared between thread groups?

2007-11-12 Thread sebb
Corporate Express Australia Ltd. > Phone: +61-2-93350725, Email: [EMAIL PROTECTED] > > > -Original Message- > From: sebb [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 13 November 2007 2:17 PM > To: JMeter Users List > Subject: Re: How can JMeter variables be shared between thr

RE: How can JMeter variables be shared between thread groups?

2007-11-12 Thread Sonam Chauhan
JMeter Users List Subject: Re: How can JMeter variables be shared between thread groups? On 13/11/2007, Sonam Chauhan <[EMAIL PROTECTED]> wrote: > Hi Sebb: > > > That should work. At the very least the property should be set to > > > > ${some_jmeter_variable } > Yes

Re: How can JMeter variables be shared between thread groups?

2007-11-12 Thread sebb
61-2-93350725, Email: [EMAIL PROTECTED] > > -Original Message- > From: sebb [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 13 November 2007 1:58 PM > To: JMeter Users List > Subject: Re: How can JMeter variables be shared between thread groups? > > On 13/11/2007, Sonam Chauh

RE: How can JMeter variables be shared between thread groups?

2007-11-12 Thread Sonam Chauhan
s, > Sonam Chauhan > -- > Corporate Express Australia Ltd. > Phone: +61-2-93350725, Email: [EMAIL PROTECTED] > > -Original Message- > From: sebb [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 13 November 2007 1:09 PM > To: JMeter Users List > Subject: Re: How can J

Re: How can JMeter variables be shared between thread groups?

2007-11-12 Thread sebb
61-2-93350725, Email: [EMAIL PROTECTED] > > -Original Message- > From: sebb [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 13 November 2007 1:09 PM > To: JMeter Users List > Subject: Re: How can JMeter variables be shared between thread groups? > > On 13/11/2007, Sonam Ch

RE: How can JMeter variables be shared between thread groups?

2007-11-12 Thread Sonam Chauhan
Tuesday, 13 November 2007 1:09 PM To: JMeter Users List Subject: Re: How can JMeter variables be shared between thread groups? On 13/11/2007, Sonam Chauhan <[EMAIL PROTECTED]> wrote: > Can JMeter variables be shared between thread groups? > No; JMeter variables are per-thread. T

Re: How can JMeter variables be shared between thread groups?

2007-11-12 Thread sebb
On 13/11/2007, Sonam Chauhan <[EMAIL PROTECTED]> wrote: > Can JMeter variables be shared between thread groups? > No; JMeter variables are per-thread. The initial settings are copied to all threads when the threads are created; thereafter the variables are independent. That is essent

How can JMeter variables be shared between thread groups?

2007-11-12 Thread Sonam Chauhan
Can JMeter variables be shared between thread groups? A regression testcase I am building needs to 'scrape' a variable from a webpage _only once_, then use it the scraped variable in load testing another webservice. So I built a testcase with 2 thread groups with 'Run ea

RE: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread David Schulberg
minute by the time taken to run the 5 requests.. David Schulberg Object Consulting From: danisade [mailto:[EMAIL PROTECTED] Sent: Tue 17/04/2007 5:55 PM To: jmeter-user@jakarta.apache.org Subject: Loop count > 1 doesn't works properly for thread group

Re: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread Dion Gillard
) every 6 sec 5 users >> send >> their request together. >> this is not what i want!!! >> >> Can someone explain me what am i doing wrong? >> If loop count = 1, the test runs exactly as i expected. I am using ver >> 2.2. >> -- >> View this messa

Re: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread danisade
(instead 5) every 6 sec 5 users >> send >> their request together. >> this is not what i want!!! >> >> Can someone explain me what am i doing wrong? >> If loop count = 1, the test runs exactly as i expected. I am using ver >> 2.2. >> -- >> View this

Re: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread prateeti
g ver 2.2. -- View this message in context: http://www.nabble.com/Loop-count-%3E-1-doesn%27t-works-properly-for-thread-groups-tf3589354.html#a10030889 Sent from the JMeter - User mailing list archive at Nabble.com. - To unsub

Re: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread Dion Gillard
equest together. this is not what i want!!! Can someone explain me what am i doing wrong? If loop count = 1, the test runs exactly as i expected. I am using ver 2.2. -- View this message in context: http://www.nabble.com/Loop-count-%3E-1-doesn%27t-works-properly-for-thread-groups-tf358935

RE: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread Matthew Coventon
2:55 AM To: jmeter-user@jakarta.apache.org Subject: Loop count > 1 doesn't works properly for thread groups My initial configuration: Num of users - 10 ramp up period - 60 loop count - 5 Every user should send request to my server. I expected that every 6 sec 1 user(thread) will send requ

Re: Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread Dion Gillard
count = 1, the test runs exactly as i expected. I am using ver 2.2. -- View this message in context: http://www.nabble.com/Loop-count-%3E-1-doesn%27t-works-properly-for-thread-groups-tf3589354.html#a10030889 Sent from the JMeter - User mailing list archive at Nabble.com. --

Loop count > 1 doesn't works properly for thread groups

2007-04-17 Thread danisade
://www.nabble.com/Loop-count-%3E-1-doesn%27t-works-properly-for-thread-groups-tf3589354.html#a10030889 Sent from the JMeter - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: How can I pass Object between Thread Groups?

2006-12-14 Thread vetalok
;> > initially). >> > >> > I have successfully used a JMeter property to control throughput from >> > a BeanShell server, but the value was updated only infrequently, so I >> > may have been lucky. >> > >> > S. >> > On 14/12/06, vetalo

Re: How can I pass Object between Thread Groups?

2006-12-14 Thread sebb
> S. > On 14/12/06, vetalok <[EMAIL PROTECTED]> wrote: >> >> Hi all >> How can I pass Object between Thread Groups? >> Between samplers I just can do vars.putObject(), and what about >> ThreadsGroup >> Any ideas? >> Thanks >> >> >

Re: How can I pass Object between Thread Groups?

2006-12-14 Thread vetalok
n lucky. > > S. > On 14/12/06, vetalok <[EMAIL PROTECTED]> wrote: >> >> Hi all >> How can I pass Object between Thread Groups? >> Between samplers I just can do vars.putObject(), and what about >> ThreadsGroup >> Any ideas? >> Thanks >> >

Re: How can I pass Object between Thread Groups?

2006-12-14 Thread sebb
, but the value was updated only infrequently, so I may have been lucky. S. On 14/12/06, vetalok <[EMAIL PROTECTED]> wrote: Hi all How can I pass Object between Thread Groups? Between samplers I just can do vars.putObject(), and what about ThreadsGroup Any ideas? Thanks -- View this mess

How can I pass Object between Thread Groups?

2006-12-14 Thread vetalok
Hi all How can I pass Object between Thread Groups? Between samplers I just can do vars.putObject(), and what about ThreadsGroup Any ideas? Thanks -- View this message in context: http://www.nabble.com/How-can-I-pass-Object-between-Thread-Groups--tf2819714.html#a7870154 Sent from the JMeter

Problem with many thread groups in Non GUI mode

2006-10-07 Thread Alex Turner
To: 'JMeter Users List' Subject: TPN POSSIBLE SPAM:Problem with many thread groups in Non GUI mode Problem with many thread groups in Non GUI mode. We have a test plan with 50 threads in Thread Group. Every thread group is modelling a separate user. When we run the test in Non GUI

Problem with many thread groups in Non GUI mode

2006-10-06 Thread Vladimir Tsygankov
Problem with many thread groups in Non GUI mode. We have a test plan with 50 threads in Thread Group. Every thread group is modelling a separate user. When we run the test in Non GUI mode some threads stop running in arbitrary moment of time. We tried to increase Ramp-up time and delay between

Re: How to create a script with multiple Sequential thread groups ?

2006-07-17 Thread sebb
The problem I am having related to organising the script, and working out which components to use to achieve the changes in the number of users. Currently, I use three thread groups - one for each step. However, sometimes it appears as though the second / third thread groups start before the pr

How to create a script with multiple Sequential thread groups ?

2006-07-04 Thread Willingham Geoff
. Currently, I use three thread groups - one for each step. However, sometimes it appears as though the second / third thread groups start before the previous group has finished processing. Can anyone think of anything I could do to the script to reduce this issue ? Cheers Geoff This e-mail is

Re: parallel samplers and nested thread groups

2006-03-03 Thread sebb
t; Thanks Sebb, > > I'm simulating hundreds of users (I guess I'll have to look into > distributed testing) and this is just a small proportion of my test > script; it will have additional thread groups with different use cases. > I thought I may end up using other sa

Re: parallel samplers and nested thread groups

2006-03-03 Thread Greg . Peace
Thanks Sebb, I'm simulating hundreds of users (I guess I'll have to look into distributed testing) and this is just a small proportion of my test script; it will have additional thread groups with different use cases. I thought I may end up using other samplers (beanshell, Java

Re: parallel samplers and nested thread groups

2006-03-03 Thread sebb
ick response. > > Greg > > > > > > sebb <[EMAIL PROTECTED]> > 03/03/2006 14:18 > Please respond to > "JMeter Users List" > > > To > "JMeter Users List" > cc > > Subject > Re: parallel samplers and nested thread

Re: parallel samplers and nested thread groups

2006-03-03 Thread Greg . Peace
y page. Is this right ? By the way thanks for the quick response. Greg sebb <[EMAIL PROTECTED]> 03/03/2006 14:18 Please respond to "JMeter Users List" To "JMeter Users List" cc Subject Re: parallel samplers and nested thread groups Not sure I understa

Re: parallel samplers and nested thread groups

2006-03-03 Thread sebb
Not sure I understand the bit about 4 simultaneous JDBC requests - is that for one login, or 4 separate logins? A given thread (user) can only do one request at a time. S. On 03/03/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > In my load I want to test the following scenario as JDBC

parallel samplers and nested thread groups

2006-03-03 Thread Greg . Peace
Hi, In my load I want to test the following scenario as JDBC requests. As a one off the user logs in (there’s one JDBC request attributed to this) they can then view either a level one, level two or level three summary screen with (60% 30% or 10%) probability for each. Each summary screen is

Re: How can I Synchronize many Thread groups

2005-11-08 Thread sebb
On 08/11/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I have developed a test plan with many thread groups corresponding to > different categories of users. Each category use a group of > functionnalities of the same web app. > These users are all target

How can I Synchronize many Thread groups

2005-11-08 Thread tchris22
Hi, I have developed a test plan with many thread groups corresponding to different categories of users. Each category use a group of functionnalities of the same web app. These users are all targeting the same application server. My load test gives the following test plan: Test Plan Thread

Re: nested thread groups

2005-10-25 Thread Jan Van Lysebeth
lisher > creating book > TG1.2 = thread from ThreadGroup 1 and HTTP Requests for the Chief Editor > creating chapters > TG1.3 = thread from ThreadGroup 1 and HTTP Requests for the Editors to > finish a chapter > ... > > After reading the manual and wiki I released thread groups are e

nested thread groups

2005-10-24 Thread Jan Van Lysebeth
o finish a chapter ... After reading the manual and wiki I released thread groups are either run sequential or parallel, but no nesting is possible. But this leaves me in doubt if JMeter can be used to create my testplan? I hope I made myself clear. Thanks for any help! Jan

reference object across different thread groups

2005-05-24 Thread Filip . L_Ecluse
Hi all, I want to use a beanshell script to start an RMI server after that I want to start a SOAP sampler in a different thread group at the end I want to clean up the RMI server. So in fact I want to be able to pass the reference to the RMI server across different thread groups in order to

Re: Communication between thread groups...

2005-04-27 Thread sebb
er, at present the only way to set them is to use BeanShell, > > > > > > but > > > > > > it would not be difficult to enhance JMeter to add a function or > > > > > > some > > > > > > other test element to set a property from a

Re: Communication between thread groups...

2005-04-27 Thread Michael Stover
would not be difficult to enhance JMeter to add a function or some > > > > > other test element to set a property from a variable. > > > > > > > > > > S. > > > > > On 4/27/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > &

Re: Communication between thread groups...

2005-04-27 Thread sebb
; > > > On 4/27/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > Hello, > > > > > > > > > > I recall a similar issue (relating to thread synchronisation) that was > > > > > discussed recently but I can't for the

Re: Communication between thread groups...

2005-04-27 Thread Michael Stover
> I recall a similar issue (relating to thread synchronisation) that was > > > > discussed recently but I can't for the life of me find the e-mails, so > > > > please forgive me if this is rehashing something that's already been > > > > addressed. >

Re: Communication between thread groups...

2005-04-27 Thread sebb
a similar issue (relating to thread synchronisation) that was > > > discussed recently but I can't for the life of me find the e-mails, so > > > please forgive me if this is rehashing something that's already been > > > addressed. > > > > > > He

Re: Communication between thread groups...

2005-04-27 Thread Michael Stover
t; discussed recently but I can't for the life of me find the e-mails, so > > please forgive me if this is rehashing something that's already been > > addressed. > > > > Here is what I am trying to accomplish in JMeter: I want to have two > > thread groups. One threa

Re: Communication between thread groups...

2005-04-27 Thread sebb
his is rehashing something that's already been > addressed. > > Here is what I am trying to accomplish in JMeter: I want to have two > thread groups. One thread group would contain a given testplan and the > second would contain another simple testplan that simply loops through a >

Communication between thread groups...

2005-04-27 Thread vincent . lortie
nt to have two thread groups. One thread group would contain a given testplan and the second would contain another simple testplan that simply loops through a couple requests for as long as the first thread group is running. My first thought was to declare a user variable that I would

Re: Thread Groups

2004-09-07 Thread Michael Stover
multiple thread groups would be to run radically different test plans simultaneously. -Mike On Tue, 2004-09-07 at 08:46, Coret Bob wrote: > I understand the concept of a Thread Group. What I don't know (and can't find in the > docs) is what happens if you add more Thread Groups t

Thread Groups

2004-09-07 Thread Coret Bob
I understand the concept of a Thread Group. What I don't know (and can't find in the docs) is what happens if you add more Thread Groups to your Test Plan. - Can you run them seperatly? Or do they always run concurrently? - Are multiple Thread Groups only usable if you use the sched

RE: sharing variable values between thread groups

2003-08-30 Thread mstover1
hen access it in the next one. i'm > setting thread groups to run in series. > > > -Original Message- > > From: Archana Bharathidasan [mailto:[EMAIL PROTECTED] > > Sent: Friday, August 29, 2003 9:39 AM > > To: JMeter Users List > > S

RE: sharing variable values between thread groups

2003-08-29 Thread luke cassady-dorion
well that will make the variable name visible, but i want to set the value in one thread group and then access it in the next one. i'm setting thread groups to run in series. > -Original Message- > From: Archana Bharathidasan [mailto:[EMAIL PROTECTED] > Sent: Friday, August

Re: sharing variable values between thread groups

2003-08-29 Thread Archana Bharathidasan
Adding the variable to the test plan parameter should work I guess . --- luke cassady-dorion <[EMAIL PROTECTED]> wrote: > with v 1.9 is there any way to share the value of a > variable between > thread gro

sharing variable values between thread groups

2003-08-29 Thread luke cassady-dorion
with v 1.9 is there any way to share the value of a variable between thread groups? thnx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

  1   2   >