We’re currently using MySQL with innodb and we have some large tables that are compact in row format. When I change the row format to compressed we are still seeing the same size for the table. Anyone know the reason for this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Is it possible you declared ROW_FORMAT=COMPRESSED for the table, but you did not enable the configuration value innodb_file_format=BARRACUDA?
If you don’t do the latter step, then any request for Barracuda row formats will not take effects. And such a request generates a warning:
Also, you can’t use compressed row format unless you also enable
innodb_file_per_table.