[MDEV-6935] Change the default value for innodb_log_compressed_pages to false Created: 2014-10-24 Updated: 2017-07-07 Resolved: 2014-10-29 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | Storage Engine - InnoDB, Storage Engine - XtraDB |
| Fix Version/s: | 10.1.2 |
| Type: | Task | Priority: | Trivial |
| Reporter: | Jan Lindström (Inactive) | Assignee: | Jan Lindström (Inactive) |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | innodb, xtradb | ||
| Issue Links: |
|
||||||||||||||||||||||||
| Description |
|
https://github.com/facebook/mysql-5.6 Change the default value for innodb_log_compressed_pages to false Summary: Logging these pages is a waste. We don't want this to be enabled. One caution here: If the zlib version used by innodb is changed, but When crash recovery uses a zlib version at all different than the Because of the nature of compression, this is even possible when If this happens, mysql will fail to recover, since a page split can So, either the exact zlib version must be controlled between builds, This failure scenario can not happen if there was a clean shutdown. |
| Comments |
| Comment by Jan Lindström (Inactive) [ 2014-10-29 ] |
|
commit f0a545ccfbde0b7d5cf23968c8a6d3d919bb1455 Merge Facebook commit ca40b4417fd224a68de6636b58c92f133703fc68 Logging these pages is a waste. We don't want this to be enabled. One caution here: If the zlib version used by innodb is changed, but When crash recovery uses a zlib version at all different than the Because of the nature of compression, this is even possible when If this happens, mysql will fail to recover, since a page split can So, either the exact zlib version must be controlled between builds, This failure scenario can not happen if there was a clean shutdown. |