Krzysztof Kajrewicz
Krzysztof Kajrewicz
Remote pool set: ``` PMEMPOOLSET 20M /tmp/rep ``` Test: ``` #include #include #include #include #include int main() { unsigned lanes = 1; void *pool = (void *)aligned_alloc(4096, 20 * 1024...
It would be nice if printing info about many files would be possible. It can be useful especially when comparing information about many parts of the same pool. e.g. at...
e.g. there is no possibility to check consistency of pool set with remote replicas calling pmempool check CLI or using libpmempool API. Error with invalid argument msg. is returned now.
Add support of resolving $HOME env. var. in pool set files. ``` $cat pool.set PMEMPOOLSET 20M $HOME/pool ``` ``` $pmempool create obj pool.set error: 'pool.set' -- pool.set [incorrect path (must...
$cat pool.set: ``` PMEMPOOLSET 10M /dev/shm/pool REPLICA 192.168.0.182 rep.set ``` $cat rep.set ``` PMEMPOOLSET 10M /dev/shm/rep.1 10M /dev/shm/rep.2 ``` $pmempool create obj pool.set Local and remote pool files are created...
remote pool.set: ``` PMEMPOOLSET 20M /tmp/rep OPTION SINGLEHDR ``` Test: ``` #include #include #include #include #include int main() { unsigned lanes = 1; void *pool = (void *)aligned_alloc(4096, 20 *...