Add better fillfactor setting for storage_object and task tables

This commit is contained in:
Andrey Antukh 2024-08-23 15:09:58 +02:00
parent 401a28f317
commit 215148ca81
3 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,3 @@
--- This setting allow to optimize the table for heavy write workload
--- leaving space on the page for HOT updates
ALTER TABLE storage_object SET (FILLFACTOR=60);

View file

@ -0,0 +1,3 @@
--- This setting allow to optimize the table for heavy write workload
--- leaving space on the page for HOT updates
ALTER TABLE task SET (FILLFACTOR=60);