You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After tried both HttpLocust & FastHttpLocust, i found in my every test the RPS always lower than Number of simulated users.
I tried on a CPU:8 Mem:16G mac book pro and a CPU:8 Mem:16G linux both without open files or tcp connection limitation.
Expected behavior
�When i use Wrk or Jmeter request the same Url with same number of simulated users, it can reach about 20000/s QPS.
Description of issue
After tried both HttpLocust & FastHttpLocust, i found in my every test the RPS always lower than Number of simulated users.
I tried on a CPU:8 Mem:16G mac book pro and a CPU:8 Mem:16G linux both without open files or tcp connection limitation.
Expected behavior
�When i use Wrk or Jmeter request the same Url with same number of simulated users, it can reach about 20000/s QPS.
Actual behavior
TBD
Environment settings
Steps to reproduce (for bug reports)
And here is my code:
from locust import HttpLocust, TaskSet, task
from locust.contrib.fasthttp import FastHttpLocust
class UserBehavior(TaskSet):
class WebsiteUser(FastHttpLocust):
task_set = UserBehavior
host = "http://xxx.xx.xx.xx:xxxx"
The text was updated successfully, but these errors were encountered: