We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tables in Redshift needs to be vacuumed for peak performance. Auto VACUUM might not be helpful always. https://docs.aws.amazon.com/redshift/latest/dg/r_VACUUM_command.html https://docs.aws.amazon.com/redshift/latest/dg/t_Reclaiming_storage_space202.html https://docs.aws.amazon.com/redshift/latest/dg/r_SVV_TABLE_INFO.html
select "table", unsorted,vacuum_sort_benefit from svv_table_info order by 2 desc;
Can operator perform nightly vacuums on tables which have many unsorted and uncleaned data?
AWS does provide auto vacuuming, but we knowing the time of load and time when we want peak performance we can enable vacuuming from the operator.
The text was updated successfully, but these errors were encountered:
p3 since aws already does it well.
Sorry, something went wrong.
No branches or pull requests
Tables in Redshift needs to be vacuumed for peak performance. Auto VACUUM might not be helpful always.
https://docs.aws.amazon.com/redshift/latest/dg/r_VACUUM_command.html
https://docs.aws.amazon.com/redshift/latest/dg/t_Reclaiming_storage_space202.html
https://docs.aws.amazon.com/redshift/latest/dg/r_SVV_TABLE_INFO.html
Can operator perform nightly vacuums on tables which have many unsorted and uncleaned data?
AWS does provide auto vacuuming, but we knowing the time of load and time when we want peak performance we can enable vacuuming from the operator.
The text was updated successfully, but these errors were encountered: