-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_tables.py
111 lines (101 loc) · 3.71 KB
/
test_tables.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
from aioazstorage import TableClient
from os import environ
from datetime import datetime
from uuid import uuid1
from time import time
from asyncio import set_event_loop_policy, Task, gather
try:
from uvloop import get_event_loop, EventLoopPolicy
set_event_loop_policy(EventLoopPolicy())
except ImportError:
from asyncio import get_event_loop
# TODO: add SAS token support, reference:
# https://github.com/yokawasa/azure-functions-python-samples/blob/master/blob-sas-token-generator/function/run.py
STORAGE_ACCOUNT=environ['STORAGE_ACCOUNT']
STORAGE_KEY=environ['STORAGE_KEY']
OPERATION_COUNT=int(environ.get('OPERATION_COUNT',100))
async def main():
t = TableClient(STORAGE_ACCOUNT, STORAGE_KEY)
#print("Table Deletion", end=" ")
#print((await t.deleteTable('aiotest')).status)
print("Table Creation", end=" ")
print((await t.createTable('aiotest')).status)
print("Table Query", end=" ")
async for item in t.getTables({"$filter": "TableName eq 'aiotest'"}):
print(item['TableName'], end=" ")
print("\nInsertion:", end=" ")
tasks = []
for i in range(OPERATION_COUNT):
tasks.append(Task(t.insertEntity('aiotest', {
"Address":"Mountain View",
"Age":23 + i,
"AmountDue":200.23,
"CustomerCode": str(uuid1()), # send this as string intentionally
"CustomerSince":datetime.now(),
"IsActive": True,
"NumberOfOrders": 255,
"PartitionKey":"mypartitionkey",
"RowKey": "Customer%d" % i
})))
start = time()
res = await gather(*tasks)
print("{} operations/s".format(OPERATION_COUNT/(time()-start)))
#print([r.status for r in res])
print("Deletion:")
tasks = []
for i in range(OPERATION_COUNT):
tasks.append(Task(t.deleteEntity('aiotest', {
"PartitionKey":"mypartitionkey",
"RowKey": "Customer%d" % i
})))
start = time()
res = await gather(*tasks)
print("{} operations/s".format(OPERATION_COUNT/(time()-start)))
#print([r.status for r in res])
print("Upsert:")
tasks = []
for i in range(OPERATION_COUNT):
tasks.append(Task(t.insertOrReplaceEntity('aiotest', {
"Address":"Mountain View",
"Age": 23 - i,
"AmountDue": 0,
"CustomerCode": uuid1(), # this updates the entry schema as well
"CustomerSince":datetime.now(),
"IsActive": True,
"NumberOfOrders": 0,
"PartitionKey":"mypartitionkey",
"RowKey": "Customer%d" % i
})))
start = time()
res = await gather(*tasks)
print("{} operations/s".format(OPERATION_COUNT/(time()-start)))
#print([r.status for r in res])
print("Query")
async for item in t.queryEntities('aiotest', {"$filter": "Age gt 0"}):
print(item['RowKey'], end= " ")
print()
entities = []
for i in range(OPERATION_COUNT):
entities.append({
"Address":"Mountain View",
"Age":23 + i,
"AmountDue":200.23,
"CustomerCode": str(uuid1()), # send this as string intentionally
"[email protected]": "Edm.DateTime",
"CustomerSince":datetime.now(),
"IsActive": True,
"NumberOfOrders": 255,
"PartitionKey":"mypartitionkey",
"RowKey": "Customer%d" % i
})
start = time()
res = await t.batchUpdate('aiotest', entities)
print("{} operations/s".format(OPERATION_COUNT/(time()-start)))
print(res.status)
print(res.headers)
print(await res.text())
print()
await t.close()
if __name__ == '__main__':
loop = get_event_loop()
loop.run_until_complete(main())