Oracle_FDW table performance issue

Поиск
Список
Период
Сортировка
От aditya desai
Тема Oracle_FDW table performance issue
Дата
Msg-id CAN0SRDHGDsW0A1cyN=4x9sJNLRbRMP27TfvGbHDikcg2ZBNB9A@mail.gmail.com
обсуждение исходный текст
Ответы Re: Oracle_FDW table performance issue  (Justin Pryzby <pryzby@telsasoft.com>)
Re: Oracle_FDW table performance issue  (Laurenz Albe <laurenz.albe@cybertec.at>)
Список pgsql-performance
Hi,
I have one Oracle fdw table which is giving performance issue when joined local temp table gives performance issue.

select * from oracle_fdw_table where transaction_id in ( select transaction_id from temp_table) ---- 54 seconds. Seeing HASH SEMI JOIN  in EXPLAIN PLAN. temp_table has only 74 records.


select * from from oracle_fdw_table where transaction_id in ( 1,2,3,.....,75)--- 23ms.


Could you please help me understand this drastic behaviour change?

Regards,
Aditya.

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

Предыдущее
От: arjun shetty
Дата:
Сообщение: functionality difference-performance postgreSQLv14-GCC-llvm-clang
Следующее
От: Justin Pryzby
Дата:
Сообщение: Re: Oracle_FDW table performance issue