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
|
"""This series of tests illustrates different ways to INSERT a large number
of rows in bulk.
"""
from . import Profiler
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, create_engine, bindparam
from sqlalchemy.orm import Session
Base = declarative_base()
engine = None
class Customer(Base):
__tablename__ = "customer"
id = Column(Integer, primary_key=True)
name = Column(String(255))
description = Column(String(255))
Profiler.init("bulk_inserts", num=100000)
@Profiler.setup
def setup_database(dburl, echo, num):
global engine
engine = create_engine(dburl, echo=echo)
Base.metadata.drop_all(engine)
Base.metadata.create_all(engine)
@Profiler.profile
def test_flush_no_pk(n):
"""Individual INSERT statements via the ORM, calling upon last row id"""
session = Session(bind=engine)
for chunk in range(0, n, 1000):
session.add_all([
Customer(
name='customer name %d' % i,
description='customer description %d' % i)
for i in range(chunk, chunk + 1000)
])
session.flush()
session.commit()
@Profiler.profile
def test_bulk_save_return_pks(n):
"""Individual INSERT statements in "bulk", but calling upon last row id"""
session = Session(bind=engine)
session.bulk_save_objects([
Customer(
name='customer name %d' % i,
description='customer description %d' % i
)
for i in range(n)
], return_defaults=True)
session.commit()
@Profiler.profile
def test_flush_pk_given(n):
"""Batched INSERT statements via the ORM, PKs already defined"""
session = Session(bind=engine)
for chunk in range(0, n, 1000):
session.add_all([
Customer(
id=i + 1,
name='customer name %d' % i,
description='customer description %d' % i)
for i in range(chunk, chunk + 1000)
])
session.flush()
session.commit()
@Profiler.profile
def test_bulk_save(n):
"""Batched INSERT statements via the ORM in "bulk", discarding PKs."""
session = Session(bind=engine)
session.bulk_save_objects([
Customer(
name='customer name %d' % i,
description='customer description %d' % i
)
for i in range(n)
])
session.commit()
@Profiler.profile
def test_bulk_insert_mappings(n):
"""Batched INSERT statements via the ORM "bulk", using dictionaries."""
session = Session(bind=engine)
session.bulk_insert_mappings(Customer, [
dict(
name='customer name %d' % i,
description='customer description %d' % i
)
for i in range(n)
])
session.commit()
@Profiler.profile
def test_core_insert(n):
"""A single Core INSERT construct inserting mappings in bulk."""
conn = engine.connect()
conn.execute(
Customer.__table__.insert(),
[
dict(
name='customer name %d' % i,
description='customer description %d' % i
)
for i in range(n)
])
@Profiler.profile
def test_dbapi_raw(n):
"""The DBAPI's API inserting rows in bulk."""
conn = engine.pool._creator()
cursor = conn.cursor()
compiled = Customer.__table__.insert().values(
name=bindparam('name'),
description=bindparam('description')).\
compile(dialect=engine.dialect)
if compiled.positional:
args = (
('customer name %d' % i, 'customer description %d' % i)
for i in range(n))
else:
args = (
dict(
name='customer name %d' % i,
description='customer description %d' % i
)
for i in range(n)
)
cursor.executemany(
str(compiled),
list(args)
)
conn.commit()
conn.close()
if __name__ == '__main__':
Profiler.main()
|