-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinsertBench.py
More file actions
73 lines (59 loc) · 2.53 KB
/
insertBench.py
File metadata and controls
73 lines (59 loc) · 2.53 KB
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
"""Perform insert benchmark test.
usage: insertBench.py [-h] [--wal] [--copy]
options:
-h, --help Show this help message and exit
--wal Use WAL(Write a head log) instead of traditional rollback journal for SQLite.
--copy USE COPY statement instead of insert statement for Postgres.
"""
from docopt import docopt
import io, datetime, bench
def insertDepartmentBench(conn, beginTranFunc, commitTranFunc, insertFunc):
cur = conn.cursor()
# Bulk insert 100 records at once.
indicies = range(1, 100000)
for chunk in [indicies[x:x+100] for x in range(1, len(indicies), 100)]:
beginTranFunc(cur)
insertFunc(cur, chunk)
commitTranFunc(cur)
def insertBenchSqlite(conn):
def insertFunc(cur, chunk):
cur.executemany(
"insert into departments (department_name, created) values (?, CURRENT_TIMESTAMP)",
map((lambda i: ("dept%08d" %i,)), chunk)
)
def performBench():
insertDepartmentBench(
conn, lambda cur: cur.execute('BEGIN TRANSACTION'), lambda cur: cur.execute('COMMIT'), insertFunc
)
bench.createTableSqlite(conn)
bench.withStopwatch("insert departments with SQLite", performBench)
def insertBenchPgsql(conn):
def insertFunc(cur, chunk):
cur.executemany(
"insert into departments (department_name, created) values (%s, CURRENT_TIMESTAMP)",
map((lambda i: ["dept%08d" %i]), chunk)
)
def performBench():
insertDepartmentBench(
conn, (lambda cur: None), lambda cur: conn.commit(), insertFunc
)
bench.withStopwatch("insert departments with Postgres", performBench)
def copyInsertBenchPgsql(conn):
def insertFunc(cur, chunk):
cur.copy_from(
io.StringIO(''.join(map((lambda i: "dept%08d\t%s\n" % (i, datetime.datetime.now())), chunk))),
'departments', columns=('department_name', 'created'))
def performBench():
insertDepartmentBench(
conn, (lambda cur: None), lambda cur: conn.commit(), insertFunc
)
bench.withStopwatch("insert departments with Postgres using COPY", performBench)
if __name__ == '__main__':
args = docopt(__doc__)
# 'isolationLevel = None' means auto commit.
bench.withSqliteConnection("/tmp/test.db", insertBenchSqlite, isolationLevel = None, useWal = args["--wal"])
bench.withPgsqlConnection(bench.createTablePgsql)
if args["--copy"]:
bench.withPgsqlConnection(copyInsertBenchPgsql)
else:
bench.withPgsqlConnection(insertBenchPgsql)