Wolf

Institution Intel
Client Procs Per Node
Client Operating System CentOS
Client Operating System Version 7.7
Client Kernel Version 3.10.0-1062.1.2.el7.x86_64

DATA SERVER

Storage Type Optane DC Persistent Memory
Volatile Memory 128GB
Storage Interface DDR-T
Network Omnipath
Software Version 0.6
OS Version 7.7

INFORMATION

Client Nodes 10
Client Total Procs 310

METADATA

Easy Write 2,615.89 kIOP/s
Easy Stat 2,856.70 kIOP/s
Easy Delete 1,880.53 kIOP/s
Hard Write 1,273.79 kIOP/s
Hard Read 1,897.29 kIOP/s
Hard Stat 2,829.32 kIOP/s
Hard Delete 1,869.05 kIOP/s

Submitted Files

io500
#!/bin/bash
#
# INSTRUCTIONS:
# Edit this file as needed for your machine.
# This simplified version is just for running on a single node.
# It is a simplified version of the site-configs/sandia/startup.sh which include SLURM directives.
# Most of the variables set in here are needed for io500_fixed.sh which gets sourced at the end of this.
# Please also edit 'extra_description' function.

set -euo pipefail  # better error handling

# turn these to True successively while you debug and tune this benchmark.
# for each one that you turn to true, go and edit the appropriate function.
# to find the function name, see the 'main' function.
# These are listed in the order that they run.
io500_run_ior_easy="True" # does the write phase and enables the subsequent read
io500_run_md_easy="True"  # does the creat phase and enables the subsequent stat
io500_run_ior_hard="True" # does the write phase and enables the subsequent read
io500_run_md_hard="True"  # does the creat phase and enables the subsequent read
io500_run_find="True"
io500_run_ior_easy_read="True"
io500_run_md_easy_stat="True"
io500_run_ior_hard_read="True"
io500_run_md_hard_stat="True"
io500_run_md_hard_read="True"
io500_run_md_easy_delete="True" # turn this off if you want to just run find by itself
io500_run_md_hard_delete="True" # turn this off if you want to just run find by itself
io500_run_mdreal="False"  # this one is optional
io500_cleanup_workdir="False"  # this flag is currently ignored. You'll need to clean up your data files manually if you want to.
io500_clean_cache="False" # attempt to clean the cache after every benchmark, useful for validating the performance results and for testing with a local node; it uses the io500_clean_cache_cmd (can be overwritten); make sure the user can write to /proc/sys/vm/drop_caches
io500_stonewall_timer=300 # Stonewalling timer, set to 300 to be an official run; set to 0, if you never want to abort...
io500_rules="regular" # Choose regular for an official regular submission or scc for a Student Cluster Competition submission to execute the test cases for 30 seconds instead of 300 seconds

# to run this benchmark, find and edit each of these functions.
# please also edit 'extra_description' function to help us collect the required data.
function main {
  setup_directories
  setup_paths
  setup_ior_easy # required if you want a complete score
  setup_ior_hard # required if you want a complete score
  setup_mdt_easy # required if you want a complete score
  setup_mdt_hard # required if you want a complete score
  setup_find     # required if you want a complete score
  setup_mdreal   # optional
  run_benchmarks
}

function setup_directories {
  # set directories for where the benchmark files are created and where the results will go.
  # If you want to set up stripe tuning on your output directories or anything similar, then this is good place to do it.
  timestamp=`date +%Y.%m.%d-%H.%M.%S`           # create a uniquifier
  io500_workdir=/mnt/dfuse/datafiles/io500.$timestamp # directory where the data will be stored
  io500_result_dir=/home/daos/io-500-run/results/$timestamp      # the directory where the output results will be kept
  mkdir -p $io500_workdir $io500_result_dir
  DAOS_FUSE=/mnt/dfuse
}

function setup_paths {
  # Set the paths to the binaries.  If you ran ./utilities/prepare.sh successfully, then binaries are in ./bin/
  io500_ior_cmd=/home/daos/install/bin/ior
  io500_mdtest_cmd=/home/daos/install/bin/mdtest
  io500_mdreal_cmd=$PWD/bin/md-real-io
  io500_mpirun="/home/daos/install/bin/orterun"
  io500_mpiargs="--mca oob tcp --mca btl tcp,self --hostfile /home/daos/hosts --allow-run-as-root --map-by node -np 310"
}

function setup_ior_easy {
  io500_ior_easy_params="-t 512k -a DFS --dfs.pool $DAOS_POOL --dfs.cont $DAOS_CONT --dfs.svcl $DAOS_SVCL --dfs.prefix $DAOS_FUSE"
  io500_ior_easy_size=1000000
  echo -n ""
}

function setup_mdt_easy {
  io500_mdtest_easy_params="-a DFS --dfs.cont $DAOS_CONT --dfs.svcl $DAOS_SVCL --dfs.pool $DAOS_POOL -u -L --dfs.oclass S1 --dfs.prefix $DAOS_FUSE" # unique dir per thread, files only at leaves
  io500_mdtest_easy_files_per_proc=4000000
}

function setup_ior_hard {
  io500_ior_hard_api="DFS"
  io500_ior_hard_api_specific_options="--dfs.cont $DAOS_CONT --dfs.svcl $DAOS_SVCL --dfs.pool $DAOS_POOL --dfs.prefix $DAOS_FUSE --dfs.chunk_size 376064"
  io500_ior_hard_writes_per_proc=2500000
}

function setup_mdt_hard {
  io500_mdtest_hard_api="DFS"
  io500_mdtest_hard_api_specific_options="--dfs.cont $DAOS_CONT --dfs.svcl $DAOS_SVCL --dfs.pool $DAOS_POOL --dfs.oclass S1 --dfs.prefix $DAOS_FUSE"
  io500_mdtest_hard_files_per_proc=2000000
}

function setup_find {
  #
  # setup the find command. This is an area where innovation is allowed.
  #    There are three default options provided. One is a serial find, one is python
  #    parallel version, one is C parallel version.  Current default is to use serial.
  #    But it is very slow. We recommend to either customize or use the C parallel version.
  #    For GPFS, we recommend to use the provided mmfind wrapper described below.
  #    Instructions below.
  #    If a custom approach is used, please provide enough info so others can reproduce.


  # the serial version that should run (SLOWLY) without modification
  #io500_find_mpi="False"
  #io500_find_cmd=/home/daos/install/bin/sfind.sh
  #io500_find_cmd_args=""

  # a parallel version in C, the -s adds a stonewall
  #   for a real run, turn -s (stonewall) off or set it at 300 or more
  #   to prepare this (assuming you've run ./utilities/prepare.sh already):
  #   > cd build/pfind
  #   > ./prepare.sh
  #   > ./compile.sh
  #   > cp pfind ../../bin/
  #   If you use io500_find_mpi="True", then this will run with the same
  #   number of MPI nodes and ranks as the other phases.
  #   If you prefer another number, and fewer might be better here,
  #   Then you can set io500_find_mpi to be "False" and write a wrapper
  #   script for this which sets up MPI as you would like.  Then change
  #   io500_find_cmd to point to your wrapper script.
  io500_find_mpi="True"
  io500_find_cmd="/home/daos/install/mpifileutils/bin/dfind"
  io500_find_cmd_args="--pool $DAOS_POOL --cont $DAOS_CONT --svcl $DAOS_SVCL --stonewall 300 --prefix $DAOS_FUSE --print"

  # for GPFS systems, you should probably use the provided mmfind wrapper
  # if you used ./utilities/prepare.sh, you'll find this wrapper in ./bin/mmfind.sh
  #io500_find_mpi="False"
  #io500_find_cmd="$PWD/bin/mmfind.sh"
  #io500_find_cmd_args=""
}

function setup_mdreal {
  echo -n ""
}

function run_benchmarks {
  # Important: source the io500_fixed.sh script.  Do not change it. If you discover
  # a need to change it, please email the mailing list to discuss
  source /home/daos/src/io-500-dev/utilities/io500_fixed.sh 2>&1 | tee $io500_result_dir/io-500-summary.$timestamp.txt
}

# Information fields; these provide information about your system hardware
# Use https://vi4io.org/io500-info-creator/ to generate information about your hardware
# that you want to include publicly!
function extra_description {
  # TODO: Please add your information using the info-creator!
  # EXAMPLE:
    echo io500_info_submitter='"Intel"'
    echo io500_info_institution='"Intel"'
    echo io500_info_system='"Wolf"'
    echo io500_info_system_classification='"Validation/CI"'
    echo io500_info_storage_vendor='"Intel"'
    echo io500_info_filesystem_name='"DAOS"'
    echo io500_info_filesystem_type='"DAOS"'
    echo io500_info_filesystem_version='"0.6"'
    echo io500_info_client_nodes='"10"'
    echo io500_info_client_procs_per_node='"31"'
    echo io500_info_client_operating_system='"CentOS"'
    echo io500_info_client_operating_system_version='"7.7"'
    echo io500_info_client_kernel_version='"3.10.0-1062.1.2.el7.x86_64"'
    echo io500_info_md_nodes='"0"'
    echo io500_info_md_storage_devices='"0"'
    echo io500_info_ds_nodes='"24"'
    echo io500_info_ds_storage_devices='"48"'
    echo io500_info_ds_storage_type='"Optane DC Persistent Memory"'
    echo io500_info_ds_volatile_memory_capacity='"128GB"'
    echo io500_info_ds_storage_interface='"DDR-T"'
    echo io500_info_ds_network='"Omnipath"'
    echo io500_info_ds_software_version='"0.6"'
    echo io500_info_ds_operating_system_version='"7.7"'
    echo io500_info_comment='"DAOS has no dedicated metadata server"'
}

main
ior_easy_read
ior WARNING: fsync() not supported in selected backend.  Using value of 0.
IOR-3.3.0+dev: MPI Coordinated Test of Parallel I/O
Began               : Fri Nov  8 12:45:31 2019
Command line        : /home/daos/install/bin/ior -r -R -t 512k -a DFS --dfs.pool 38df66d4-b4d5-4504-bc9e-e8b68c12ba0a --dfs.cont 21f1d599-afb3-483d-b2fd-e3e5d7d39376 --dfs.svcl 1 --dfs.prefix /mnt/dfuse -b 1000000m -i 1 -C -Q 1 -g -G 27 -k -e -o /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_easy/ior_file_easy -O stoneWallingStatusFile=/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_easy/stonewall
Machine             : Linux wolf-79.wolf.hpdd.intel.com
TestID              : 0
StartTime           : Fri Nov  8 12:45:31 2019

Options: 
api                 : DFS
apiVersion          : DAOS
test filename       : /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_easy/ior_file_easy
access              : single-shared-file
type                : independent
segments            : 1
ordering in a file  : sequential
ordering inter file : constant task offset
task offset         : 1
nodes               : 10
tasks               : 310
clients per node    : 31
repetitions         : 1
xfersize            : 524288 bytes
blocksize           : 976.56 GiB
aggregate filesize  : 295.64 TiB

Results: 

access    bw(MiB/s)  IOPS       Latency(s)  block(KiB) xfer(KiB)  open(s)    wr/rd(s)   close(s)   total(s)   iter
------    ---------  ----       ----------  ---------- ---------  --------   --------   --------   --------   ----
WARNING: Expected aggregate file size       = 325058560000000.
WARNING: Stat() of aggregate file size      = 324133656199168.
WARNING: Using actual aggregate bytes moved = 38338381742080.
read      189567     379165     0.000096    1024000000 512.00     0.015427   192.86     0.097601   192.87     0   
Max Read:  189567.36 MiB/sec (198775.79 MB/sec)

Summary of all tests:
Operation   Max(MiB)   Min(MiB)  Mean(MiB)     StdDev   Max(OPs)   Min(OPs)  Mean(OPs)     StdDev    Mean(s) Stonewall(s) Stonewall(MiB) Test# #Tasks tPN reps fPP reord reordoff reordrand seed segcnt   blksiz    xsize aggs(MiB)   API RefNum
read       189567.36  189567.36  189567.36       0.00  379134.72  379134.72  379134.72       0.00  192.87249         NA            NA     0    310  31    1   0     1        1         0    0      1 1048576000000   524288 36562328.0 DFS      0
Finished            : Fri Nov  8 12:48:44 2019
ior_easy_write
ior WARNING: fsync() not supported in selected backend.  Using value of 0.
IOR-3.3.0+dev: MPI Coordinated Test of Parallel I/O
Began               : Fri Nov  8 12:17:04 2019
Command line        : /home/daos/install/bin/ior -w -t 512k -a DFS --dfs.pool 38df66d4-b4d5-4504-bc9e-e8b68c12ba0a --dfs.cont 21f1d599-afb3-483d-b2fd-e3e5d7d39376 --dfs.svcl 1 --dfs.prefix /mnt/dfuse -b 1000000m -i 1 -C -Q 1 -g -G 27 -k -e -o /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_easy/ior_file_easy -O stoneWallingStatusFile=/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_easy/stonewall -O stoneWallingWearOut=1 -D 300
Machine             : Linux wolf-79.wolf.hpdd.intel.com
TestID              : 0
StartTime           : Fri Nov  8 12:17:04 2019

Options: 
api                 : DFS
apiVersion          : DAOS
test filename       : /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_easy/ior_file_easy
access              : single-shared-file
type                : independent
segments            : 1
ordering in a file  : sequential
ordering inter file : constant task offset
task offset         : 1
nodes               : 10
tasks               : 310
clients per node    : 31
repetitions         : 1
xfersize            : 524288 bytes
blocksize           : 976.56 GiB
aggregate filesize  : 295.64 TiB
stonewallingTime    : 300
stoneWallingWearOut : 1

Results: 

access    bw(MiB/s)  IOPS       Latency(s)  block(KiB) xfer(KiB)  open(s)    wr/rd(s)   close(s)   total(s)   iter
------    ---------  ----       ----------  ---------- ---------  --------   --------   --------   --------   ----
stonewalling pairs accessed min: 214844 max: 235886 -- min data: 104.9 GiB mean data: 109.3 GiB time: 300.2s
WARNING: Expected aggregate file size       = 325058560000000.
WARNING: Stat() of aggregate file size      = 324133656199168.
WARNING: Using actual aggregate bytes moved = 38338381742080.
WARNING: maybe caused by deadlineForStonewalling
write     110905     228761     0.000159    1024000000 512.00     10.03      319.66     0.167928   329.67     0   
Max Write: 110904.52 MiB/sec (116291.82 MB/sec)

Summary of all tests:
Operation   Max(MiB)   Min(MiB)  Mean(MiB)     StdDev   Max(OPs)   Min(OPs)  Mean(OPs)     StdDev    Mean(s) Stonewall(s) Stonewall(MiB) Test# #Tasks tPN reps fPP reord reordoff reordrand seed segcnt   blksiz    xsize aggs(MiB)   API RefNum
write      110904.52  110904.52  110904.52       0.00  221809.04  221809.04  221809.04       0.00  329.67394     300.16     115570.41     0    310  31    1   0     1        1         0    0      1 1048576000000   524288 36562328.0 DFS      0
Finished            : Fri Nov  8 12:22:34 2019
ior_hard_read
ior WARNING: fsync() not supported in selected backend.  Using value of 0.
IOR-3.3.0+dev: MPI Coordinated Test of Parallel I/O
Began               : Fri Nov  8 12:53:56 2019
Command line        : /home/daos/install/bin/ior -r -R -s 2500000 -a DFS --dfs.cont 21f1d599-afb3-483d-b2fd-e3e5d7d39376 --dfs.svcl 1 --dfs.pool 38df66d4-b4d5-4504-bc9e-e8b68c12ba0a --dfs.prefix /mnt/dfuse --dfs.chunk_size 376064 -i 1 -C -Q 1 -g -G 27 -k -e -t 47008 -b 47008 -o /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_hard/IOR_file -O stoneWallingStatusFile=/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_hard/stonewall
Machine             : Linux wolf-79.wolf.hpdd.intel.com
TestID              : 0
StartTime           : Fri Nov  8 12:53:56 2019

Options: 
api                 : DFS
apiVersion          : DAOS
test filename       : /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_hard/IOR_file
access              : single-shared-file
type                : independent
segments            : 2500000
ordering in a file  : sequential
ordering inter file : constant task offset
task offset         : 1
nodes               : 10
tasks               : 310
clients per node    : 31
repetitions         : 1
xfersize            : 47008 bytes
blocksize           : 47008 bytes
aggregate filesize  : 33.13 TiB

Results: 

access    bw(MiB/s)  IOPS       Latency(s)  block(KiB) xfer(KiB)  open(s)    wr/rd(s)   close(s)   total(s)   iter
------    ---------  ----       ----------  ---------- ---------  --------   --------   --------   --------   ----
WARNING: Expected aggregate file size       = 36431200000000.
WARNING: Stat() of aggregate file size      = 30284265631360.
WARNING: Using actual aggregate bytes moved = 30284265631360.
read      129145     2880935    223.62      45.91      45.91      0.015240   223.62     0.113904   223.63     0   
Max Read:  129144.97 MiB/sec (135418.31 MB/sec)

Summary of all tests:
Operation   Max(MiB)   Min(MiB)  Mean(MiB)     StdDev   Max(OPs)   Min(OPs)  Mean(OPs)     StdDev    Mean(s) Stonewall(s) Stonewall(MiB) Test# #Tasks tPN reps fPP reord reordoff reordrand seed segcnt   blksiz    xsize aggs(MiB)   API RefNum
read       129144.97  129144.97  129144.97       0.00 2880750.34 2880750.34 2880750.34       0.00  223.63494         NA            NA     0    310  31    1   0     1        1         0    0 2500000    47008    47008 28881326.0 DFS      0
Finished            : Fri Nov  8 12:57:39 2019
ior_hard_write
ior WARNING: fsync() not supported in selected backend.  Using value of 0.
IOR-3.3.0+dev: MPI Coordinated Test of Parallel I/O
Began               : Fri Nov  8 12:28:23 2019
Command line        : /home/daos/install/bin/ior -w -s 2500000 -a DFS --dfs.cont 21f1d599-afb3-483d-b2fd-e3e5d7d39376 --dfs.svcl 1 --dfs.pool 38df66d4-b4d5-4504-bc9e-e8b68c12ba0a --dfs.prefix /mnt/dfuse --dfs.chunk_size 376064 -i 1 -C -Q 1 -g -G 27 -k -e -t 47008 -b 47008 -o /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_hard/IOR_file -O stoneWallingStatusFile=/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_hard/stonewall -O stoneWallingWearOut=1 -D 300
Machine             : Linux wolf-79.wolf.hpdd.intel.com
TestID              : 0
StartTime           : Fri Nov  8 12:28:23 2019

Options: 
api                 : DFS
apiVersion          : DAOS
test filename       : /mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/ior_hard/IOR_file
access              : single-shared-file
type                : independent
segments            : 2500000
ordering in a file  : sequential
ordering inter file : constant task offset
task offset         : 1
nodes               : 10
tasks               : 310
clients per node    : 31
repetitions         : 1
xfersize            : 47008 bytes
blocksize           : 47008 bytes
aggregate filesize  : 33.13 TiB
stonewallingTime    : 300
stoneWallingWearOut : 1

Results: 

access    bw(MiB/s)  IOPS       Latency(s)  block(KiB) xfer(KiB)  open(s)    wr/rd(s)   close(s)   total(s)   iter
------    ---------  ----       ----------  ---------- ---------  --------   --------   --------   --------   ----
stonewalling pairs accessed min: 2050458 max: 2078182 -- min data: 89.8 GiB mean data: 90.9 GiB time: 300.2s
WARNING: Expected aggregate file size       = 36431200000000.
WARNING: Stat() of aggregate file size      = 30284265631360.
WARNING: Using actual aggregate bytes moved = 30284265631360.
WARNING: maybe caused by deadlineForStonewalling
write     95413      2129535    300.43      45.91      45.91      0.024097   302.52     0.157087   302.70     0   
Max Write: 95413.36 MiB/sec (100048.16 MB/sec)

Summary of all tests:
Operation   Max(MiB)   Min(MiB)  Mean(MiB)     StdDev   Max(OPs)   Min(OPs)  Mean(OPs)     StdDev    Mean(s) Stonewall(s) Stonewall(MiB) Test# #Tasks tPN reps fPP reord reordoff reordrand seed segcnt   blksiz    xsize aggs(MiB)   API RefNum
write       95413.36   95413.36   95413.36       0.00 2128322.06 2128322.06 2128322.06       0.00  302.69687     300.18      96160.11     0    310  31    1   0     1        1         0    0 2500000    47008    47008 28881326.0 DFS      0
Finished            : Fri Nov  8 12:33:26 2019
mdtest_easy_delete
-- started at 11/08/2019 13:00:41 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-r' '-F' '-P' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_easy' '-n' '4000000' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '-u' '-L' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_easy-stonewall' '-N' '1'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 1240000000 files

SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :    1880533.796    1879586.103    1880344.937        377.111
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.154          0.154          0.154          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :        445.944        445.720        445.764          0.089
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          6.491          6.491          6.491          0.000
-- finished at 11/08/2019 13:08:13 --

mdtest_easy_stat
-- started at 11/08/2019 12:48:53 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-T' '-F' '-P' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_easy' '-n' '4000000' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '-u' '-L' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_easy-stonewall' '-N' '1'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 1240000000 files

SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :    2856703.654    2855264.122    2856416.594        572.820
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.000          0.000          0.000          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :        293.560        293.412        293.441          0.059
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.000          0.000          0.000          0.000
-- finished at 11/08/2019 12:53:46 --

mdtest_easy_write
-- started at 11/08/2019 12:22:43 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-C' '-F' '-P' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_easy' '-n' '4000000' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '-u' '-L' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_easy-stonewall' '-N' '1' '-W' '300'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 1240000000 files
Continue stonewall hit min: 2375342 max: 2703841 avg: 2614959.1 


SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :    2615886.044    2614567.548    2615623.205        524.653
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   File create (stonewall)   :             NA             NA    2794093.368             NA
   Tree creation             :          0.100          0.100          0.100          0.000
   Tree removal              :          0.000          0.000          0.000          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :        320.585        320.423        320.455          0.064
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   File create (stonewall)   :             NA             NA        290.125             NA
   Tree creation             :         10.019         10.019         10.019          0.000
   Tree removal              :          0.000          0.000          0.000          0.000
-- finished at 11/08/2019 12:28:14 --

mdtest_hard_delete
-- started at 11/08/2019 13:12:32 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-r' '-t' '-F' '-P' '-w' '3901' '-e' '3901' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard' '-n' '2000000' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard-stonewall' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-N' '1'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 620000000 files

SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :    1869047.055    1868105.297    1868859.384        374.742
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.001          0.001          0.001          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :        244.135        244.012        244.036          0.049
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :        795.639        795.639        795.639          0.000
-- finished at 11/08/2019 13:29:52 --

mdtest_hard_read
-- started at 11/08/2019 13:08:22 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-X' '-E' '-t' '-F' '-P' '-w' '3901' '-e' '3901' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard' '-n' '2000000' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard-stonewall' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-N' '1'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 620000000 files

SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :    1897294.629    1896338.103    1897103.877        380.466
   File removal              :          0.000          0.000          0.000          0.000
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.000          0.000          0.000          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :        240.500        240.379        240.403          0.048
   File removal              :          0.000          0.000          0.000          0.000
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.000          0.000          0.000          0.000
-- finished at 11/08/2019 13:12:23 --

mdtest_hard_stat
-- started at 11/08/2019 12:57:50 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-T' '-t' '-F' '-P' '-w' '3901' '-e' '3901' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard' '-n' '2000000' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard-stonewall' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-N' '1'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 620000000 files

SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :    2829316.146    2827890.346    2829032.056        567.442
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.000          0.000          0.000          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :          0.000          0.000          0.000          0.000
   File stat                 :        161.276        161.194        161.211          0.032
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   Tree creation             :          0.000          0.000          0.000          0.000
   Tree removal              :          0.000          0.000          0.000          0.000
-- finished at 11/08/2019 13:00:32 --

mdtest_hard_write
-- started at 11/08/2019 12:33:35 --

mdtest-3.3.0+dev was launched with 310 total task(s) on 10 node(s)
Command line used: /home/daos/install/bin/mdtest '-C' '-t' '-F' '-P' '-w' '3901' '-e' '3901' '-d' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard' '-n' '2000000' '-x' '/mnt/dfuse/datafiles/io500.2019.11.08-12.16.57/mdt_hard-stonewall' '-a' 'DFS' '--dfs.cont' '21f1d599-afb3-483d-b2fd-e3e5d7d39376' '--dfs.svcl' '1' '--dfs.pool' '38df66d4-b4d5-4504-bc9e-e8b68c12ba0a' '--dfs.oclass' 'S1' '--dfs.prefix' '/mnt/dfuse' '-N' '1' '-W' '300'
Nodemap: 1000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000100000000010000000001000000000
V-0: Rank   0 Line  2137 Shifting ranks by 1 for each phase.
310 tasks, 620000000 files
Continue stonewall hit min: 1160282 max: 1471193 avg: 1385236.1 


SUMMARY rate: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :    1273794.885    1273152.791    1273666.817        255.431
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   File create (stonewall)   :             NA             NA    1430756.940             NA
   Tree creation             :        127.430        127.430        127.430          0.000
   Tree removal              :          0.000          0.000          0.000          0.000

SUMMARY time: (of 1 iterations)
   Operation                      Max            Min           Mean        Std Dev
   ---------                      ---            ---           ----        -------
   File creation             :        358.221        358.040        358.076          0.072
   File stat                 :          0.000          0.000          0.000          0.000
   File read                 :          0.000          0.000          0.000          0.000
   File removal              :          0.000          0.000          0.000          0.000
   File create (stonewall)   :             NA             NA        300.137             NA
   Tree creation             :          0.008          0.008          0.008          0.000
   Tree removal              :          0.000          0.000          0.000          0.000
-- finished at 11/08/2019 12:39:34 --

result_summary
[RESULT] BW   phase 1            ior_easy_write              108.306 GB/s : time 319.66 seconds
[RESULT] IOPS phase 1         mdtest_easy_write             2615.890 kiops : time 320.58 seconds
[RESULT] BW   phase 2            ior_hard_write               93.177 GB/s : time 302.52 seconds
[RESULT] IOPS phase 2         mdtest_hard_write             1273.790 kiops : time 358.22 seconds
[RESULT] IOPS phase 3                      find             2565.530 kiops : time 348.00 seconds
[RESULT] BW   phase 3             ior_easy_read              185.124 GB/s : time 192.86 seconds
[RESULT] IOPS phase 4          mdtest_easy_stat             2856.700 kiops : time 293.56 seconds
[RESULT] BW   phase 4             ior_hard_read              126.118 GB/s : time 223.62 seconds
[RESULT] IOPS phase 5          mdtest_hard_stat             2829.320 kiops : time 161.28 seconds
[RESULT] IOPS phase 6        mdtest_easy_delete             1880.530 kiops : time 445.94 seconds
[RESULT] IOPS phase 7          mdtest_hard_read             1897.290 kiops : time 240.50 seconds
[RESULT] IOPS phase 8        mdtest_hard_delete             1869.050 kiops : time 1048.98 seconds
[SCORE] Bandwidth 123.894 GB/s : IOPS 2152.46 kiops : TOTAL 516.408