postgresql - Configuring postgres free space per page -


we have update heavy table experiencing lot of bloat (10x). want increase free-space left unused in each page, make more updates write new mvcc tuple on same page (helping take advantage of heap tuples more effectively).

i'm pretty sure i've seen way configure "free space left per page" on per table basis @ point, life of me can't find it. possible?

thanks!

you searching fillfactor.

-- set 80% new data postgres=# alter table boo set (fillfactor = 80); alter table 

Comments

Popular posts from this blog

many to many - Django Rest Framework ManyToMany filter multiple values -

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

Java Entity Manager - JSON reader was expecting a value but found 'db' -