foreign table batch inserts

Поиск
Список
Период
Сортировка
От Manuel Kniep
Тема foreign table batch inserts
Дата
Msg-id 4C716CAC-6E5F-40F9-BA22-6C81CEA205B9@web.de
обсуждение исходный текст
Ответы Re: foreign table batch inserts  (Michael Paquier <michael.paquier@gmail.com>)
Список pgsql-hackers
Hi,

I realized that inserts into foreign tables are only done row by row.
Consider copying data from one local table to a foreign table with

INSERT INTO foreign_table(a,b,c) SELECT a,b,c FROM local_table;

When the foreign  server is for example in another datacenter with long latency,
this as an enormous performance trade off.

Wouldn’t it make sense to do the insert batch wise e.g. 100 rows ?
Are there any plans doing that or am I miss something?

regards

Manuel Kniep




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

Предыдущее
От: Amit Kapila
Дата:
Сообщение: Re: Parallel query and temp_file_limit
Следующее
От: Tom Lane
Дата:
Сообщение: Re: seg fault in contrib/bloom