Using Compressed row_format in Percona xtradb cluster

Hi
Because the tables are relatively large, we intend to convert existing tables to use compressed row_fromat in PXC.
This will reduce the amount of disk space used.

Please let us know if there are any known issues that need to be addressed when converting the row_format.

Hello @anjaneyarajus,
Converting tables to compressed will require complete table rebuilds. If you do this in TOI mode, it will block everything on the cluster for the duration. If you use RSU, you must alter each table on every node individually. You can also try NBO, which is like TOI but won’t block other operations, however not all ALTER types are supported with NBO. Of course, you can use TOI + pt-online-schema-change for best results.

HI Mathew,

are there any challenges in using compressed row_format?

No challenges. Compression is transparent to the app and queries.