[PERFORM] max partitions behind a view?

Поиск
Список
Период
Сортировка
От Rick Otten
Тема [PERFORM] max partitions behind a view?
Дата
Msg-id CAMAYy4Jd12CyPFeumOd8g2ar_DmgfH4cvuE5rxocsdi=KDpf0A@mail.gmail.com
обсуждение исходный текст
Ответы Re: [PERFORM] max partitions behind a view?
Список pgsql-performance
I use materialized views to cache results from a foreign data wrapper to a high latency, fairly large (cloud) Hadoop instance.  In order to boost refresh times I split the FDW and materialized views up into partitions.  

Note:  I can't use pg_partman or native partitioning because those don't really work with this architecture - they are designed for "real" tables.  I can't really use citus because it isn't FDW/matview aware at this time either.

I then join the various materialized views together with a regular view made up of a bunch of 'union all' statements.

I have a set of functions which automatically create the new partitions and then replace the top level view to add them in on the fly.  At this time I probably have about 60 partitions.

With that approach I can refresh individual chunks of data, or I can refresh several chunks in parallel.  Generally this has been working pretty well.  One side effect is that because this is not a real partition, the planner does have to check each partition whenever I run a query to see if it has the data I need.  With appropriate indexes, this is ok, checking the partitions that don't have the data is very quick.  It does make for some long explain outputs though.

The challenge is that because of an exponential rate of data growth, I might have to significantly increase the number of partitions I'm working with - to several hundred at a minimum and potentially more than 1000...

This leads me to the question how many 'union all' statements can I have in one view?   Should I create a hierarchy of views to gradually roll the data up instead of putting them all in one top-level view?

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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: [PERFORM] Pageinspect bt_metap help
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [PERFORM] max partitions behind a view?