-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from HeyHugo/master
Merged HeyHugo's improvements on the ramping code. Better code separation and better UI.
- Loading branch information
Showing
6 changed files
with
156 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
""" | ||
This module adds a tool to locust with intention to help find a highest amount of simulated users, a system can handle. | ||
Parameters to define thresholds for this tool are configured in the web-user-interface | ||
When this module is used, additional response time -data is recorded. | ||
This so that we can calculate a percentile value of the current response times, | ||
meaning we account for the response times recorded in a moving time window. | ||
""" | ||
|
||
from stats import percentile, RequestStats | ||
from runners import locust_runner, DistributedLocustRunner, SLAVE_REPORT_INTERVAL, STATE_HATCHING | ||
from collections import deque | ||
import events | ||
import math | ||
import gevent | ||
import logging | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
response_times = deque([]) | ||
|
||
# Are we running in distributed mode or not? | ||
is_distributed = isinstance(locust_runner, DistributedLocustRunner) | ||
|
||
# The time window in seconds that current_percentile use data from | ||
PERCENTILE_TIME_WINDOW = 15.0 | ||
|
||
def current_percentile(percent): | ||
if is_distributed: | ||
# Flatten out the deque of lists and calculate the percentile to be returned | ||
return percentile(sorted([item for sublist in response_times for item in sublist]), percent) | ||
else: | ||
return percentile(sorted(response_times), percent) | ||
|
||
def on_request_success_ramping(_, _1, response_time, _2): | ||
if is_distributed: | ||
response_times.append(response_time) | ||
else: | ||
response_times.append(response_time) | ||
|
||
# remove from the queue | ||
rps = RequestStats.sum_stats().current_rps | ||
if len(response_times) > rps*PERCENTILE_TIME_WINDOW: | ||
for i in xrange(len(response_times) - int(math.ceil(rps*PERCENTILE_TIME_WINDOW))): | ||
response_times.popleft() | ||
|
||
def on_report_to_master_ramping(_, data): | ||
global response_times | ||
data["current_responses"] = response_times | ||
response_times = [] | ||
|
||
def on_slave_report_ramping(_, data): | ||
if "current_responses" in data: | ||
response_times.append(data["current_responses"]) | ||
|
||
# remove from the queue | ||
slaves = locust_runner.slave_count | ||
response_times_per_slave_count = PERCENTILE_TIME_WINDOW/SLAVE_REPORT_INTERVAL | ||
if len(response_times) > slaves * response_times_per_slave_count: | ||
response_times.popleft() | ||
|
||
def register_listeners(): | ||
events.report_to_master += on_report_to_master_ramping | ||
events.slave_report += on_slave_report_ramping | ||
events.request_success += on_request_success_ramping | ||
|
||
def remove_listeners(): | ||
events.report_to_master.__idec__(on_report_to_master_ramping) | ||
events.slave_report.__idec__(on_slave_report_ramping) | ||
events.request_success.__idec__(on_request_success_ramping) | ||
|
||
def start_ramping(hatch_rate=None, max_locusts=1000, hatch_stride=100, | ||
percent=0.95, response_time_limit=2000, acceptable_fail=0.05, | ||
precision=200, start_count=0, calibration_time=15): | ||
|
||
register_listeners() | ||
|
||
def ramp_up(clients, hatch_stride, boundery_found=False): | ||
while True: | ||
if locust_runner.state != STATE_HATCHING: | ||
if locust_runner.num_clients >= max_locusts: | ||
logger.info("Ramp up halted; Max locusts limit reached: %d" % max_locusts) | ||
return ramp_down(clients, hatch_stride) | ||
|
||
gevent.sleep(calibration_time) | ||
fail_ratio = RequestStats.sum_stats().fail_ratio | ||
if fail_ratio > acceptable_fail: | ||
logger.info("Ramp up halted; Acceptable fail ratio %d%% exceeded with fail ratio %d%%" % (acceptable_fail*100, fail_ratio*100)) | ||
return ramp_down(clients, hatch_stride) | ||
|
||
p = current_percentile(percent) | ||
if p >= response_time_limit: | ||
logger.info("Ramp up halted; Percentile response times getting high: %d" % p) | ||
return ramp_down(clients, hatch_stride) | ||
|
||
if boundery_found and hatch_stride <= precision: | ||
logger.info("Sweet spot found! Ramping stopped at %i locusts" % (locust_runner.num_clients)) | ||
return remove_listeners() | ||
|
||
logger.info("Ramping up...") | ||
if boundery_found: | ||
hatch_stride = max((hatch_stride/2),precision) | ||
clients += hatch_stride | ||
locust_runner.start_hatching(clients, locust_runner.hatch_rate) | ||
gevent.sleep(1) | ||
|
||
def ramp_down(clients, hatch_stride): | ||
while True: | ||
if locust_runner.state != STATE_HATCHING: | ||
if locust_runner.num_clients < max_locusts: | ||
gevent.sleep(calibration_time) | ||
fail_ratio = RequestStats.sum_stats().fail_ratio | ||
if fail_ratio <= acceptable_fail: | ||
p = current_percentile(percent) | ||
if p <= response_time_limit: | ||
if hatch_stride <= precision: | ||
logger.info("Sweet spot found! Ramping stopped at %i locusts" % (locust_runner.num_clients)) | ||
return remove_listeners() | ||
|
||
logger.info("Ramping up...") | ||
hatch_stride = max((hatch_stride/2),precision) | ||
clients += hatch_stride | ||
locust_runner.start_hatching(clients, locust_runner.hatch_rate) | ||
return ramp_up(clients, hatch_stride, True) | ||
|
||
logger.info("Ramping down...") | ||
hatch_stride = max((hatch_stride/2),precision) | ||
clients -= hatch_stride | ||
if clients > 0: | ||
locust_runner.start_hatching(clients, locust_runner.hatch_rate) | ||
else: | ||
logger.warning("No responses met the ramping thresholds, check your ramp configuration, locustfile and \"--host\" address") | ||
logger.info("RAMING STOPPED") | ||
return remove_listeners() | ||
gevent.sleep(1) | ||
|
||
if hatch_rate: | ||
locust_runner.hatch_rate = hatch_rate | ||
if start_count > 0: | ||
locust_runner.start_hatching(start_count, hatch_rate) | ||
logger.info("RAMPING STARTED") | ||
ramp_up(start_count, hatch_stride) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters