Search Postgresql Archives

Re: Dropping column from big table

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





On Thu, 11 Jul, 2024, 12:46 pm Ron Johnson, <ronljohnsonjr@xxxxxxxxx> wrote:
On Wed, Jul 10, 2024 at 11:28 PM sud <suds1434@xxxxxxxxx> wrote:



Thank you so much. When you said "you can execute one of the forms of ALTER TABLE that performs a rewrite
of the whole table." Does it mean that post "alter table drop column" the vacuum is going to run longer as it will try to clean up all the rows and recreate the new rows? But then how can this be avoidable or made better without impacting the system performance

"Impact" is a non-specific word.  "How much impact" depends on how many autovacuum workers you've set it to use, and how many threads you set in vacuumdb.
 
and blocking others?

VACUUM never blocks. 

Anyway, DROP is the easy part; it's ADD COLUMN that can take a lot of time (depending on whether or not you populate the column with a default value).

I'd detach all the partitions from the parent table, and then add the new column to the not-children in multiple threads, add the column to the parent and then reattach all of the children.  That's the fastest method, though takes some time to set up.


Thank you so much. 

Dropping will take it's own time for post vacuum however as you rightly said, it won't be blocking which should be fine. 

In regards to add column, Detaching all partitions then adding column  to the individual partition in multiple sessions and then reattaching looks to be a really awesome idea to make it faster. However one doubt, Will it create issue if there already exists foreign key on this partition table or say it's the parent to other child partition/nonpartition tables? 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]

  Powered by Linux