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

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #17416: Server crashes due to python3 stack overflow on executing multiple plpy.rollback() calls
Дата
Msg-id 1048491.1645633650@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #17416: Server crashes due to python3 stack overflow on executing multiple plpy.rollback() calls  (PG Bug reporting form <noreply@postgresql.org>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #17415: Unable to use underscore as first character in set_config custom parameter
Следующее
От: Anurag Shrivastava
Дата:
Сообщение: Wal sender process not moving past wait_event_type: IO and wait_event: WALRead