lbry-sdk/lbry/scripts/sqlite_perf_test.py

62 lines
2.1 KiB
Python
Raw Normal View History

import uvloop, asyncio, time, sys, logging
2019-07-12 01:20:58 +02:00
from concurrent.futures import ProcessPoolExecutor
from lbry.wallet.server.db import reader
2019-07-12 01:20:58 +02:00
db_path = '/tmp/wallet-server/claims.db'
default_query_timout = 0.25
log = logging.getLogger(__name__)
log.addHandler(logging.StreamHandler())
2019-07-12 01:20:58 +02:00
async def run_times(executor, iterations, show=True):
start = time.perf_counter()
timings = await asyncio.gather(*(asyncio.get_running_loop().run_in_executor(
executor, reader.search_to_bytes, {
'no_totals': True,
'offset': 0,
'limit': 20,
'fee_amount': '<1',
#'all_tags': ['funny'],
'any_tags': [
'crypto',
'outdoors',
'cars',
'automotive'
],
'not_tags': [
'nsfw', 'xxx', 'mature'
]
}
) for _ in range(iterations)))
timings = [r[1]['execute_query']['total'] for r in timings]
total = int((time.perf_counter() - start) * 100)
2019-07-12 01:20:58 +02:00
if show:
avg = sum(timings)/len(timings)
print(f"{iterations:4}: {total}ms total concurrent, {len(timings)*avg*1000:.3f}s total sequential (avg*runs)")
print(f" {total/len(timings):.1f}ms/query concurrent (total/runs)")
print(f" {avg:.1f}ms/query actual average (sum(queries)/runs)")
sys.stdout.write(' sample:')
for i, t in zip(range(10), timings[::-1]):
sys.stdout.write(f' {t}ms')
print(' ...\n' if len(timings) > 10 else '\n')
2019-07-12 01:20:58 +02:00
async def main():
executor = ProcessPoolExecutor(
4, initializer=reader.initializer, initargs=(log, db_path, 'mainnet', default_query_timout, True)
)
2019-07-12 01:20:58 +02:00
await run_times(executor, 4, show=False)
await run_times(executor, 1)
await run_times(executor, 2**3)
await run_times(executor, 2**5)
await run_times(executor, 2**7)
await run_times(executor, 2**9)
await run_times(executor, 2**11)
await run_times(executor, 2**13)
2019-07-12 01:20:58 +02:00
executor.shutdown(True)
if __name__ == '__main__':
uvloop.install()
2019-07-12 01:20:58 +02:00
asyncio.run(main())