Consecutive Inserts Freeze Execution of Psycopg3

From: "Michael P(dot) McDonnell" <bzaks1424(at)gmail(dot)com>
To: psycopg(at)postgresql(dot)org
Subject: Consecutive Inserts Freeze Execution of Psycopg3
Date: 2023-04-23 20:45:56
Message-ID: CAHmCLHrztOYi=uLqc6jKrytz5=e4ZKhYP1LTyLfTi-KGC1pR9w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: psycopg

Python 3.10.6
psycopg library 3.1.8

Running consecutive inserts sourced in files.
All inserts are of the same format:

INSERT INTO _____ (field1, field2, field3)
SELECT field1, field2, field3 FROM ____, Join ___, join ___ etc...

The code I've written is this:

for qi in range(qlen):
query = queries[qi]
qparams = params[qi]
with self.connection.cursor() as conn:
conn.execute(query, qparams)

When I run the queries in dbeaver - the first query takes 120s (it's 1.9M
rows), the second query takes 2s (7000 rows).
When I run the queries in python - it freezes on the second query.

Any guidance on how to attack this would be awesome as I have re-written my
code a dozen times and am just slinging mud to see what sticks.

Responses

Browse psycopg by date

  From Date Subject
Next Message Adrian Klaver 2023-04-23 21:25:25 Re: Consecutive Inserts Freeze Execution of Psycopg3
Previous Message Daniele Varrazzo 2023-02-21 09:57:05 Re: Escape Python to `json[]` for `COPY FROM` PostgreSQL insertion?