-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove usages of RateLimiter #16
Comments
it's optional and not used per default. I was able to generate traffic with less spike as the limit is at a lower level. As I understand the current rate limitation is before request are queued. So in case of a big queue (server took time to answer) suddenly when the server answer dequeuing can be faster that the rate. |
@olamy this |
yup it's the goal to limit to a given rate. |
maybe in starter module (out of core part)? |
@olamy I don't understand what it is for. We already have a way to specify the rate. Why do we need 2 ways of specifying the rate ? |
As I can understand we currently "limit" the queueing and not sending. |
Signed-off-by: olivier lamy <[email protected]>
@olamy,
RateLimiter
blocks and therefore we don't want to use it in this load generator.I'm not sure why
RateLimiter
is used at all. The load generator runs at the given rate by design, so why you want to limit the rate, that won't be exceeded anyway ?The text was updated successfully, but these errors were encountered: