I have a table with big text column, approx 3M per row, the table is using InnoDB storage engine. The binlog size is an issue,
I have binlog turned on and configured to format:row.
I do know about log_bin_compress option, but before I try it as solution and turn it on for server wide and pay for its impact, I would like to know if there is a more specific solution just for this table.
I also do know about binlog_row_image option minimal, but it seems, the application changes the column every time... so it can not spare space for me.
Question
If I configure column compression this text column, will it affect the size of the binlog logged event?
If this is not an option, will any kind of InnoDB compression, (either row, either page) affect size of the binlog logged event?
log_bin_compressis not a feature in MySQL. It was developed for MariaDB.MEDIUMTEXTcolumn? Maybe there is a different way to deal with it. Is there aFULLTEXTindex on the column?