Re: BUG #17416: Server crashes due to python3 stack overflow on executing multiple plpy.rollback() calls - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #17416: Server crashes due to python3 stack overflow on executing multiple plpy.rollback() calls
Date
Msg-id 1048491.1645633650@sss.pgh.pa.us
Whole thread Raw
In response to BUG #17416: Server crashes due to python3 stack overflow on executing multiple plpy.rollback() calls  (PG Bug reporting form <noreply@postgresql.org>)
List pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> When executing the following script:
> psql -c "
> CREATE EXTENSION plpython3u;

> CREATE FUNCTION plpy_xact_test() RETURNS int
> LANGUAGE plpython3u
> AS '
> plpy.rollback()
> return 1
> '"

> for i in `seq 500`; do echo "SELECT plpy_xact_test();"; done | psql

> I get the server crash with the following stack trace:

Interesting.  For me, 500 repetitions won't crash it, but 1000 will.
Apparently, each escape out of plpy.rollback leaves an open frame
on Python's internal control stack, and eventually it barfs.
So this is a different way to reach the problems already under
investigation at [1].  You don't really need a bleeding-edge
Python at all.

            regards, tom lane

[1] https://www.postgresql.org/message-id/flat/3375ffd8-d71c-2565-e348-a597d6e739e3@enterprisedb.com



pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #17415: Unable to use underscore as first character in set_config custom parameter
Next
From: Anurag Shrivastava
Date:
Subject: Wal sender process not moving past wait_event_type: IO and wait_event: WALRead