-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrace.py
407 lines (318 loc) · 11.2 KB
/
trace.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# type: ignore
import asyncio
import time
from asyncio import create_task, sleep
from dataclasses import dataclass
from typing import Callable, Iterable, List, cast
import aiocache
import redis
from cashews import cache as wcache
from redis.asyncio import Redis
from redis.asyncio.connection import BlockingConnectionPool
from benchmarks.zipf import Zipf
from cacheme.core import get, get_all, _awaits_len
from cacheme.data import list_storages, register_storage
from cacheme.models import Cache, Node
from cacheme.serializer import MsgPackSerializer
from cacheme.storages import Storage
wb = wcache.setup("redis://", max_connections=100, wait_for_connection_timeout=300)
REQUESTS = 200000
aiocache.caches.set_config(
{
"default": {
"cache": "aiocache.SimpleMemoryCache",
"serializer": {"class": "aiocache.serializers.StringSerializer"},
},
"redis_alt": {
"cache": "aiocache.RedisCache",
"endpoint": "127.0.0.1",
"port": 6379,
"timeout": 200,
"plugins": [],
},
}
)
async def simple_get(Node: Callable, i: int):
result = await get(Node(uid=i))
assert result == i
async def simple_get_all(Node: Callable, l: List[int]):
result = await get_all([Node(uid=i) for i in l])
assert list(result) == l
async def simple_get_ii(Node: Callable, i: int):
result = await Node(uid=i).load_ii()
assert result == i
async def simple_get_iii(Node: Callable, i: int):
result = await Node(uid=i).load_iii()
assert result == i
async def simple_get_iv(Node: Callable, i: int):
result = await Node(uid=i).load_iv()
assert result == i
async def simple_get_v(Node: Callable, i: int):
result = await Node(uid=i).load_v()
assert result == i
def zipf_key_gen() -> Iterable:
z = Zipf(1.001, 10, REQUESTS)
for _ in range(REQUESTS):
yield f"{z.get()}"
def ucb_key_gen() -> Iterable:
with open(f"benchmarks/trace/ucb", "rb") as f:
for line in f:
vb = line.split(b" ")[-2]
try:
v = vb.decode()
except:
v = "failed"
yield v
def ds1_key_gen() -> Iterable:
with open(f"benchmarks/trace/ds1", "r") as f:
for line in f:
yield line.split(",")[0]
def s3_key_gen() -> Iterable:
with open(f"benchmarks/trace/s3", "r") as f:
for line in f:
yield line.split(",")[0]
async def worker(queue):
while True:
try:
task = queue.get_nowait()
except:
return
await task
queue.task_done()
async def run_concurrency(queue, workers):
await asyncio.gather(*[worker(queue) for _ in range(workers)])
@dataclass
class FooNode(Node):
uid: str
load_count = 0
def key(self) -> str:
return f"uid:{self.uid}"
async def load(self) -> int:
self.__class__.load_count += 1
await sleep(0.1)
return self.uid
@aiocache.cached(
alias="redis_alt", key_builder=lambda *args, **kw: f"uid2:{args[1].uid}"
)
async def load_ii(self) -> int:
self.__class__.load_count += 1
await sleep(0.1)
return self.uid
@aiocache.cached_stampede(
alias="redis_alt",
key_builder=lambda *args, **kw: f"uid3:{args[1].uid}",
lease=30,
)
async def load_iii(self) -> int:
self.__class__.load_count += 1
await sleep(0.1)
return self.uid
@wcache(key="uid4:{self.uid}", ttl=None)
async def load_iv(self) -> int:
self.__class__.load_count += 1
await sleep(0.1)
return self.uid
@wcache(key="uid5:{self.uid}", ttl=500, lock=True)
async def load_v(self) -> int:
self.__class__.load_count += 1
await sleep(0.1)
return self.uid
class Meta(Node.Meta):
version = "v1"
caches = [Cache(storage="redis", ttl=None)]
serializer = MsgPackSerializer()
async def bench_cacheme_zipf(gen: Callable[..., Iterable], workers: int):
# reset node cache
FooNode.Meta.caches = [Cache(storage="redis", ttl=None)]
redis_counter = 0
await register_storage("redis", Storage(url="redis://localhost:6379"))
client = cast(Redis, list_storages()["redis"]._storage.client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("GET", callback)
queue = asyncio.Queue()
for uid in gen():
queue.put_nowait(simple_get(FooNode, uid))
now = time.time()
await run_concurrency(queue, workers)
print(
f"cacheme redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
await client.close()
async def bench_cacheme_zipf_with_local(gen: Callable[..., Iterable], workers: int):
# reset node cache
FooNode.Meta.caches = [
Cache(storage="local", ttl=None),
Cache(storage="redis", ttl=None),
]
redis_counter = 0
await register_storage("redis", Storage(url="redis://localhost:6379"))
await register_storage("local", Storage(url="local://tlfu", size=3000))
client = cast(Redis, list_storages()["redis"]._storage.client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("GET", callback)
queue = asyncio.Queue()
for uid in gen():
queue.put_nowait(simple_get(FooNode, uid))
now = time.time()
await run_concurrency(queue, workers)
print(
f"cacheme with local redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
await client.close()
async def bench_cacheme_batch_zipf(workers: int):
if workers > 10000:
return
# reset node cache
FooNode.Meta.caches = [Cache(storage="redis", ttl=None)]
redis_counter = 0
await register_storage("redis", Storage(url="redis://localhost:6379"))
client = cast(Redis, list_storages()["redis"]._storage.client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("MGET", callback)
z = Zipf(1.0001, 10, REQUESTS)
def get20(z):
l = set()
while True:
l.add(z.get())
if len(l) == 20:
break
return list(l)
queue = asyncio.Queue()
for _ in range(REQUESTS // 20):
queue.put_nowait(simple_get_all(FooNode, get20(z)))
now = time.time()
await run_concurrency(queue, workers)
print(
f"cacheme redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
await client.close()
async def bench_aiocache_zipf(gen: Callable[..., Iterable], workers: int):
redis_counter = 0
client = cast(Redis, FooNode.load_ii.cache.client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("GET", callback)
client.connection_pool = BlockingConnectionPool.from_url(
"redis://localhost:6379", max_connections=100, timeout=None
)
queue = asyncio.Queue()
for uid in gen():
queue.put_nowait(simple_get_ii(FooNode, uid))
now = time.time()
await run_concurrency(queue, workers)
print(
f"aiocache redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
await client.close()
async def bench_aiocache_stampede_zipf(gen: Callable[..., Iterable], workers: int):
redis_counter = 0
client = cast(Redis, FooNode.load_iii.cache.client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("GET", callback)
client.connection_pool = BlockingConnectionPool.from_url(
"redis://localhost:6379", max_connections=100, timeout=None
)
queue = asyncio.Queue()
for uid in gen():
queue.put_nowait(simple_get_iii(FooNode, uid))
now = time.time()
await run_concurrency(queue, workers)
print(
f"aiocache stampede redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
await client.close()
async def bench_cashews_zipf(gen: Callable[..., Iterable], workers: int):
redis_counter = 0
await wcache.get("foo")
client = cast(Redis, wb._client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("GET", callback)
queue = asyncio.Queue()
for uid in gen():
queue.put_nowait(simple_get_iv(FooNode, uid))
now = time.time()
await run_concurrency(queue, workers)
print(
f"cashews redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
async def bench_cashews_lock_zipf(gen: Callable[..., Iterable], workers: int):
redis_counter = 0
await wcache.get("foo")
client = cast(Redis, wb._client)
FooNode.load_count = 0
def callback(response):
nonlocal redis_counter
redis_counter += 1
return response
client.set_response_callback("GET", callback)
queue = asyncio.Queue()
for uid in gen():
queue.put_nowait(simple_get_v(FooNode, uid))
now = time.time()
await run_concurrency(queue, workers)
print(
f"cashews locked redis count {redis_counter}, load count {FooNode.load_count}, spent {time.time() - now}s"
)
async def worker_wait(queue):
while True:
task = await queue.get()
await task
queue.task_done()
async def run_concurrency_wait(queue, workers):
await asyncio.gather(*[worker_wait(queue) for _ in range(workers)])
async def infinit_run(cap: int):
FooNode.Meta.caches = [Cache(storage="local", ttl=None)]
await register_storage("local", Storage(url="local://tlfu", size=cap))
z = Zipf(1.001, 10, 100000000)
counter = 0
queue = asyncio.Queue(maxsize=2000)
task = create_task(run_concurrency_wait(queue, 2000))
while True:
uid = z.get()
await queue.put(simple_get(FooNode, uid))
counter += 1
if counter % 100000 == 0:
await sleep(0.5)
print(f"finish {counter // 100000}, tmp len: {_awaits_len()}")
async def run():
for w in [1000, 10000, 100000]:
r = redis.Redis(host="localhost", port=6379)
r.flushall()
print(f"==== zipf benchmark: concurrency {w} ====")
await bench_cacheme_zipf(zipf_key_gen, w)
r.flushall() # flush because local use same key
await bench_cacheme_zipf_with_local(zipf_key_gen, w)
await bench_aiocache_zipf(zipf_key_gen, w)
await bench_aiocache_stampede_zipf(zipf_key_gen, w)
await bench_cashews_zipf(zipf_key_gen, w)
await bench_cashews_lock_zipf(zipf_key_gen, w)
for w in [1000, 10000, 100000]:
r = redis.Redis(host="localhost", port=6379)
r.flushall()
print(f"==== zipf batch benchmark: concurrency {w} ====")
await bench_cacheme_batch_zipf(w)
asyncio.run(run())
# asyncio.run(infinit_run(50000))