A collection of Python utility functions for ingesting data into SQLAlchemy-defined PostgreSQL tables, automatically migrating them as needed, and minimising locking
Project description
pg-bulk-ingest
A collection of Python utility functions for ingesting data into SQLAlchemy-defined PostgreSQL tables, automatically migrating them as needed, and minimising locking
Work-in-progress. This README serves as a rough design spec
Installation
pg-bulk-ingest
can be installed from PyPI using pip
. psycopg2
or psycopg
(Psycopg 3) must also be explicitly installed.
pip install pg-bulk-ingest psycopg
Usage
The API is made of 3 functions:
replace
- replaces all the existing rows in the table with the incoming rowsinsert
- inserts the incoming rows into the table, leaving existing rows aloneupsert
- inserts the incoming rows into the table, but if a primary key matches an existing row, updates the existing row
In each case under hood:
- Ingestion is done exclusively with
COPY FROM
. - Ingestion happens in a transaction - it is all ingested or none at all
- The transaction is managed by client code, allowing other transactional changes such as updating metadata tables
- Tables are migrated to match the definitions, using techniques to avoid exclusively locking the table to allow parallel SELECT queries.
- For
upsert
, data is ingested into an intermediate table, and anINSERT ... ON CONFICT(...) DO UPDATE
is performed to copy rows from this intermediate table to the existing table. This doesn't involve an exclusive lock on the live table, unless a migration requires it as follows. - For all 3 functions, if there is no known technique for a migration without a long-running exclusive lock, then an intermediate table is used, swapped with the live table at the end of the ingest. This swap does require an exclusive lock, but only for a short time. Backends that hold locks that conflict with this lock are forcably terminated after a delay.
For example to upsert
:
import sqlalchemy as sa
from pg_bulk_ingest import upsert
# Run postgresql locally should allow the below to run
# docker run --rm -it -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres
engine = sa.create_engine('postgresql+psycopg://postgres@127.0.0.1:5432/')
# Any iterable of tuples
rows = (
(3, 'd'),
(4, 'a'),
(5, 'q'),
)
# Collection of SQLAlchemy table definitions - a "Metadata"
metadata = sa.MetaData()
my_table = sa.Table(
"my_table",
metadata,
sa.Column("id", sa.Integer, primary_key=True),
sa.Column("value", sa.String(16), nullable=False),
schema="my_schema",
)
with engine.begin() as conn:
upsert(conn, metadata, ((row, my_table) for row in rows))
Compatibility
- Python >= 3.7.1 (tested on 3.7.1, 3.8.0, 3.9.0, 3.10.0, and 3.11.0)
- psycopg2 >= 2.9.2 or Psycopg 3 >= 3.1.4
- SQLAlchemy >= 1.4.24 (tested on 1.4.24 and 2.0.0)
- PostgreSQL >= 9.6 (tested on 9.6, 10.0, 11.0, 12.0, 13.0, 14.0, and 15.0)
Note that SQLAlchemy < 2 does not support Psycopg 3.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pg_bulk_ingest-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09072f0e43585d0b9b5da0de429be63d05d217f7be689922b239abf6cfa8b912 |
|
MD5 | 09127e71b185e1d95738544aef72483e |
|
BLAKE2b-256 | 3f550078af1e361505030d144c81b7fe7ea478faff48f6eca58a63d8538fc689 |