-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpostgres_locust_example_parallel_queries.py
More file actions
68 lines (53 loc) · 2.04 KB
/
postgres_locust_example_parallel_queries.py
File metadata and controls
68 lines (53 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from locust import TaskSet, task
from postgreslocust import PostgresLocust
from locust.main import main
import sys
import os
import json
# noinspection SqlResolve,SqlNoDataSourceInspection
class PostgresLocustClientTasks(TaskSet):
def query1(self):
query1 = '''
select count(*)
from table1
'''
self.client.query1(query1) # this is where the results get the label 'query1' ...client.[querylabel](...
def query2(self):
query2 = '''
select * from table1
'''
self.client.query2(query2) # this is where the results get the label 'query2' ...client.[querylabel](...
@task
def my_task(self):
from gevent.pool import Group
group = Group()
group.spawn(lambda: self.query1())
group.spawn(lambda: self.query2())
group.join() # wait for greenlets to finish
class PostgresLocustClient(PostgresLocust):
with open('database_login_params.json') as db_params_json_file:
db_params = json.load(db_params_json_file)
# need host, port, dbname, user, and password
host = db_params['host']
port = int(db_params['port']) # redshift is 5439
dbname = db_params['dbname']
user = db_params['user']
password = db_params['password']
pool_size = 2 # maximum number of concurrent queries per locust before they block
redshift_cache_query_results = True # set False for Redshift only
min_wait = 500
max_wait = 1000
task_set = PostgresLocustClientTasks
if __name__ == "__main__":
# http://localhost:8089/
locusts = 5 # specifies the number of Locust users to spawn
hatch_rate = 1 # -r specifies the hatch rate (number of users to spawn per second)
# starting with locust 0.9
# -t Stop after the specified amount of time, e.g. (300s, 20m, 3h, 1h30m, etc.).
args = ['-f', os.path.basename(__file__),
'--no-web', '--csv=locust_results',
'-c', str(locusts),
'-r', str(hatch_rate)]
old_sys_argv = sys.argv
sys.argv = [old_sys_argv[0]] + args
main()