-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlifetime_test.py
59 lines (42 loc) · 1.37 KB
/
lifetime_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
from utils import *
def lifetime_test(N, runtime, mem_size, sleep_tm, wait_tm, log_file="tmp.log"):
func_prex = "lifetime"
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"
def worker_func(fop, **args):
para = get_default_req(sleep_tm)
res = fop.send_one_request(para)
return res
rd_id = 0
exp = Worker(log_file, rd_id, 1, worker_func)
exp.init()
func_name = func_prex + str(int(time.time() * 1000))[-8:]
src_code_path = os.path.join(os.getcwd(), CODE_PATH[runtime])
zip_code(zipped_code_path, src_code_path)
fop = FuncOp(aws_id, aws_key, region, role, runtime, mem_size, func_name)
fop.del_function()
fop.create_function(zipped_code_path, func_handler)
while rd_id < N:
para_list = []
para = (fop, )
para_list.append(para)
exp.add_tasks(para_list)
exp.clear_queue()
time.sleep(wait_tm)
rd_id += 1
exp.set_rdid(rd_id)
exp.set_subrdid(0)
fop.del_function()
def main():
runtime = 'python2.7'
mem_size = 128
log_file = "tmp.log"
sleep_tm = 0
wait_tm = 0
N = 5
open(log_file, "w")
lifetime_test(N, runtime, mem_size, sleep_tm, wait_tm, log_file)
if __name__ == '__main__':
main()