Re: Set FILLFACTOR for primary key
Peter Geoghegan <[email protected]> Wed, 9 Oct 2019 10:16:37 -0700
| Newsgroups | gmane.comp.db.postgresql.sql |
|---|---|
| Message-ID | <CAH2-WzmHpicUop=yD_e=MeR_MmtVtHciBdDyP-D-beM=LV0+JA@mail.gmail.com> |
On Wed, Oct 9, 2019 at 9:37 AM Ed Behn <[email protected]> wrote: > I have a table where I INSERT rows and DELETE rows. However, they are UPDATEd. Therefore, I've set FILLFACTOR to 100% for all of the indexes. I don't recommend it, since concurrent inserts that arrive slightly out of order (e.g. auto-incrementing sequence values) can now split pages a second time -- they have no wiggle room. > However, I can't figure out how to set the FILLFACTOR to 100 for the primary key. There is an ALTER INDEX for this. It works with primary keys, even though they're generally though of as constraints, not indexes. -- Peter Geoghegan