Quantcast
Channel: Speed up creation of Postgres partial index - Database Administrators Stack Exchange
Browsing all 4 articles
Browse latest View live

Answer by Jürgen Strobel for Speed up creation of Postgres partial index

Maybe this is just over-engineered. Have you actually tried using a single full index? Partial indices covering the whole table together do not provide much gain, if any, for index lookups, and from...

View Article



Answer by Kirk Roybal for Speed up creation of Postgres partial index

You could also create the indexes on other tablespaces than the default. These tablespaces could point to disks that are not redundant (just recreate the indexes if they fail), or are on faster...

View Article

Answer by Erwin Brandstetter for Speed up creation of Postgres partial index

BRIN indexAvailable since Postgres 9.5 and probably just what you are looking for. Much faster index creation, much smaller index. But queries are typically not as fast. The manual:BRIN stands for...

View Article

Speed up creation of Postgres partial index

I am trying to create partial indexes for a large (1.2TB), static table in Postgres 9.4.My data is completely static, so I am able to insert all data, then create all indexes.In this 1.2TB table, I...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images