I am using jmeter to test the performance for the ride booking app.I need to run the while controller which runs the events fetching api continuously until the ride is completed or if driver is not available. This runs correctly for one user .But if i run the plan for multiple users then the while controller enters infinite loop.How can I fix this?
need to run while loop for multiple users in jmeter
127 Views Asked by Snehal Matharu At
1
There are 1 best solutions below
Related Questions in WHILE-LOOP
- Reversing a number in Python
- Not clicking when user presses mouse button
- How to make a loop, repeat a loop again for my nims
- I am trying to make a Turtle Eater Game and I'm running into a minor bug(kind of)
- I cant start the first loop again on python
- Avoiding Loops in SQL, #temptables?
- Better way to exit do-while loop?
- While-loop in Python script not working when a record is added in MySQL table from triggers
- Find lexicographically smallest palindrome for a given string
- Why does it keep looping
- Creating a WHILE-Loop with a dynamic number of conditions in Python
- In Blazor server side app, I have endless while loop for consuming data from Kafka topic in my razor.cs page. How can I prevent it blocking the UI?
- Getting stuck in Python while loop
- I'm trying to write a simple program that picks a random number between 1 and 10 and gives the user to guess it
- Recreating strncpy()
Related Questions in JMETER
- i have extracted some values using regex in beanshell postprocessor now i have to pick a random value and store it into a varaible?
- Jmeter Java DSL - getting issues when using rpsThreadGroup
- How to configure api http request with load testing
- Jmeter resolution variable with remote
- Need to read different line from different files using CSV read function in JMeter
- How to enter user input in jmeter console (without doing parameterization)
- Optimal way to replace different parts of a structured string(XML) with random string values of different lengths in a JMeter JSR223 Samper (groovy)
- Jmeter query about script recording
- In Jmeter, for ISO8583 Sampler, how can I read the data from CSV file?
- Use JMeter to simulate receiving websocket broadcasts similar to okhttp3
- is their any industry standard for performing 300K load test (Thermostat->HVAC system)?
- How to perform multiple HTTP requests with unique IP addresses from my local
- Jmeter => How to add a jmx file in the transaction controller
- How to send huge JSON with PDF encoded over HTTPS in JMeter?
- How can I create a random(seed) function using a custom seed for Jmeter?
Related Questions in CONTROLLER
- godot lean mechanic makes camera glitch
- Why Jackson needs a default constructor?
- How to convert an HTML string to an escaped one?
- how to connect acb-004 controller using python
- Store files on gdrive from controller
- Laravel form action not accepting $order->id but accepting hard coded value
- Input Field Required
- Can you help a tag look at the static resource path without looking at the controller
- Reuse controller paths for a Spring Boot Controller
- How do i change a single value data into an array table in Laravel Jetstream vue stack?
- No route found in Shopware6/symfony
- Player sprite not changing when moving left or right when using a Playstation 5 Controller, but sprite changing when using keyboard controls
- problem with laravel view not extending layout.blade.php with out assets file . What can possibly be the problem?
- How apply machine learning code to ryu controller
- Nginx custom error page unexpected error reading return code: strconv.Atoi: parsing "": invalid syntax. Using 404
Related Questions in ANDROID-MULTIPLE-USERS
- Android 7.1.1 multi-user support in emulator
- Is there any way to install on the same android mobile a debug version of my app AND a google play store version of my app?
- How to check if "Multiple users" is enabled
- getInstalledPackages() for Android multiple users
- Android for Work ANDROID_ID is returning NULL
- Which is the best approach for an app with multiple users using Room database?
- Is it possible to enable android multi-user from adb?
- need to run while loop for multiple users in jmeter
- Google In-App Purchase how to set Account for Billing [Not Possible as of 2017-05-26]
- How to make android multiplayer games without port forwarding
- Unavailable preferred APN for secondary users on multi-user environment
- How to access personal file in SD card in work profile App?
- How to know if the android device supports multi users?
- Android multiplayer game SDK development
- Sharing data in multiple User app(User and Admin)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
While Controller is being executed unless its condition (a Function or Variable) resolves to
trueIf it runs into an endless loop - most probably your server responds with something you don't expect, i.e. an error because it gets overloaded.
So I would suggest taking 2 actions:
Temporarily enable storing of responses into .jtl or a separate file and inspect what does the server return and amend your While Controller's condition accordingly
And/or limit maximum number of iterations of the While Controller to some reasonable number, i.e. 10 or 20 or whatever is acceptable value, example __jexl3() function