Re: fast refresh materialized view

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: fast refresh materialized view
Дата
Msg-id 249772231.3141506.1447518156518.JavaMail.yahoo@mail.yahoo.com
обсуждение исходный текст
Ответ на fast refresh materialized view  ("Pradhan, Sabin" <Sabin.Pradhan@finra.org>)
Список pgsql-general
On Friday, November 13, 2015 4:02 PM, "Pradhan, Sabin" <Sabin.Pradhan@finra.org> wrote:

> Does postgres  has fast refresh materialized view  that supports
> incremental refresh. In oracle  , this is achieve  by materialized
> view log. Not sure how to  implement it in postgres.

There has been work toward that end, but for now the best you can
do is REFRESH MATERIALIZED VIEW CONCURRENTLY.  This still
materializes the full view in a temp table, but essentially "diffs"
that against the existing data to apply an incremental change set.
The can be done concurrently with reads against the materialized
view and with reads and writes against the source tables.

We are probably at least two years from having what you describe.

--
Kevin Grittner
EDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

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

Предыдущее
От: Thomas Kellerer
Дата:
Сообщение: Re: Poor performance on 9.4.4 when matching multiple columns from left side of LATERAL join
Следующее
От: Steven Grimm
Дата:
Сообщение: Re: Poor performance on 9.4.4 when matching multiple columns from left side of LATERAL join