Segmentation fault with parallelism PG 10.4

Поиск
Список
Период
Сортировка
От Heinemann, Manfred (IMS)
Тема Segmentation fault with parallelism PG 10.4
Дата
Msg-id 8577044f0d2f4fe3919c53c2f7a642e5@THALASSA.omni.imsweb.com
обсуждение исходный текст
Ответы Re: Segmentation fault with parallelism PG 10.4  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-admin

Hi All,

 

We recently upgraded to Postgresql 10.4 from 9.6.7.

We allow some user querying against the database and a user wrote sql that would repeatedly cause a segmentation fault. We can’t share the data but I will show what I can.

 

Here is an example from the postgres logs with the sql simplified but still throwing the error. It is not very well written but we can’t have a bad query bring down the instance.

 

<2018-06-12 08:59:28 PDT [9109]: [38-1] db=, user=, host=> LOG:  server process (PID 11471) was terminated by signal 11: Segmentation fault

<2018-06-12 08:59:28 PDT [9109]: [39-1] db=, user=, host=> DETAIL:  Failed process was running: SELECT p.vital_status, c.addr_at_dx_street_name

        FROM ctc c

        INNER JOIN patient p ON c.pat_id = p.pat_id

        LEFT JOIN ctc_registry cr ON c.ctc_id = cr.ctc_id

        LEFT JOIN facility_admission fa ON fa.ctc_id = cr.ctc_id AND fa.fac_id = cr.follow_up_hospital

        LEFT JOIN patient_reference_id pr ON pr.pat_id = p.pat_id AND pr.fac_id = cr.follow_up_hospital

        WHERE

        c.primary_site between 'C500' and 'C509'

        AND c.date_of_diagnosis_mm between case when c.date_of_diagnosis_yyyy = 2006 then 7 else 1 end and case when c.date_of_diagnosis_yyyy = 2015 then 6 else 12 end

        AND (c.sequence_number = '00'

        OR (c.sequence_number = '02'

        AND p.pat_id in (select pat_id

        from ctc

        where behavior_icdo3 = 2

        and sequence_number = '01'

        and deleted = 0

        and pat_id in (select pat_id

        from ctc

        where deleted = 0)))

        )

        ;

 

We changed max_parallel_workers_per_gather to 0 from the default of 2 and the sql runs fine. I attached the explain plans with parallel turned on and off to see if that helps.

We would obviously like to be able to run the system with parallel turned on.

 

Thanks,

Manfred

 




Information in this e-mail may be confidential. It is intended only for the addressee(s) identified above. If you are not the addressee(s), or an employee or agent of the addressee(s), please note that any dissemination, distribution, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender of the error.
Вложения

В списке pgsql-admin по дате отправления:

Предыдущее
От: Rui DeSousa
Дата:
Сообщение: Re: PostgreSQL 'Corruption & Fragmentation' detection andresolution/fix
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Segmentation fault with parallelism PG 10.4