-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathplacement_test.py
86 lines (72 loc) · 2 KB
/
placement_test.py
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from utils import *
def placement_test(
rd_id,
runtime,
mem_list,
max_concurrent,
sleep_tm,
wait_tm,
log_file="tmp.log"):
func_prex = "scale"
aws_id, aws_key, region, roles = get_config_basic()
role = roles[0]
zipped_code_path = os.path.join(os.getcwd(), "tmp.zip")
func_handler = "index.handler"
step = 5
def worker_func(fop, **args):
para = get_default_req(sleep_tm)
res = fop.send_one_request(para)
return res
exp = Worker(log_file, rd_id, max_concurrent + 5, worker_func)
exp.init()
src_code_path = os.path.join(os.getcwd(), CODE_PATH[runtime])
zip_code(zipped_code_path, src_code_path)
para_list = []
fops = []
for i in xrange(max_concurrent):
func_name = func_prex + str(int(time.time() * 1000))[-8:]
mem_size = random.sample(mem_list, 1)[0]
fop = FuncOp(
aws_id,
aws_key,
region,
role,
runtime,
mem_size,
func_name)
fop.del_function()
fop.create_function(zipped_code_path, func_handler)
para = (fop,)
para_list.append(para)
fops.append(fop)
exp.add_tasks(para_list)
exp.clear_queue()
for fop in fops:
fop.del_function()
time.sleep(wait_tm)
def main():
runtime_list = ['python2.7']
# random
mem_list = list(xrange(128, 3008 + 1, 64))
# specify
# mem_list = [128, 256]
rd_id = 1
log_file = "tmp.log"
clear_log = False
max_concurrent = 5
sleep_tm = 0
wait_tm = 0
open(log_file, "w")
for rd_id in xrange(2):
for runtime in runtime_list:
for max_concurrent in [1, 5]:
placement_test(
rd_id,
runtime,
mem_list,
max_concurrent,
sleep_tm,
wait_tm,
log_file)
if __name__ == '__main__':
main()