Browse your product documentation including release notes and installers
IMPORTANT: This legacy content is not maintained. All content regarding the CBP Test Tool is maintained on VMware Docs. You can find this specific topic here.
-------------------------------------------------------------------------------------------------------------------------------------
Executing CBPTest Tool - Disk Performance Testing Tool results in a log file Results.txt. To interpret these results:
NOTE: There has been an update to the script used and the way the results are displayed. Per the comment from Matt Larsen at the bottom of the page:
There is a change in the output. In order to increase accuracy, multiple test files are used. So you will see individual results per file, and a total. The INDIVIDUAL results should be nearly identical, and that is the value we use - not the total.
In the example shown above, the storage is capable of supporting a Cb Protection instance with up to 500 endpoints, with "Random Writes" being the limiting factor.
Here's a quick and dirty shell script for those on *nix/OSX to grab and print those three fields:
#!/usr/bin/env bash
# Useage:
# ./grab_cbptest_data.sh Results.txt
echo -n "Sequential Writes MB/s: "
head -92 $1 | tail -1 | cut -d "|" -f 3 | sed -e 's/^[[:space:]]*//'
echo -n "Random Reads MB/s: "
head -197 $1 | tail -1 | cut -d "|" -f 3 | sed -e 's/^[[:space:]]*//'
echo -n "Random Writes MB/s: "
head -316 $1 | tail -1 | cut -d "|" -f 3 | sed -e 's/^[[:space:]]*//'
There is a change in the output. In order to increase accuracy, multiple test files are used. So you will see individual results per file, and a total. The INDIVIDUAL results should be nearly identical, and that is the value we use - not the total.
In v2.1 the data will be parsed out.
Hey mlarsen any news on v2.1.
Thanks.