Feature #12011
closedDisable log compression on new installations when ``/var/log`` is a ZFS dataset with compression enabled
0%
Description
The default setting for log compression is currently bzip2 for all cases, which isn't ideal for every case. If /var/log is on a ZFS dataset with compression, there isn't a compelling reason to have the logs also be compressed on rotation. ZFS is smart enough to not compress already compressed files, but it still seems inefficient and wasted effort since it's easier for users to have the log files uncompressed rather than having to read/search them using compression-related tools (e.g. bzcat, bzgrep, etc.). There are also reports from users in these cases that with large log files operations such as displaying the logs in the widget and searching are slow when using log compression.
On a fresh installation we could check if /var/log is on a ZFS dataset with compression enabled and automatically disable log compression on rotation in that case. The same should not be done post install as a user may deliberately want to set it for various reasons.
We may also want to disable log compression on specific slower hardware/disks but those cases are not as easily identified.
Updated by Jim Pingle over 3 years ago
I thought perhaps I could have the default be assumed as 'none' with ZFS but in practice that didn't go as well as I'd hoped. For fresh installs it was fine, but if someone already had ZFS and upgraded in-place, the log compression type switched and didn't work out as well. So there are two ways to proceed:
- Keep going this way, but also add upgrade code to reset the logs (a bit of a POLA violation)
- Explicitly set the type only during the very first boot before logs are configured
The second option is probably going to end up being easier and better for users in the long run.
Updated by Jim Pingle about 3 years ago
- Status changed from New to Feedback
Change is in now, GUI text is coming in #12012
Needs tested a few ways:
- Clean install with ZFS should have log compression disabled by default
- Clean install with UFS should have log compression enabled by default and set to bzip2
- Upgraded installations with ZFS should keep their existing setting on upgrade, but should disable compression by default after a factory reset.
Updated by Jim Pingle about 3 years ago
- Subject changed from Disable log compression on new installations when /var/log is on ZFS dataset with compression enabled to Disable log compression on new installations when ``/var/log`` is a ZFS dataset with compression enabled
Updating subject for release notes.
Updated by Jordan G about 3 years ago
2100 on ZFS upgraded to 22.01.a.20211023.0500 shows bzip2 as log compression setting. Set to none, saved and then factory defaulted system. Upon restart system still shows bzip2 as log compression setting despite factory default.
Updated by Jim Pingle about 3 years ago
I'm fairly certain that's because the 2100 and 1100 have compression off on /var/log
by default. You can confirm this by running /sbin/zfs get -H compression /var/log
. On my 1100, it's off
.
This function only disables compression when using ZFS and when compression for the ZFS /var/log
dataset is on
.
Updated by Jim Pingle about 3 years ago
- Plus Target Version changed from 21.09 to 22.01
Updated by Jim Pingle about 3 years ago
If you wipe and reload a 2100 or 1100 on a current 22.01 snapshot and use ZFS it will have lz4 compression on /var/log
and would be a valid test.
Updated by Jordan G about 3 years ago
clean install of 22.01.a.20211030.0500 on 1100 using ZFS, default selection under Status>Systems Logs>Settings>Log Compression shows bzip2 - /sbin/zfs get -H compression /var/log
shows lz4
changing setting to none, saving and rebooting still shows lz4 when running the previous command. reverting back to bzip2 (the default gui selection following clean install) shows lz4 as well.
Updated by Viktor Gurov about 3 years ago
Jordan Greene wrote in #note-8:
clean install of 22.01.a.20211030.0500 on 1100 using ZFS, default selection under Status>Systems Logs>Settings>Log Compression shows bzip2
fix:
https://gitlab.netgate.com/pfSense/pfSense/-/merge_requests/444
Updated by Jim Pingle about 3 years ago
- Status changed from Feedback to Pull Request Review
- Assignee changed from Jim Pingle to Viktor Gurov
Updated by Viktor Gurov about 3 years ago
- Status changed from Pull Request Review to Feedback
Updated by Jim Pingle almost 3 years ago
- Status changed from Feedback to Closed
Checked a few things I've recently reinstalled with zfs and they appear to have disabled compression on their own as expected with this.