.\" Automatically generated by Pandoc 2.10.1 .\" .TH "PMEMPOOL-TRANSFORM" "1" "2020-10-28" "PMDK - pmem Tools version 1.4" "PMDK Programmer's Manual" .hy .\" SPDX-License-Identifier: BSD-3-Clause .\" Copyright 2016-2018, Intel Corporation .SH NAME .PP \f[B]pmempool-transform\f[R] - Modify internal structure of a pool set. .SH SYNOPSIS .IP .nf \f[C] pmempool transform [options] \f[R] .fi .SH DESCRIPTION .PP The \f[B]pmempool transform\f[R] command modifies internal structure of a pool set defined by the \f[C]poolset_file_src\f[R] file, according to a structure described in the \f[C]poolset_file_dst\f[R] file. .PP The following operations are supported: .IP \[bu] 2 adding replicas - one or more new replicas can be added and synchronized with other replicas in the pool set, .IP \[bu] 2 removing replicas - one or more replicas can be removed from the pool set , .IP \[bu] 2 adding or removing pool set options. .PP Only one of the above operations can be performed at a time. .PP Currently adding and removing replicas are allowed only for \f[B]pmemobj\f[R] pools (see \f[B]libpmemobj\f[R](7)). .PP The \f[I]poolset_file_src\f[R] argument provides the source pool set to be changed. .PP The \f[I]poolset_file_dst\f[R] argument points to the target pool set. .PP When adding or deleting replicas, the two pool set files can differ only in the definitions of replicas which are to be added or deleted. When adding or removing pool set options (see \f[B]poolset\f[R](5)), the rest of both pool set files have to be of the same structure. The operation of adding/removing a pool set option can be performed on a pool set with local replicas only. To add/remove a pool set option to/from a pool set with remote replicas, one has to remove the remote replicas first, then add/remove the option, and finally recreate the remote replicas having added/removed the pool set option to/from the remote replicas\[cq] poolset files. To add a replica it is necessary for its effective size to match or exceed the pool size. Otherwise the whole operation fails and no changes are applied. If none of the poolset options is used, the effective size of a replica is the sum of sizes of all its part files decreased by 4096 bytes per each part file. The 4096 bytes of each part file is utilized for storing internal metadata of the pool part files. If the option \f[I]SINGLEHDR\f[R] is used, the effective size of a replica is the sum of sizes of all its part files decreased once by 4096 bytes. In this case only the first part contains internal metadata. If the option \f[I]NOHDRS\f[R] is used, the effective size of a replica is the sum of sizes of all its part files. In this case none of the parts contains internal metadata. .SS Available options: .TP \f[B]\f[CB]-d, --dry-run\f[B]\f[R] Enable dry run mode. In this mode no changes are applied, only check for viability of the operation is performed. .TP \f[B]\f[CB]-v, --verbose\f[B]\f[R] Increase verbosity level. .TP \f[B]\f[CB]-h, --help\f[B]\f[R] Display help message and exit. .SH EXAMPLES .SS Example 1. .PP Let files \f[C]/path/poolset_file_src\f[R] and \f[C]/path/poolset_file_dst\f[R] have the following contents: .IP .nf \f[C] PMEMPOOLSET 20M /0/partfile1 20M /0/partfile2 25M /0/partfile3 REPLICA 40M /1/partfile1 20M /1/partfile2 \f[R] .fi .IP .nf \f[C] PMEMPOOLSET 20M /0/partfile1 20M /0/partfile2 25M /0/partfile3 REPLICA 40M /1/partfile1 20M /1/partfile2 REPLICA 50M /2/partfile1 20M /2/partfile2 \f[R] .fi .PP Then, the command .PP \f[C]pmempool transform /path/poolset_file_src /path/poolset_file_dst\f[R] .PP adds a replica to the pool set. All other replicas remain unchanged and the size of the pool remains 60M. .SS Example 2. .PP Let files \f[C]/path/poolset_file_src\f[R] and \f[C]/path/poolset_file_dst\f[R] have the following contents: .IP .nf \f[C] PMEMPOOLSET 20M /0/partfile1 20M /0/partfile2 25M /0/partfile3 REPLICA 40M /1/partfile1 20M /1/partfile2 \f[R] .fi .IP .nf \f[C] PMEMPOOLSET 20M /0/partfile1 20M /0/partfile2 25M /0/partfile3 \f[R] .fi .PP Then .PP \f[C]pmempool_transform /path/poolset_file_src /path/poolset_file_dst\f[R] .PP deletes the second replica from the pool set. The first replica remains unchanged and the size of the pool is still 60M. .SH SEE ALSO .PP \f[B]pmempool(1)\f[R], \f[B]libpmemblk(7)\f[R], \f[B]libpmemlog(7)\f[R], \f[B]libpmempool(7)\f[R] and \f[B]\f[R]