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

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

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -