Questions tagged [threadgroup]

121 questions
1
vote
1 answer

Is atomic_fetch_add_explicit atomic within threadgroup memory?

The following code snippet in a Metal compute kernel suggests that atomic_fetch_add_explicit does not have an atomic read-modify-write within threadgroup memory. The value of i is not unique within the threadgroup as I expect it to be. Am I using it…
Dickson
  • 211
  • 1
  • 11
1
vote
1 answer

Max no of controllers in a thread group in jmeter

I have 68 include controllers under a thread group but when I run the test, only 10 of them get executed. Is there a limit on the no of controllers that we can add under a thread group?
1
vote
1 answer

Confusion regarding ThreadGroup#activeCount()

The documentation for ThreadGroup#activeCount() says : Returns an estimate of the number of active threads in this thread group and its subgroups. Does that count include threads in sleep , wait and join mode or only those threads which are…
Ravi Jain
  • 1,452
  • 2
  • 17
  • 41
1
vote
1 answer

Sonar ThreadGroup error on IllegalArgumentException

Sonar shows "ThreadGroup" error on the line where IllegalArgumentException is thrown. Why is the issue here? Here is the code snippet, where issue is found by Sonar: public static ResolutionElection fromValue(String value) { for…
Daniil Shevelev
  • 11,739
  • 12
  • 50
  • 73
1
vote
1 answer

Why are there so many binders and asynctasks in my thread group list? How are they managed?

The setup: I have service class and two activities that bind to it. The first is the main UI activity that calls on startService(intent); bindService(intent, mConnection, Context.BIND_AUTO_CREATE). The second activity only calls on …
0
votes
2 answers

JMeter: passing quantity of threads as a property

I have the same problem as in the In Jmeter how do I set a variable number of threads using a beanshell sampler variable?, however it's not being solved by the same solution. I have the initial setUp Thread Group and Regular Thread Group (which…
0
votes
1 answer

How to run 1000 users with in hour through Stepping Thread group

I have a test plan where i have added stepped thread group with the following settings and i want to run it for 1 hr for 1000 users, with this settings it is taking more than 1hr. can anyone please guide? also what is the calculation of it to…
Neha Bansal
  • 87
  • 1
  • 1
  • 8
0
votes
1 answer

Issue with array sharing between multiple thread groups in Jmeter

Thread Group1 will create an array Array1 stored in memory(code is in JSR223 Sampler) and the data from array are passed to Request1 present in same thread group. Array1 will be updated every minute during test execution. Thread Group2 will create…
Riya
  • 9
  • 2
0
votes
2 answers

How to group threads to be run by each executor thread

I have a requirement in Java where let’s say I have multiple bankAccountId’s and there could be multiple threads working on each bankAccountId at a time. I have to make sure that only one thread should act on a bankAccountId at a time but at the…
0
votes
1 answer

Always failed to pass the token on the first try, but succeeded on the second try

The Jmeter I am using is version 5.5, I want to pass the token generated by Thread Group 01, to Thread Group 02. After doing some research, I know how to do it, but it always fails at the first try. In Thread Group 01, I performed the following…
ilf
  • 5
  • 4
0
votes
1 answer

Arraylist as property/global variable in jmeter

I have an arrayList created as property (accessible by all threadgroups) after adding some values to this arraylist..using foreach loop to this arraylist i want to get maximum value from the arraylist and store it in a variable? Someone pl help me…
0
votes
1 answer

How to setup requests per second scenario on JMeter

My test has 1 Authentication API and 2 other API's. I need to run Authentication API once and other 2 API's to generate X request per minute.The Auth API should run first then followed by other 2 API's. How can I create this scenario in thread…
Riya
  • 9
  • 2
0
votes
1 answer

Can we parameterize Thread schedule details like Start Thread count, Initial delay etc. in Ultimate thread Group using csv/txt files?

We are trying to parameterize Thread schedule details like Start Thread count, Initial delay etc. Since we have 50+ thread groups and handling them has become an issue. Would like to know if Jmeter has any unknown feature for this or a workaround to…
0
votes
1 answer

Thread Networks: why have a Full End Device?

The Thread Specification defines two types of devices with their respective sub-types: Full Thread Devices (FTD) 1.1. Router 1.2. Router Elegible End Device (REED) 1.3. Full End Device (FED) Minimal Thread Devices (MTD) 2.1. Minimal End Device…
0
votes
1 answer

Jmeter thread time series with milliseconds frequency

I am trying to build a test plan in JMeter based on a specific thread time series. For example, I know that at time x, there are n(x) users, and at time x+t, there are n(x+t) users, and so on. The issue is that the number of users has to be updated…
1 2 3
8 9