The Vertica Forum recently got a makeover! Let us know what you think by filling out this short, anonymous survey.
Please take this survey to help us learn more about how you use third party tools. Your input is greatly appreciated!
Bulk Update in Table
Hi,
Bulk update has been done to one of the Vertica table without following any best practices. Nearly 500 ROS containers are created and no of delete vectors are close to 400. Could you please guide me how to clean this up.
0
Comments
You could purge the table to remove all the delete vectors
1- First move the ahm : SELECT make_ahm_now();
2- Purge the table : SELECT PURGE_TABLE('
Thanks Emoreno. AHM_EPOCH() is not advancing.
Current epoch is 5900345 and AHM is 5830810
Currently, MergeOut is running for replay Delete.
1. Shall I wait for the merge out to complete by itself?
2. Once the merge out is complete, will AHM advance automatically? or should we do it manually?
Hi,
Looks like all WOS are moved to ROS during move out tuple operation.But, I can see around 20K delete vectors created for this table for storage type DVROS.
Should I purge the table to recover the space occupied for the deleted records in ROS?
Please ignore my previous comment. I have gone through the content which was shared before.
https://my.vertica.com/hpe-vertica-troubleshooting-checklists/manage-delete-vectors/
Will take care. Thanks
Delete vectors should be purged with Mergeout but you can, as Eugenia (emoreno) mentioned, purge manually with the two steps Eugenia mentioned above. Getting rid of the delete vectors will help query performance and will gain you disk space.
You mentioned your AHM is not advancing. Are all your nodes up? AHM will not advance when you have a node down.
You asked if the AHM will advance automatically. Yes, it advances automatically according to the configuration parameter AdvanceAHMInterval, which is 180 seconds by default if you haven't changed that parameter. Note, AHM will not advance past the LGE. That is the epoch to look at when comparing with the AHM not the CE. Hope this helps.
AHM is advancing this week as one of the node was down last week. I will try to purge the table manually. Thanks for the information.