Files
mirror_zfs/module/zfs
Alexander Motin dc91a6a660 Several B-tree optimizations
- Introduce first element offset within a leaf.  It allows to reduce
by ~50% average memmove() size when adding/removing elements.  If the
added/removed element is in the first half of the leaf, we may shift
elements before it and adjust the bth_first instead of moving more
elements after it.
 - Use memcpy() instead of memmove() when we know there is no overlap.
 - Switch from uint64_t to uint32_t.  It does not limit anything,
but 32-bit arches should appreciate it greatly in hot paths.
 - Store leaf capacity in struct btree to avoid 64-bit divisions.
 - Adjust zfs_btree_insert_into_leaf() to always result in balanced
leaves after splitting, no matter where the new element was inserted.
Not that we care about it much, but it should also allow B-trees with
as little as two elements per leaf instead of 4 previously.

When scrubbing pool of 12 SSDs, storing 1.5TB of 4KB zvol blocks this
reduces amount of time spent in memmove() inside the scan thread from
13.7% to 5.7% and total scrub time by ~15 seconds out of 9 minutes.
It should also reduce spacemaps load time, but I haven't measured it.

Reviewed-by: Paul Dagnelie <pcd@delphix.com>
Signed-off-by: Alexander Motin <mav@FreeBSD.org>
Sponsored-By: iXsystems, Inc.
Closes #13582
2022-07-26 10:10:37 -07:00
..
2022-07-26 10:10:37 -07:00
2021-06-09 13:05:34 -07:00
2022-07-26 10:10:37 -07:00
2020-08-20 10:30:06 -07:00
2019-07-26 10:54:14 -07:00
2019-06-19 09:48:12 -07:00
2022-07-26 10:10:37 -07:00
2021-06-09 13:05:34 -07:00
2020-11-02 11:51:12 -08:00
2021-06-24 13:12:36 -07:00
2022-04-01 09:59:47 -07:00
2022-07-26 10:10:37 -07:00
2020-06-18 12:21:25 -07:00
2022-02-16 17:58:56 -08:00
2017-10-11 16:54:48 -04:00
2022-02-16 17:58:56 -08:00
2020-11-13 13:51:51 -08:00
2022-07-26 10:10:37 -07:00
2021-09-14 12:10:17 -07:00
2019-06-19 09:48:12 -07:00
2020-07-29 16:35:33 -07:00
2022-02-16 17:58:56 -08:00
2020-06-18 12:21:25 -07:00
2020-06-18 12:21:25 -07:00
2021-02-20 20:16:50 -08:00
2021-06-24 13:12:36 -07:00
2022-07-26 10:10:37 -07:00
2021-06-10 10:50:16 -07:00
2022-07-26 10:10:37 -07:00
2021-06-24 13:12:36 -07:00
2019-10-09 10:36:03 -07:00
2021-11-02 09:50:30 -07:00
2021-11-02 09:50:30 -07:00
2022-07-14 10:21:29 -07:00
2022-07-26 10:10:37 -07:00
2020-11-13 13:51:51 -08:00
2022-07-26 10:10:37 -07:00
2020-06-18 12:21:25 -07:00
2019-09-02 17:56:41 -07:00
2022-02-16 17:58:56 -08:00
2020-10-02 17:44:10 -07:00
2020-06-18 12:20:38 -07:00
2022-05-02 15:42:58 -07:00
2021-11-02 09:50:30 -07:00
2021-01-20 21:27:30 -08:00
2022-02-16 17:58:56 -08:00
2020-06-18 12:21:25 -07:00
2020-06-18 12:21:18 -07:00
2022-05-02 15:42:58 -07:00