You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
just noticed that Postgres actually lacks incremental updating of materialized views. this means that the materialized view tables are locked for the ~50 seconds that it takes to update them. this isn't really acceptable since it would just cause our queries to them to timeout.
proposed resolution:
remake materialized views w/ different names then rename them
would be done in a PG transaction (means every step works or no steps work)
would reduce the update time
still takes ~50 seconds
how many indexes can we add?
experiment and see if we can index enough things to make the materialized view creation faster
just noticed that Postgres actually lacks incremental updating of materialized views. this means that the materialized view tables are locked for the ~50 seconds that it takes to update them. this isn't really acceptable since it would just cause our queries to them to timeout.
proposed resolution:
CC @adicu/density @rbtying
The text was updated successfully, but these errors were encountered: