2025-01-04 03:04:27 +03:00
|
|
|
.\" SPDX-License-Identifier: CDDL-1.0
|
2024-07-26 19:16:18 +03:00
|
|
|
.\"
|
|
|
|
|
.\" CDDL HEADER START
|
|
|
|
|
.\"
|
|
|
|
|
.\" The contents of this file are subject to the terms of the
|
|
|
|
|
.\" Common Development and Distribution License (the "License").
|
|
|
|
|
.\" You may not use this file except in compliance with the License.
|
|
|
|
|
.\"
|
|
|
|
|
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
|
|
|
.\" or http://www.opensolaris.org/os/licensing.
|
|
|
|
|
.\" See the License for the specific language governing permissions
|
|
|
|
|
.\" and limitations under the License.
|
|
|
|
|
.\"
|
|
|
|
|
.\" When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
|
.\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
|
.\" If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
|
.\" fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
|
.\" information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
|
.\"
|
|
|
|
|
.\" CDDL HEADER END
|
|
|
|
|
.\"
|
|
|
|
|
.\"
|
|
|
|
|
.\" Copyright (c) 2023, Klara Inc.
|
|
|
|
|
.\"
|
|
|
|
|
.Dd February 14, 2024
|
|
|
|
|
.Dt ZPOOL-PREFETCH 8
|
|
|
|
|
.Os
|
|
|
|
|
.
|
|
|
|
|
.Sh NAME
|
|
|
|
|
.Nm zpool-prefetch
|
2025-11-11 03:16:22 +03:00
|
|
|
.Nd Prefetches pool metadata into ARC
|
2024-07-26 19:16:18 +03:00
|
|
|
.Sh SYNOPSIS
|
|
|
|
|
.Nm zpool
|
|
|
|
|
.Cm prefetch
|
2025-11-11 03:16:22 +03:00
|
|
|
.Op Fl t Ar type
|
2024-07-26 19:16:18 +03:00
|
|
|
.Ar pool
|
|
|
|
|
.Sh DESCRIPTION
|
2025-11-11 03:16:22 +03:00
|
|
|
Massively prefetch metadata of a specific type for the given pool into the ARC
|
|
|
|
|
to reduce latency of some operations later.
|
|
|
|
|
If no type is specified, all types are prefetched.
|
|
|
|
|
.Pp
|
|
|
|
|
The following types are supported:
|
|
|
|
|
.Bl -tag -width "brt"
|
|
|
|
|
.It Sy brt
|
|
|
|
|
Prefetch the BRT (block reference table).
|
|
|
|
|
This may improve performance for block cloning operations,
|
|
|
|
|
and frees for earlier cloned blocks.
|
|
|
|
|
.It Sy ddt
|
|
|
|
|
Prefetch the DDT (deduplication table).
|
|
|
|
|
This may improve performance of writes when deduplication is enabled,
|
|
|
|
|
and frees for earlier deduplicated blocks.
|
2024-07-26 19:16:18 +03:00
|
|
|
.El
|