mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 18:40:43 +03:00
Reduce minimal scrub/resilver times
With higher throughput and lower latency of modern devices ZFS can happily live with pretty short (fractions of a second) TXGs. But the two decade old multi-second minimal time limits can almost stop payload writes by extending TXGs beyond dirty data limits of ARC ability to amortize it. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Alexander Motin <alexander.motin@TrueNAS.com> Closes #18060
This commit is contained in:
@@ -189,7 +189,7 @@ static uint_t zfs_scan_mem_lim_fact = 20;
|
||||
static uint_t zfs_scan_mem_lim_soft_fact = 20;
|
||||
|
||||
/* minimum milliseconds to scrub per txg */
|
||||
static uint_t zfs_scrub_min_time_ms = 1000;
|
||||
static uint_t zfs_scrub_min_time_ms = 750;
|
||||
|
||||
/* minimum milliseconds to obsolete per txg */
|
||||
static uint_t zfs_obsolete_min_time_ms = 500;
|
||||
@@ -198,7 +198,7 @@ static uint_t zfs_obsolete_min_time_ms = 500;
|
||||
static uint_t zfs_free_min_time_ms = 500;
|
||||
|
||||
/* minimum milliseconds to resilver per txg */
|
||||
static uint_t zfs_resilver_min_time_ms = 3000;
|
||||
static uint_t zfs_resilver_min_time_ms = 1500;
|
||||
|
||||
static uint_t zfs_scan_checkpoint_intval = 7200; /* in seconds */
|
||||
int zfs_scan_suspend_progress = 0; /* set to prevent scans from progressing */
|
||||
|
||||
Reference in New Issue
Block a user