I am creating a test plan in which I create a user under this user I have to create multiple orgs(consider it as sub user). Now I want to send 1000 request each seconds divided by the orgs created. How can I achieve this?
So far, for this I created one user in a thread group, then I created another thread group for creating orgs and shooting events, problem is only one request goes per org created. If I put a loop controller I would get events one after another, but I want to achieve the higher TPS and want to hit the backend with atleast 1000 TPS.
- Can I define few thread to run consecutively and few to run parallel in single Jmeter Plan?
- Can I define the Thread Group on run time depending on how many orgs(Sub Users) I create?
I also need to keep a track of all the sub users and modify their values as needed.
Thanks in advance.