From d76496b2b34f76d88b528a5ac90a7e2626d8f534 Mon Sep 17 00:00:00 2001 From: asim Date: Mon, 18 Sep 2017 11:20:42 -0700 Subject: [PATCH 1/3] updated for dxt_analyzer from LBNL --- darshan-util/dxt_analyzer.py | 300 + darshan-util/dxt_analyzer/README.txt | 47 + darshan-util/dxt_analyzer/darshan_dxt-a.txt | 187535 ++++++++++++++++ darshan-util/dxt_analyzer/darshan_dxt-c.txt | 8880 + darshan-util/dxt_analyzer/darshan_dxt-d.txt | 62659 ++++++ darshan-util/dxt_analyzer/darshan_dxt-df.txt | 131340 +++++++++++ darshan-util/dxt_analyzer/darshan_dxt-v.txt | 49290 ++++ darshan-util/dxt_analyzer/dxt_analyzer.py | 300 + 8 files changed, 440351 insertions(+) create mode 100755 darshan-util/dxt_analyzer.py create mode 100644 darshan-util/dxt_analyzer/README.txt create mode 100644 darshan-util/dxt_analyzer/darshan_dxt-a.txt create mode 100644 darshan-util/dxt_analyzer/darshan_dxt-c.txt create mode 100644 darshan-util/dxt_analyzer/darshan_dxt-d.txt create mode 100644 darshan-util/dxt_analyzer/darshan_dxt-df.txt create mode 100644 darshan-util/dxt_analyzer/darshan_dxt-v.txt create mode 100755 darshan-util/dxt_analyzer/dxt_analyzer.py diff --git a/darshan-util/dxt_analyzer.py b/darshan-util/dxt_analyzer.py new file mode 100755 index 0000000..e520ab7 --- /dev/null +++ b/darshan-util/dxt_analyzer.py @@ -0,0 +1,300 @@ +#!/usr/bin/env python2 + +### +# +# *** Copyright Notice *** +# +# dxt_analyzer.py +# Copyright (c) 2017, The Regents of the University of California, +# through Lawrence Berkeley National Laboratory (subject to receipt +# of any required approvals from the U.S. Dept. of Energy). +# All rights reserved. +# +# If you have questions about your rights to use or distribute this software, +# please contact Berkeley Lab's Innovation & Partnerships Office +# at IPO@lbl.gov. +# +# NOTICE. This software was developed under funding from the +# U.S. Department of Energy. As such, the U.S. Government has been granted +# for itself and others acting on its behalf a paid-up, nonexclusive, +# irrevocable, worldwide license in the Software to reproduce, prepare +# derivative works, and perform publicly and display publicly. Beginning +# five (5) years after the date permission to assert copyright is obtained +# from the U.S. Department of Energy, and subject to any subsequent five (5) +# year renewals, the U.S. Government is granted for itself and others acting +# on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in +# the Software to reproduce, prepare derivative works, distribute copies to +# the public, perform publicly and display publicly, and to permit others to +# do so. +# +# Email questions to SDMSUPPORT@LBL.GOV +# Scientific Data Management Research Group +# Lawrence Berkeley National Laboratory +# +# last update on Tue Aug 8 08:16:49 PDT 2017 +# + + +''' +dxt_analyzer.py +To plot the read or write activity from Darshan Extended Trace (DXT) logs. + +For more information on creating DXT logs, see: +http://www.mcs.anl.gov/research/projects/darshan/docs/darshan3-util.html#_darshan_dxt_parser + +% ./io_activitity_dxt.py --help +usage: dxt_analyzer.py [-h] -i DXT_LOGNAME [-o SAVEFIG] [--show] [--read] + [--filemode] [-f FNAME] + +io activity plot from dxt log + +optional arguments: + -h, --help show this help message and exit + -i DXT_LOGNAME, --input DXT_LOGNAME + dxt log path + -o SAVEFIG, --save SAVEFIG + output file name for the plot + --show Show the plot rather than saving to a PDF + --read READ I/O action to be plotted. + Default is False for WRITE mode. + --filemode Single file mode (must be used with --fname) + Default is False for all files + -f FNAME, --fname FNAME + name of file to be plotted (must use with --filemode) + +e.g. +python dxt_analyzer.py -i darshan_dxt-a.txt +python dxt_analyzer.py -i darshan_dxt-a.txt \ + --filemode -f /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +python dxt_analyzer.py -i darshan_dxt-c.txt +python dxt_analyzer.py -i darshan_dxt-d.txt -o dxt-d.pdf +python dxt_analyzer.py -i darshan_dxt-df.txt +python dxt_analyzer.py -i darshan_dxt-v.txt + +''' + +import numpy as np +import matplotlib +matplotlib.use('PDF') +import matplotlib.pyplot as plt +import re +import argparse + +#------------------------------------------------------------------------------ +# Regular expression and helper funtion definitions +#------------------------------------------------------------------------------ +global_finfo = {} +#'filename':{'rw':[], 'mount':'', 'fs':'', 'stripe_size':-1, 'stripe_width':-1, 'OSTlist':[]} +# Module rank write/read segment offset length start end OST +POSIX_LOG_PATTERN = ' (X_POSIX)\s+([+-]?\d+(?:\.\d+)?)\s+(\S+)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+\[\s*([+-]?\d+(?:\.\d+)?)\]\.*' +POSIX_LOG_NO_OSTS = ' (X_POSIX)\s+([+-]?\d+(?:\.\d+)?)\s+(\S+)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)' + +# Module rank write/read segment length start end +MPIIO_LOG_PATTERN = ' (X_MPIIO)\s+([+-]?\d+(?:\.\d+)?)\s+(\S+)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)\s+([+-]?\d+(?:\.\d+)?)' + +HEADER_PATTERN = '(#\s+)(\S+):(\s+)(\d+)' +COMMENT_PATTERN_DXT = '# \.*' +USEFUL_COMMENT_PATTERN = '# DXT,\.*' +LISTNUM_PATTERN = '(\d+.*)' + +header = re.compile(HEADER_PATTERN) +validposix = re.compile(POSIX_LOG_PATTERN) +posix_no_ost = re.compile(POSIX_LOG_NO_OSTS) +validmpiio = re.compile(MPIIO_LOG_PATTERN) +comment_dxt = re.compile(COMMENT_PATTERN_DXT) +use_comment = re.compile(USEFUL_COMMENT_PATTERN) +listnumpattern = re.compile(LISTNUM_PATTERN) + + +def store_useful_comment(pieces, finfo_dict, curr_fname): + '''updates a file's dictionary entry using the pieces of a comment/header line from a DXT log''' + attribute = pieces[0].replace('# DXT, ', '') + if attribute=='file_id': + curr_fname = pieces[2].replace(' ','').rstrip('\n') + if curr_fname not in finfo_dict.keys(): + finfo_dict[curr_fname] = {'mount':'', 'fs':'', 'stripe_size':-1, 'stripe_width':-1, 'OST_list':[]} + return curr_fname + elif attribute=='mnt_pt': + finfo_dict[curr_fname]['mount'] = pieces[1].replace(', fs_type', '').replace(' ', '').rstrip('\n') + finfo_dict[curr_fname]['fs'] = pieces[2].replace(' ', '').rstrip('\n') + elif attribute=='Lustre stripe_size': + finfo_dict[curr_fname]['stripe_size'] = int(pieces[1].replace(', Lustre stripe_count', '').replace(' ', '')) + finfo_dict[curr_fname]['stripe_width'] = int(pieces[2].replace(' ','')) + elif attribute=='Lustre OST obdidx': + liststr = pieces[1][1:] + listnums = listnumpattern.match(liststr).groups()[0] + OSTlist = [int(x) for x in re.findall(r'\d+', listnums)] + finfo_dict[curr_fname]['OST_list'] = OSTlist + return curr_fname + + +def parse_dxt_log_line(line, curr_fname, finfo_dict): + '''takes a DXT log line and stores pertinent file metadata into a dictionary, and parses read/write trace data into a tuple''' + if not line: return (curr_fname, (), -1) + pieces = line.split(":") + if comment_dxt.match(pieces[0]): + if use_comment.match(pieces[0]): + curr_fname = store_useful_comment(pieces, finfo_dict, curr_fname) + return (curr_fname, (), -1) + header_match = header.match(line) + if header_match: + return (curr_fname, (header_match.group(2),int(header_match.group(4))), -11) + else: + return (curr_fname, (), -1) + data = validposix.match(line) + if data: + return (curr_fname, + ( + data.group(1).replace('X_', '')+'_'+(data.group(3).upper()), + ( + int(data.group(2)), #rank + int(data.group(6)), #length + float(data.group(7)), #start + float(data.group(8)), #end + int(data.group(9)) #OST + ) + ), 1) + data = posix_no_ost.match(line) + if data: + return (curr_fname, + ( + data.group(1).replace('X_', '')+'_'+(data.group(3).upper()), + ( + int(data.group(2)), #rank + int(data.group(6)), #length + float(data.group(7)), #start + float(data.group(8)), #end + -1 # No OST + ) + ), 1) + data = validmpiio.match(line) + if data: + return (curr_fname, + ( + data.group(1).replace('X_', '')+'_'+(data.group(3).upper()), + ( + int(data.group(2)), #rank + int(data.group(5)), #length + float(data.group(6)), #start + float(data.group(7)), #end + ) + ), 1) + return (curr_fname, (), -1) + + +def get_verts_file(data, module, fname, action): + '''make a list of rectangle vertices to plot the posix/mpi read/write activity for each rank for a specific file''' + keyword = module+'_'+action + filedata = map(lambda x: x[1], filter(lambda x: x[0]==fname, data)) + filtered = map(lambda x: x[1], filter(lambda x: x[0]==keyword, filedata)) + activities = map(lambda x: (x[0], (x[2], x[3])), filtered) + verts = np.zeros((1,4,2)) + for entry in activities: + lx,rx,by,ty = entry[1][0], entry[1][1], entry[0] - 0.5 , entry[0] + 0.5 + newverts = np.array([((lx,by), (lx,ty), (rx, ty), (rx, by))]) + verts = np.concatenate((verts, newverts)) + return verts[1:] + + +def get_verts_all(data, module, action): + '''make a list of rectangle vertices to plot the posix/mpi read/write activity for each rank''' + keyword = module+'_'+action + IOdata = map(lambda x: x[1], data) + filtered = map(lambda x: x[1], filter(lambda x: x[0]==keyword, IOdata)) + activities = map(lambda x: (x[0], (x[2], x[3])), filtered) + verts = np.zeros((1,4,2)) + for entry in activities: + lx,rx,by,ty = entry[1][0], entry[1][1], entry[0] - 0.5 , entry[0] + 0.5 + newverts = np.array([((lx,by), (lx,ty), (rx, ty), (rx, by))]) + verts = np.concatenate((verts, newverts)) + return verts[1:] + + +#------------------------------------------------------------------------------ +# Set variables and create plots +#------------------------------------------------------------------------------ + +# Variables to be set by user +# name of DXT log file +dxt_logname = './darshan_dxt-5967365.txt' +# create plot for a specific file (mode='file') or for all files (mode='all') +singlefile_mode = False # for 'all' +mode = 'all' +# name of file to be plotted (must use with mode='file') +fname = '/global/cscratch1/sd/junmin/heatTxf.n64.s32/ph5.4096.n128s64.t1.h5' +# FLAG for READ I/O action to be plotted. +read_flag = False # for READ action +action = 'WRITE' +# filename to save the plot (must end with .pdf). +# showflag takes priority than savefig. +showflag = False # If you do not want to save, set this to True. +savefig = 'dxt_plot.pdf' + +parser = argparse.ArgumentParser(description='io activity plot from dxt log') +parser.add_argument("-i", "--input", action="store", dest="dxt_logname", required=True, help="dxt log path") +parser.add_argument("-o", "--save", action="store", dest="savefig", required=False, help="output file name for the plot") +parser.add_argument("--show", action="store_true", dest="showflag", required=False, help="Show the plot rather than saving to a PDF") +parser.add_argument("--read", action="store_true", dest="read_flag", required=False, help="READ I/O action to be plotted. Default is False for WRITE mode.") +parser.add_argument("--filemode", action="store_true", dest="singlefile_mode", required=False, help="Single file mode (must be used with --fname). Default is False for all files") +parser.add_argument("-f", "--fname", action="store", dest="fname", required=False, help="name of file to be plotted (must use with --filemode)") + +#args = parser.parse_args(['-l', '/Users/asim/Desktop/simcodes/vpic/runs/ttest/junmin-darshan_dxt-5967365.txt', +#'--save', 'dxt_plot.pdf']) +args = parser.parse_args() # uncomment this line for general use + +dxt_logname = args.dxt_logname +if (args.savefig): + savefig = args.savefig +if (args.showflag): + showflag = True +if (args.read_flag): + read_flag = True + action = 'READ' +if (args.singlefile_mode): + singlefile_mode = True + mode = 'file' + fname = args.fname + + +with open(dxt_logname) as infile: + finfo_dict = {} + curr_fname = '' + logdata = [] + for line in infile: + curr_fname, data, flag = parse_dxt_log_line(line, curr_fname, finfo_dict) + if flag == -11: + (k,v) = data + if k == 'jobid': jobid = v + elif k == 'start_time': start_time = v + elif k == 'end_time': end_time = v + elif k == 'nprocs': nprocs = v + elif flag == 1: + logdata.append((curr_fname, data)) + +fig, ax = plt.subplots(dpi=150) + +if mode=='file': + mpiio_verts = get_verts_file(logdata, 'MPIIO', fname, action) + mpiio_collec = matplotlib.collections.PolyCollection(mpiio_verts, facecolor='blue', edgecolor='blue') + posix_verts = get_verts_file(logdata, 'POSIX', fname, action) + posix_collec = matplotlib.collections.PolyCollection(posix_verts, facecolor='red', edgecolor='red') + title = str(jobid)+'_'+fname.split('/').pop()+'_'+action+'_activity' +else : # mode=='all' + mpiio_verts = get_verts_all(logdata, 'MPIIO', action) + mpiio_collec = matplotlib.collections.PolyCollection(mpiio_verts, facecolor='blue', edgecolor='blue') + posix_verts = get_verts_all(logdata, 'POSIX', action) + posix_collec = matplotlib.collections.PolyCollection(posix_verts, facecolor='red', edgecolor='red') + title = str(jobid)+'_'+action+'_activity' + + +ax.add_collection(mpiio_collec) +ax.add_collection(posix_collec) +ax.autoscale() +plt.ylabel("MPI rank") +plt.xlabel("Time (s)") +plt.title(title) +if (showflag): + plt.show() +else: + plt.savefig(savefig, format='pdf') + diff --git a/darshan-util/dxt_analyzer/README.txt b/darshan-util/dxt_analyzer/README.txt new file mode 100644 index 0000000..b060833 --- /dev/null +++ b/darshan-util/dxt_analyzer/README.txt @@ -0,0 +1,47 @@ +# Email questions to SDMSUPPORT@LBL.GOV +# Scientific Data Management Research Group +# Lawrence Berkeley National Laboratory +# +# last update on Mon Aug 7 08:47:28 PDT 2017 + + +To plot the read or write activity from Darshan Extended Trace (DXT) logs. + +% ./dxt_analyzer.py --help +usage: dxt_analyzer.py [-h] -i DXT_LOGNAME [-o SAVEFIG] [--show] [--read] + [--filemode] [-f FNAME] + +io activity plot from dxt log + +optional arguments: + -h, --help show this help message and exit + -i DXT_LOGNAME, --input DXT_LOGNAME + dxt log path + -o SAVEFIG, --save SAVEFIG + output file name for the plot + --show Show the plot rather than saving to a PDF + --read READ I/O action to be plotted. + Default is False for WRITE mode. + --filemode Single file mode (must be used with --fname). + Default is False for all files + -f FNAME, --fname FNAME + name of file to be plotted (must use with --filemode) + +Example runs: +% python dxt_analyzer.py -i darshan_dxt-a.txt + +% python dxt_analyzer.py -i darshan_dxt-a.txt \ + --filemode -f /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 + +% python dxt_analyzer.py -i darshan_dxt-d.txt \ + -o dxt-d.pdf + +% python dxt_analyzer.py -i darshan_dxt-df.txt + +% python dxt_analyzer.py -i darshan_dxt-c.txt + +% python dxt_analyzer.py -i darshan_dxt-v.txt + + +For more information on creating DXT logs, see: +http://www.mcs.anl.gov/research/projects/darshan/docs/darshan3-util.html#_darshan_dxt_parser diff --git a/darshan-util/dxt_analyzer/darshan_dxt-a.txt b/darshan-util/dxt_analyzer/darshan_dxt-a.txt new file mode 100644 index 0000000..90e63dd --- /dev/null +++ b/darshan-util/dxt_analyzer/darshan_dxt-a.txt @@ -0,0 +1,187535 @@ +# darshan log version: 3.10 +# compression method: ZLIB +# exe: /global/cscratch1/sd/asim/amrex/a24/./hyperclaw3d.intel.MPI.ex inputs.5 +# uid: 8850 +# jobid: 5719410 +# start_time: 1499372818 +# start_time_asci: Thu Jul 6 13:26:58 2017 +# end_time: 1499374330 +# end_time_asci: Thu Jul 6 13:52:10 2017 +# nprocs: 1024 +# run time: 1513 +# metadata: lib_ver = 3.1.4 +# metadata: h = romio_no_indep_rw=true;cb_nodes=4 + +# log file regions +# ------------------------------------------------------- +# header: 360 bytes (uncompressed) +# job data: 467 bytes (compressed) +# record table: 180 bytes (compressed) +# POSIX module: 346343 bytes (compressed), ver=3 +# MPI-IO module: 250743 bytes (compressed), ver=2 +# LUSTRE module: 424124 bytes (compressed), ver=1 +# STDIO module: 25202 bytes (compressed), ver=1 +# DXT_POSIX module: 860460 bytes (compressed), ver=1 +# DXT_MPIIO module: 1047428 bytes (compressed), ver=1 + +# mounted file systems (mount point and fs type) +# ------------------------------------------------------- +# mount entry: /var/opt/cray/imps-distribution/squash/mounts/global squashfs +# mount entry: /var/opt/cray/imps-distribution/squash/mounts/p0 squashfs +# mount entry: /var/opt/cray/imps-distribution/source autofs +# mount entry: /opt/modulefiles/cray-python dvs +# mount entry: /var/opt/cray/alps/spool devtmpfs +# mount entry: /opt/modulefiles/cray-R dvs +# mount entry: /sys/kernel/config configfs +# mount entry: /var/opt/cray/imps dvs +# mount entry: /.rootfs_lower_ro dvs +# mount entry: /global/cscratch1 lustre +# mount entry: /global/projecta dvs +# mount entry: /global/projectb dvs +# mount entry: /etc/opt/cray/pe dvs +# mount entry: /usr/sbin/ibstat overlayfs +# mount entry: /new_root/lower dvs +# mount entry: /var/spool/cron overlayfs +# mount entry: /global/project dvs +# mount entry: /sys/fs/pstore pstore +# mount entry: /global/syscom dvs +# mount entry: /global/common dvs +# mount entry: /global/seqfs dvs +# mount entry: /opt/admin-pe dvs +# mount entry: /etc/dat.conf overlayfs +# mount entry: /opt/cray/pe dvs +# mount entry: /dev/mqueue mqueue +# mount entry: /global/dna dvs +# mount entry: /opt/python dvs +# mount entry: /opt/chapel dvs +# mount entry: /cray_home dvs +# mount entry: /global/u1 dvs +# mount entry: /global/u2 dvs +# mount entry: /opt/intel autofs +# mount entry: /opt/intel dvs +# mount entry: /opt/java dvs +# mount entry: /opt/gcc dvs +# mount entry: /nersc dvs +# mount entry: /opt/R dvs +# mount entry: /dev devtmpfs +# mount entry: / rootfs +# mount entry: / overlayfs + +# *************************************************** +# DXT_POSIX module data +# *************************************************** + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 0, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 0 read 0 0 342 1.0882 1.0956 [ 33] + X_POSIX 0 read 1 342 0 1.1104 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 0, hostname: nid00535 +# DXT, write_count: 49, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 0 write 0 43520 10248 721.6942 721.6947 [ 40] + X_POSIX 0 write 1 12800 30720 721.6948 721.6951 [ 40] + X_POSIX 0 write 2 5632 5120 721.6951 721.6959 [ 40] + X_POSIX 0 write 3 53768 67055096 721.9192 722.1150 [ 40] + X_POSIX 0 write 4 0 96 722.2579 722.2580 [ 40] + X_POSIX 0 write 5 2013355136 8712 722.6081 722.6767 [247] + X_POSIX 0 write 6 2013329024 26112 722.6768 722.6772 [247] + X_POSIX 0 write 7 2013322624 4352 722.6772 722.6784 [247] + X_POSIX 0 write 8 0 96 723.0748 723.1145 [ 40] + X_POSIX 0 write 9 3372352084 8224 723.5044 723.5491 [155] + X_POSIX 0 write 10 3372327436 24648 723.5491 723.5495 [155] + X_POSIX 0 write 11 3372321280 4108 723.5495 723.5501 [155] + X_POSIX 0 write 12 8589934592 67108864 723.6685 723.8592 [ 40] + X_POSIX 0 write 13 0 96 723.9739 723.9787 [ 40] + X_POSIX 0 write 14 8657692792 31792 724.3976 724.6218 [ 14] + X_POSIX 0 write 15 8657597440 95352 724.6218 724.6224 [ 14] + X_POSIX 0 write 16 8657579500 15892 724.6224 724.6252 [ 14] + X_POSIX 0 write 17 17179869184 67108864 724.7269 724.9807 [ 40] + X_POSIX 0 write 18 25769803776 67108864 725.0126 725.2131 [ 40] + X_POSIX 0 write 19 0 96 725.8093 725.8094 [ 40] + X_POSIX 0 write 20 27607726964 543264 726.7331 727.0404 [100] + X_POSIX 0 write 21 27606097196 1629768 727.0404 727.0432 [100] + X_POSIX 0 write 22 27605823520 271628 727.0432 727.0441 [100] + X_POSIX 0 write 23 34359738368 67108864 728.0803 728.2643 [ 40] + X_POSIX 0 write 24 42949672960 67108864 728.5244 728.7154 [ 40] + X_POSIX 0 write 25 51539607552 67108864 728.8041 728.9772 [ 40] + X_POSIX 0 write 26 60129542144 67108864 729.0294 729.2530 [ 40] + X_POSIX 0 write 27 68719476736 67108864 729.2875 729.5225 [ 40] + X_POSIX 0 write 28 77309411328 67108864 729.5441 729.7567 [ 40] + X_POSIX 0 write 29 85899345920 67108864 729.7901 729.9891 [ 40] + X_POSIX 0 write 30 94489280512 67108864 730.0106 730.1818 [ 40] + X_POSIX 0 write 31 103079215104 67108864 730.1925 730.3931 [ 40] + X_POSIX 0 write 32 111669149696 67108864 730.4102 730.6236 [ 40] + X_POSIX 0 write 33 120259084288 67108864 730.6371 730.8728 [ 40] + X_POSIX 0 write 34 128849018880 67108864 730.8854 731.1189 [ 40] + X_POSIX 0 write 35 137438953472 67108864 731.1361 731.3726 [ 40] + X_POSIX 0 write 36 146028888064 67108864 731.3824 731.6212 [ 40] + X_POSIX 0 write 37 154618822656 67108864 731.6321 731.8442 [ 40] + X_POSIX 0 write 38 163208757248 67108864 731.8625 732.0642 [ 40] + X_POSIX 0 write 39 171798691840 67108864 732.0751 732.3604 [ 40] + X_POSIX 0 write 40 180388626432 67108864 732.3713 732.6092 [ 40] + X_POSIX 0 write 41 188978561024 67108864 732.6205 732.8576 [ 40] + X_POSIX 0 write 42 197568495616 67108864 732.8744 733.0756 [ 40] + X_POSIX 0 write 43 206158430208 67108864 733.0876 733.3003 [ 40] + X_POSIX 0 write 44 214748364800 67108864 735.1523 735.3398 [ 40] + X_POSIX 0 write 45 223338299392 67108864 735.3616 735.6961 [ 40] + X_POSIX 0 write 46 231928233984 67108864 735.7133 735.9707 [ 40] + X_POSIX 0 write 47 240518168576 67108864 736.0596 736.1915 [ 40] + X_POSIX 0 write 48 0 96 737.5391 737.5415 [ 40] + X_POSIX 0 read 0 0 8 722.4244 722.4246 [ 40] + X_POSIX 0 read 1 0 9 722.4264 722.5397 [ 40] + X_POSIX 0 read 2 9 87 722.5399 722.5400 [ 40] + X_POSIX 0 read 3 96 512 722.5433 722.5434 [ 40] + X_POSIX 0 read 4 2064 632 722.5448 722.5448 [ 40] + X_POSIX 0 read 5 136 544 722.5459 722.5459 [ 40] + X_POSIX 0 read 6 680 512 722.5464 722.5466 [ 40] + X_POSIX 0 read 7 1504 328 722.5737 722.5737 [ 40] + X_POSIX 0 read 8 0 8 723.3779 723.3779 [ 40] + X_POSIX 0 read 9 0 9 723.3795 723.3796 [ 40] + X_POSIX 0 read 10 9 87 723.3798 723.3798 [ 40] + X_POSIX 0 read 11 96 512 723.3830 723.3831 [ 40] + X_POSIX 0 read 12 2064 632 723.3845 723.3847 [ 40] + X_POSIX 0 read 13 136 544 723.3858 723.4374 [ 40] + X_POSIX 0 read 14 680 512 723.4379 723.4379 [ 40] + X_POSIX 0 read 15 1504 328 723.4695 723.4695 [ 40] + X_POSIX 0 read 16 0 8 724.2926 724.2930 [ 40] + X_POSIX 0 read 17 0 9 724.2930 724.3863 [ 40] + X_POSIX 0 read 18 9 87 724.3863 724.3865 [ 40] + X_POSIX 0 read 19 96 512 724.3865 724.3867 [ 40] + X_POSIX 0 read 20 2064 632 724.3867 724.3868 [ 40] + X_POSIX 0 read 21 136 544 724.3868 724.3868 [ 40] + X_POSIX 0 read 22 680 512 724.3868 724.3869 [ 40] + X_POSIX 0 read 23 1504 328 724.3950 724.3954 [ 40] + X_POSIX 0 read 24 0 8 726.4897 726.6465 [ 40] + X_POSIX 0 read 25 0 9 726.6484 726.6484 [ 40] + X_POSIX 0 read 26 9 87 726.6486 726.6486 [ 40] + X_POSIX 0 read 27 96 512 726.6520 726.6520 [ 40] + X_POSIX 0 read 28 2064 632 726.6534 726.6534 [ 40] + X_POSIX 0 read 29 136 544 726.6545 726.6545 [ 40] + X_POSIX 0 read 30 680 512 726.6550 726.6551 [ 40] + X_POSIX 0 read 31 1504 328 726.6736 726.6736 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 0, hostname: nid00535 +# DXT, write_count: 44, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 0 write 0 43520 10248 1496.7267 1496.7271 [209] + X_POSIX 0 write 1 12800 30720 1496.7271 1496.7275 [209] + X_POSIX 0 write 2 5632 5120 1496.7275 1496.7279 [209] + X_POSIX 0 write 3 53768 67055096 1496.8200 1497.0719 [209] + X_POSIX 0 write 4 0 96 1497.0768 1497.0846 [209] + X_POSIX 0 write 5 2013355136 8712 1497.3431 1497.3668 [ 85] + X_POSIX 0 write 6 2013329024 26112 1497.3669 1497.3672 [ 85] + X_POSIX 0 write 7 2013322624 4352 1497.3672 1497.3708 [ 85] + X_POSIX 0 write 8 0 96 1497.6602 1497.7091 [209] + X_POSIX 0 write 9 3372352084 8224 1498.0755 1498.1967 [ 35] + X_POSIX 0 write 10 3372327436 24648 1498.1967 1498.1971 [ 35] + X_POSIX 0 write 11 3372321280 4108 1498.1971 1498.1978 [ 35] + X_POSIX 0 write 12 8589934592 67108864 1498.3127 1498.4845 [209] + X_POSIX 0 write 13 0 96 1498.5444 1498.5460 [209] + X_POSIX 0 write 14 8657703124 34744 1498.8980 1499.0156 [193] + X_POSIX 0 write 15 8657598916 104208 1499.0157 1499.0162 [193] + X_POSIX 0 write 16 8657579500 17368 1499.0162 1499.0188 [193] + X_POSIX 0 write 17 17179869184 67108864 1499.1623 1499.3755 [209] + X_POSIX 0 write 18 25769803776 67108864 1499.4223 1499.5756 [209] + X_POSIX 0 write 19 0 96 1500.0777 1500.0785 [209] + X_POSIX 0 write 20 27564480076 541432 1500.8226 1501.2246 [183] + X_POSIX 0 write 21 27562855804 1624272 1501.2247 1501.2277 [183] + X_POSIX 0 write 22 27562583044 270712 1501.2277 1501.2286 [183] + X_POSIX 0 write 23 34359738368 67108864 1502.1071 1502.2676 [209] + X_POSIX 0 write 24 42949672960 67108864 1502.6263 1502.7979 [209] + X_POSIX 0 write 25 51539607552 67108864 1502.9123 1503.1552 [209] + X_POSIX 0 write 26 60129542144 67108864 1503.1718 1503.5990 [209] + X_POSIX 0 write 27 68719476736 67108864 1503.6141 1503.8269 [209] + X_POSIX 0 write 28 77309411328 67108864 1503.8575 1504.0633 [209] + X_POSIX 0 write 29 85899345920 67108864 1504.1052 1504.3498 [209] + X_POSIX 0 write 30 94489280512 67108864 1504.3813 1504.5936 [209] + X_POSIX 0 write 31 103079215104 67108864 1504.6185 1504.8694 [209] + X_POSIX 0 write 32 111669149696 67108864 1504.9036 1505.2196 [209] + X_POSIX 0 write 33 120259084288 67108864 1505.2341 1505.4512 [209] + X_POSIX 0 write 34 128849018880 67108864 1505.4712 1505.6811 [209] + X_POSIX 0 write 35 137438953472 67108864 1505.7205 1505.9771 [209] + X_POSIX 0 write 36 146028888064 67108864 1505.9906 1506.2448 [209] + X_POSIX 0 write 37 154618822656 67108864 1506.2697 1506.5067 [209] + X_POSIX 0 write 38 163208757248 67108864 1506.5222 1506.7132 [209] + X_POSIX 0 write 39 171798691840 67108864 1506.7283 1506.9474 [209] + X_POSIX 0 write 40 180388626432 67108864 1506.9597 1507.2039 [209] + X_POSIX 0 write 41 188978561024 67108864 1508.3117 1508.4830 [209] + X_POSIX 0 write 42 197568495616 67108864 1508.5697 1508.8135 [209] + X_POSIX 0 write 43 0 96 1509.4467 1509.4479 [209] + X_POSIX 0 read 0 0 8 1497.1743 1497.2815 [209] + X_POSIX 0 read 1 0 9 1497.2832 1497.2832 [209] + X_POSIX 0 read 2 9 87 1497.2834 1497.2834 [209] + X_POSIX 0 read 3 96 512 1497.2868 1497.2869 [209] + X_POSIX 0 read 4 2064 632 1497.2886 1497.2886 [209] + X_POSIX 0 read 5 136 544 1497.2896 1497.2897 [209] + X_POSIX 0 read 6 680 512 1497.2903 1497.2904 [209] + X_POSIX 0 read 7 1504 328 1497.3092 1497.3093 [209] + X_POSIX 0 read 8 0 8 1497.9737 1497.9741 [209] + X_POSIX 0 read 9 0 9 1497.9741 1497.9744 [209] + X_POSIX 0 read 10 9 87 1497.9744 1498.0197 [209] + X_POSIX 0 read 11 96 512 1498.0197 1498.0198 [209] + X_POSIX 0 read 12 2064 632 1498.0198 1498.0199 [209] + X_POSIX 0 read 13 136 544 1498.0199 1498.0200 [209] + X_POSIX 0 read 14 680 512 1498.0200 1498.0200 [209] + X_POSIX 0 read 15 1504 328 1498.0359 1498.0362 [209] + X_POSIX 0 read 16 0 8 1498.7557 1498.8341 [209] + X_POSIX 0 read 17 0 9 1498.8359 1498.8361 [209] + X_POSIX 0 read 18 9 87 1498.8362 1498.8363 [209] + X_POSIX 0 read 19 96 512 1498.8396 1498.8396 [209] + X_POSIX 0 read 20 2064 632 1498.8410 1498.8411 [209] + X_POSIX 0 read 21 136 544 1498.8421 1498.8422 [209] + X_POSIX 0 read 22 680 512 1498.8427 1498.8427 [209] + X_POSIX 0 read 23 1504 328 1498.8622 1498.8622 [209] + X_POSIX 0 read 24 0 8 1500.6277 1500.7400 [209] + X_POSIX 0 read 25 0 9 1500.7418 1500.7418 [209] + X_POSIX 0 read 26 9 87 1500.7420 1500.7421 [209] + X_POSIX 0 read 27 96 512 1500.7454 1500.7454 [209] + X_POSIX 0 read 28 2064 632 1500.7468 1500.7469 [209] + X_POSIX 0 read 29 136 544 1500.7479 1500.7480 [209] + X_POSIX 0 read 30 680 512 1500.7485 1500.7486 [209] + X_POSIX 0 read 31 1504 328 1500.7633 1500.7633 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 1, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 1 read 0 0 342 1.0882 1.0959 [ 33] + X_POSIX 1 read 1 342 0 1.1106 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 1, hostname: nid00535 +# DXT, write_count: 34, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 1 write 0 96 40 722.2582 722.2583 [ 40] + X_POSIX 1 write 1 2147483648 67108864 722.7718 722.9548 [227] + X_POSIX 1 write 2 136 544 723.0746 723.1143 [ 40] + X_POSIX 1 write 3 136 544 723.9740 723.9787 [ 40] + X_POSIX 1 write 4 10737418240 67108864 724.7569 724.9423 [227] + X_POSIX 1 write 5 19327352832 67108864 725.0389 725.2232 [227] + X_POSIX 1 write 6 136 544 725.8052 725.8087 [ 40] + X_POSIX 1 write 7 27917287424 67108864 728.0745 728.2688 [227] + X_POSIX 1 write 8 36507222016 67108864 728.7362 728.9101 [227] + X_POSIX 1 write 9 45097156608 67108864 729.0972 729.3224 [227] + X_POSIX 1 write 10 53687091200 67108864 729.3438 729.5734 [227] + X_POSIX 1 write 11 62277025792 67108864 729.8323 730.0004 [227] + X_POSIX 1 write 12 70866960384 67108864 730.0579 730.3058 [227] + X_POSIX 1 write 13 79456894976 67108864 730.3438 730.5469 [227] + X_POSIX 1 write 14 88046829568 67108864 730.5787 730.8186 [227] + X_POSIX 1 write 15 96636764160 67108864 730.9303 731.0899 [227] + X_POSIX 1 write 16 105226698752 67108864 731.1188 731.3739 [227] + X_POSIX 1 write 17 113816633344 67108864 731.5070 731.7011 [227] + X_POSIX 1 write 18 122406567936 67108864 731.7529 731.9569 [227] + X_POSIX 1 write 19 130996502528 67108864 732.1475 732.3054 [227] + X_POSIX 1 write 20 139586437120 67108864 732.3199 732.5038 [227] + X_POSIX 1 write 21 148176371712 67108864 732.5448 732.7965 [227] + X_POSIX 1 write 22 156766306304 67108864 732.8479 733.0472 [227] + X_POSIX 1 write 23 165356240896 67108864 733.0752 733.3252 [227] + X_POSIX 1 write 24 173946175488 67108864 733.4091 733.5719 [227] + X_POSIX 1 write 25 182536110080 67108864 733.6378 733.8025 [227] + X_POSIX 1 write 26 191126044672 67108864 733.8424 734.0899 [227] + X_POSIX 1 write 27 199715979264 67108864 734.1035 734.4033 [227] + X_POSIX 1 write 28 208305913856 67108864 734.4163 734.6891 [227] + X_POSIX 1 write 29 216895848448 67108864 734.7095 734.9066 [227] + X_POSIX 1 write 30 225485783040 67108864 734.9176 735.1257 [227] + X_POSIX 1 write 31 234075717632 67108864 735.1395 735.3323 [227] + X_POSIX 1 write 32 242665652224 67108864 735.3448 735.5547 [227] + X_POSIX 1 write 33 136 544 737.5369 737.5413 [ 40] + X_POSIX 1 read 0 0 8 722.4242 722.4243 [ 40] + X_POSIX 1 read 1 0 9 722.4261 722.5392 [ 40] + X_POSIX 1 read 2 9 87 722.5394 722.5394 [ 40] + X_POSIX 1 read 3 96 512 722.5429 722.5430 [ 40] + X_POSIX 1 read 4 2064 632 722.5444 722.5444 [ 40] + X_POSIX 1 read 5 136 544 722.5455 722.5455 [ 40] + X_POSIX 1 read 6 680 512 722.5460 722.5460 [ 40] + X_POSIX 1 read 7 1504 328 722.5742 722.5743 [ 40] + X_POSIX 1 read 8 0 8 723.3815 723.3817 [ 40] + X_POSIX 1 read 9 0 9 723.3836 723.3836 [ 40] + X_POSIX 1 read 10 9 87 723.3839 723.3840 [ 40] + X_POSIX 1 read 11 96 512 723.3867 723.4373 [ 40] + X_POSIX 1 read 12 2064 632 723.4387 723.4388 [ 40] + X_POSIX 1 read 13 136 544 723.4400 723.4400 [ 40] + X_POSIX 1 read 14 680 512 723.4405 723.4406 [ 40] + X_POSIX 1 read 15 1504 328 723.4699 723.4700 [ 40] + X_POSIX 1 read 16 0 8 724.2925 724.2928 [ 40] + X_POSIX 1 read 17 0 9 724.2928 724.3862 [ 40] + X_POSIX 1 read 18 9 87 724.3862 724.3863 [ 40] + X_POSIX 1 read 19 96 512 724.3863 724.3865 [ 40] + X_POSIX 1 read 20 2064 632 724.3865 724.3866 [ 40] + X_POSIX 1 read 21 136 544 724.3866 724.3867 [ 40] + X_POSIX 1 read 22 680 512 724.3867 724.3867 [ 40] + X_POSIX 1 read 23 1504 328 724.3949 724.3953 [ 40] + X_POSIX 1 read 24 0 8 726.4898 726.6464 [ 40] + X_POSIX 1 read 25 0 9 726.6483 726.6484 [ 40] + X_POSIX 1 read 26 9 87 726.6485 726.6486 [ 40] + X_POSIX 1 read 27 96 512 726.6520 726.6520 [ 40] + X_POSIX 1 read 28 2064 632 726.6534 726.6535 [ 40] + X_POSIX 1 read 29 136 544 726.6545 726.6545 [ 40] + X_POSIX 1 read 30 680 512 726.6551 726.6551 [ 40] + X_POSIX 1 read 31 1504 328 726.6745 726.6747 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 1, hostname: nid00535 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 1 write 0 96 40 1497.0769 1497.0851 [209] + X_POSIX 1 write 1 2147483648 67108864 1497.4375 1497.6385 [ 77] + X_POSIX 1 write 2 136 544 1497.6600 1497.7090 [209] + X_POSIX 1 write 3 136 544 1498.5443 1498.5458 [209] + X_POSIX 1 write 4 10737418240 67108864 1499.2021 1499.3899 [ 77] + X_POSIX 1 write 5 19327352832 67108864 1499.4941 1499.6703 [ 77] + X_POSIX 1 write 6 136 544 1500.0776 1500.0784 [209] + X_POSIX 1 write 7 27917287424 67108864 1502.1688 1502.3910 [ 77] + X_POSIX 1 write 8 36507222016 67108864 1502.5797 1502.7525 [ 77] + X_POSIX 1 write 9 45097156608 67108864 1503.0142 1503.1820 [ 77] + X_POSIX 1 write 10 53687091200 67108864 1503.1932 1503.3814 [ 77] + X_POSIX 1 write 11 62277025792 67108864 1503.3954 1503.6399 [ 77] + X_POSIX 1 write 12 70866960384 67108864 1503.6594 1503.9070 [ 77] + X_POSIX 1 write 13 79456894976 67108864 1503.9307 1504.1482 [ 77] + X_POSIX 1 write 14 88046829568 67108864 1504.1726 1504.4484 [ 77] + X_POSIX 1 write 15 96636764160 67108864 1504.4781 1504.7265 [ 77] + X_POSIX 1 write 16 105226698752 67108864 1504.7545 1505.0477 [ 77] + X_POSIX 1 write 17 113816633344 67108864 1505.1111 1505.3471 [ 77] + X_POSIX 1 write 18 122406567936 67108864 1506.1346 1506.3381 [ 77] + X_POSIX 1 write 19 130996502528 67108864 1506.3530 1506.5984 [ 77] + X_POSIX 1 write 20 139586437120 67108864 1506.6652 1506.8256 [ 77] + X_POSIX 1 write 21 148176371712 67108864 1506.8633 1507.0418 [ 77] + X_POSIX 1 write 22 156766306304 67108864 1507.0812 1507.2545 [ 77] + X_POSIX 1 write 23 165356240896 67108864 1507.3297 1507.4724 [ 77] + X_POSIX 1 write 24 173946175488 67108864 1507.7071 1507.8718 [ 77] + X_POSIX 1 write 25 182536110080 67108864 1508.0895 1508.2437 [ 77] + X_POSIX 1 write 26 191126044672 67108864 1508.3046 1508.4683 [ 77] + X_POSIX 1 write 27 199715979264 67108864 1508.4934 1508.6983 [ 77] + X_POSIX 1 write 28 136 544 1509.4446 1509.4477 [209] + X_POSIX 1 read 0 0 8 1497.1743 1497.2812 [209] + X_POSIX 1 read 1 0 9 1497.2828 1497.2829 [209] + X_POSIX 1 read 2 9 87 1497.2831 1497.2831 [209] + X_POSIX 1 read 3 96 512 1497.2867 1497.2868 [209] + X_POSIX 1 read 4 2064 632 1497.2882 1497.2882 [209] + X_POSIX 1 read 5 136 544 1497.2892 1497.2892 [209] + X_POSIX 1 read 6 680 512 1497.2897 1497.2899 [209] + X_POSIX 1 read 7 1504 328 1497.3101 1497.3102 [209] + X_POSIX 1 read 8 0 8 1497.9736 1497.9740 [209] + X_POSIX 1 read 9 0 9 1497.9740 1497.9743 [209] + X_POSIX 1 read 10 9 87 1497.9743 1498.0194 [209] + X_POSIX 1 read 11 96 512 1498.0194 1498.0195 [209] + X_POSIX 1 read 12 2064 632 1498.0195 1498.0196 [209] + X_POSIX 1 read 13 136 544 1498.0196 1498.0197 [209] + X_POSIX 1 read 14 680 512 1498.0197 1498.0197 [209] + X_POSIX 1 read 15 1504 328 1498.0358 1498.0362 [209] + X_POSIX 1 read 16 0 8 1498.7555 1498.8340 [209] + X_POSIX 1 read 17 0 9 1498.8358 1498.8359 [209] + X_POSIX 1 read 18 9 87 1498.8361 1498.8362 [209] + X_POSIX 1 read 19 96 512 1498.8395 1498.8395 [209] + X_POSIX 1 read 20 2064 632 1498.8409 1498.8409 [209] + X_POSIX 1 read 21 136 544 1498.8419 1498.8420 [209] + X_POSIX 1 read 22 680 512 1498.8425 1498.8425 [209] + X_POSIX 1 read 23 1504 328 1498.8631 1498.8631 [209] + X_POSIX 1 read 24 0 8 1500.6275 1500.7395 [209] + X_POSIX 1 read 25 0 9 1500.7412 1500.7413 [209] + X_POSIX 1 read 26 9 87 1500.7415 1500.7415 [209] + X_POSIX 1 read 27 96 512 1500.7448 1500.7448 [209] + X_POSIX 1 read 28 2064 632 1500.7462 1500.7463 [209] + X_POSIX 1 read 29 136 544 1500.7472 1500.7474 [209] + X_POSIX 1 read 30 680 512 1500.7479 1500.7480 [209] + X_POSIX 1 read 31 1504 328 1500.7638 1500.7638 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 2, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 2 read 0 0 342 1.0881 1.0958 [ 33] + X_POSIX 2 read 1 342 0 1.1103 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 2, hostname: nid00535 +# DXT, write_count: 34, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 2 write 0 136 544 722.2557 722.2566 [ 40] + X_POSIX 2 write 1 680 120 723.0746 723.1143 [ 40] + X_POSIX 2 write 2 4294967296 67108864 723.6733 723.8987 [175] + X_POSIX 2 write 3 680 120 723.9736 723.9785 [ 40] + X_POSIX 2 write 4 12884901888 67108864 724.7642 724.9491 [175] + X_POSIX 2 write 5 21474836480 67108864 725.0320 725.2182 [175] + X_POSIX 2 write 6 680 120 725.8055 725.8086 [ 40] + X_POSIX 2 write 7 30064771072 67108864 728.0798 728.2504 [175] + X_POSIX 2 write 8 38654705664 67108864 728.7232 728.9184 [175] + X_POSIX 2 write 9 47244640256 67108864 729.0983 729.2843 [175] + X_POSIX 2 write 10 55834574848 67108864 729.4092 729.5886 [175] + X_POSIX 2 write 11 64424509440 67108864 729.8339 729.9974 [175] + X_POSIX 2 write 12 73014444032 67108864 730.1869 730.3858 [175] + X_POSIX 2 write 13 81604378624 67108864 730.5023 730.7015 [175] + X_POSIX 2 write 14 90194313216 67108864 730.9807 731.1151 [175] + X_POSIX 2 write 15 98784247808 67108864 731.1646 731.3504 [175] + X_POSIX 2 write 16 107374182400 67108864 731.5492 731.7211 [175] + X_POSIX 2 write 17 115964116992 67108864 731.7506 731.9382 [175] + X_POSIX 2 write 18 124554051584 67108864 732.0829 732.2464 [175] + X_POSIX 2 write 19 133143986176 67108864 732.4742 732.6388 [175] + X_POSIX 2 write 20 141733920768 67108864 732.6777 732.9303 [175] + X_POSIX 2 write 21 150323855360 67108864 733.0537 733.2082 [175] + X_POSIX 2 write 22 158913789952 67108864 733.2331 733.3975 [175] + X_POSIX 2 write 23 167503724544 67108864 733.5076 733.6545 [175] + X_POSIX 2 write 24 176093659136 67108864 733.7368 733.9872 [175] + X_POSIX 2 write 25 184683593728 67108864 734.0787 734.2895 [175] + X_POSIX 2 write 26 193273528320 67108864 734.4453 734.6631 [175] + X_POSIX 2 write 27 201863462912 67108864 734.7267 734.9048 [175] + X_POSIX 2 write 28 210453397504 67108864 735.1013 735.2676 [175] + X_POSIX 2 write 29 219043332096 67108864 735.3931 735.5644 [175] + X_POSIX 2 write 30 227633266688 67108864 735.7010 735.8558 [175] + X_POSIX 2 write 31 236223201280 67108864 735.8681 736.1188 [175] + X_POSIX 2 write 32 244813135872 67108864 736.1295 736.3606 [175] + X_POSIX 2 write 33 680 120 737.5371 737.5413 [ 40] + X_POSIX 2 read 0 0 8 722.4241 722.4242 [ 40] + X_POSIX 2 read 1 0 9 722.4261 722.5392 [ 40] + X_POSIX 2 read 2 9 87 722.5394 722.5394 [ 40] + X_POSIX 2 read 3 96 512 722.5429 722.5430 [ 40] + X_POSIX 2 read 4 2064 632 722.5444 722.5444 [ 40] + X_POSIX 2 read 5 136 544 722.5455 722.5455 [ 40] + X_POSIX 2 read 6 680 512 722.5460 722.5460 [ 40] + X_POSIX 2 read 7 1504 328 722.5741 722.5742 [ 40] + X_POSIX 2 read 8 0 8 723.3783 723.3783 [ 40] + X_POSIX 2 read 9 0 9 723.3802 723.3803 [ 40] + X_POSIX 2 read 10 9 87 723.3804 723.3804 [ 40] + X_POSIX 2 read 11 96 512 723.3838 723.3839 [ 40] + X_POSIX 2 read 12 2064 632 723.3854 723.4366 [ 40] + X_POSIX 2 read 13 136 544 723.4368 723.4368 [ 40] + X_POSIX 2 read 14 680 512 723.4373 723.4373 [ 40] + X_POSIX 2 read 15 1504 328 723.4698 723.4699 [ 40] + X_POSIX 2 read 16 0 8 724.2923 724.2928 [ 40] + X_POSIX 2 read 17 0 9 724.2928 724.3858 [ 40] + X_POSIX 2 read 18 9 87 724.3858 724.3859 [ 40] + X_POSIX 2 read 19 96 512 724.3859 724.3860 [ 40] + X_POSIX 2 read 20 2064 632 724.3860 724.3861 [ 40] + X_POSIX 2 read 21 136 544 724.3861 724.3863 [ 40] + X_POSIX 2 read 22 680 512 724.3863 724.3864 [ 40] + X_POSIX 2 read 23 1504 328 724.3947 724.3950 [ 40] + X_POSIX 2 read 24 0 8 726.4899 726.6463 [ 40] + X_POSIX 2 read 25 0 9 726.6483 726.6483 [ 40] + X_POSIX 2 read 26 9 87 726.6485 726.6486 [ 40] + X_POSIX 2 read 27 96 512 726.6520 726.6520 [ 40] + X_POSIX 2 read 28 2064 632 726.6534 726.6534 [ 40] + X_POSIX 2 read 29 136 544 726.6544 726.6544 [ 40] + X_POSIX 2 read 30 680 512 726.6550 726.6550 [ 40] + X_POSIX 2 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 2, hostname: nid00535 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 2 write 0 136 544 1497.0768 1497.0852 [209] + X_POSIX 2 write 1 680 120 1497.6600 1497.7090 [209] + X_POSIX 2 write 2 4294967296 67108864 1498.3178 1498.4882 [ 3] + X_POSIX 2 write 3 680 120 1498.5442 1498.5454 [209] + X_POSIX 2 write 4 12884901888 67108864 1499.2024 1499.3940 [ 3] + X_POSIX 2 write 5 21474836480 67108864 1499.4959 1499.6724 [ 3] + X_POSIX 2 write 6 680 120 1500.0773 1500.0782 [209] + X_POSIX 2 write 7 30064771072 67108864 1502.1693 1502.3453 [ 3] + X_POSIX 2 write 8 38654705664 67108864 1502.6729 1502.8366 [ 3] + X_POSIX 2 write 9 47244640256 67108864 1503.1488 1503.3181 [ 3] + X_POSIX 2 write 10 55834574848 67108864 1503.5645 1503.7842 [ 3] + X_POSIX 2 write 11 64424509440 67108864 1503.8826 1504.0635 [ 3] + X_POSIX 2 write 12 73014444032 67108864 1504.1765 1504.3402 [ 3] + X_POSIX 2 write 13 81604378624 67108864 1504.4414 1504.5984 [ 3] + X_POSIX 2 write 14 90194313216 67108864 1504.7792 1504.9497 [ 3] + X_POSIX 2 write 15 98784247808 67108864 1505.0216 1505.2779 [ 3] + X_POSIX 2 write 16 107374182400 67108864 1505.3280 1505.5115 [ 3] + X_POSIX 2 write 17 115964116992 67108864 1505.5348 1505.8554 [ 3] + X_POSIX 2 write 18 124554051584 67108864 1506.0196 1506.1868 [ 3] + X_POSIX 2 write 19 133143986176 67108864 1506.3082 1506.4904 [ 3] + X_POSIX 2 write 20 141733920768 67108864 1506.5127 1506.7295 [ 3] + X_POSIX 2 write 21 150323855360 67108864 1506.9640 1507.1422 [ 3] + X_POSIX 2 write 22 158913789952 67108864 1507.2452 1507.3850 [ 3] + X_POSIX 2 write 23 167503724544 67108864 1507.6990 1507.8776 [ 3] + X_POSIX 2 write 24 176093659136 67108864 1507.9085 1508.1169 [ 3] + X_POSIX 2 write 25 184683593728 67108864 1508.1687 1508.3403 [ 3] + X_POSIX 2 write 26 193273528320 67108864 1508.4205 1508.5788 [ 3] + X_POSIX 2 write 27 201863462912 67108864 1508.6014 1508.7895 [ 3] + X_POSIX 2 write 28 680 120 1509.4448 1509.4476 [209] + X_POSIX 2 read 0 0 8 1497.1740 1497.2810 [209] + X_POSIX 2 read 1 0 9 1497.2826 1497.2827 [209] + X_POSIX 2 read 2 9 87 1497.2829 1497.2829 [209] + X_POSIX 2 read 3 96 512 1497.2862 1497.2862 [209] + X_POSIX 2 read 4 2064 632 1497.2877 1497.2878 [209] + X_POSIX 2 read 5 136 544 1497.2887 1497.2888 [209] + X_POSIX 2 read 6 680 512 1497.2893 1497.2893 [209] + X_POSIX 2 read 7 1504 328 1497.3096 1497.3097 [209] + X_POSIX 2 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 2 read 9 0 9 1497.9739 1497.9741 [209] + X_POSIX 2 read 10 9 87 1497.9741 1498.0192 [209] + X_POSIX 2 read 11 96 512 1498.0192 1498.0193 [209] + X_POSIX 2 read 12 2064 632 1498.0193 1498.0193 [209] + X_POSIX 2 read 13 136 544 1498.0193 1498.0194 [209] + X_POSIX 2 read 14 680 512 1498.0194 1498.0195 [209] + X_POSIX 2 read 15 1504 328 1498.0356 1498.0359 [209] + X_POSIX 2 read 16 0 8 1498.7553 1498.8338 [209] + X_POSIX 2 read 17 0 9 1498.8356 1498.8356 [209] + X_POSIX 2 read 18 9 87 1498.8358 1498.8360 [209] + X_POSIX 2 read 19 96 512 1498.8392 1498.8392 [209] + X_POSIX 2 read 20 2064 632 1498.8406 1498.8406 [209] + X_POSIX 2 read 21 136 544 1498.8416 1498.8417 [209] + X_POSIX 2 read 22 680 512 1498.8422 1498.8422 [209] + X_POSIX 2 read 23 1504 328 1498.8627 1498.8628 [209] + X_POSIX 2 read 24 0 8 1500.6275 1500.7398 [209] + X_POSIX 2 read 25 0 9 1500.7416 1500.7416 [209] + X_POSIX 2 read 26 9 87 1500.7418 1500.7418 [209] + X_POSIX 2 read 27 96 512 1500.7451 1500.7452 [209] + X_POSIX 2 read 28 2064 632 1500.7465 1500.7466 [209] + X_POSIX 2 read 29 136 544 1500.7475 1500.7477 [209] + X_POSIX 2 read 30 680 512 1500.7482 1500.7483 [209] + X_POSIX 2 read 31 1504 328 1500.7637 1500.7637 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 3, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 3 read 0 0 342 1.0880 1.0953 [ 33] + X_POSIX 3 read 1 342 0 1.1105 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 3, hostname: nid00535 +# DXT, write_count: 34, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 3 write 0 680 120 722.2558 722.2566 [ 40] + X_POSIX 3 write 1 1504 328 723.0747 723.1145 [ 40] + X_POSIX 3 write 2 6442450944 67108864 723.6679 723.8762 [127] + X_POSIX 3 write 3 1504 328 723.9735 723.9785 [ 40] + X_POSIX 3 write 4 15032385536 67108864 724.7661 724.9474 [127] + X_POSIX 3 write 5 23622320128 67108864 725.0348 725.2180 [127] + X_POSIX 3 write 6 1504 328 725.8049 725.8086 [ 40] + X_POSIX 3 write 7 32212254720 67108864 728.0771 728.2479 [127] + X_POSIX 3 write 8 40802189312 67108864 728.7224 728.8981 [127] + X_POSIX 3 write 9 49392123904 67108864 728.9225 729.1806 [127] + X_POSIX 3 write 10 57982058496 67108864 729.3196 729.4631 [127] + X_POSIX 3 write 11 66571993088 67108864 729.7039 729.8708 [127] + X_POSIX 3 write 12 75161927680 67108864 729.8851 730.3160 [127] + X_POSIX 3 write 13 83751862272 67108864 730.5226 730.7251 [127] + X_POSIX 3 write 14 92341796864 67108864 730.8045 731.5508 [127] + X_POSIX 3 write 15 100931731456 67108864 731.5620 732.0001 [127] + X_POSIX 3 write 16 109521666048 67108864 732.0130 732.2573 [127] + X_POSIX 3 write 17 118111600640 67108864 732.2721 732.5759 [127] + X_POSIX 3 write 18 126701535232 67108864 732.5900 732.8559 [127] + X_POSIX 3 write 19 135291469824 67108864 732.8727 733.1346 [127] + X_POSIX 3 write 20 143881404416 67108864 733.1443 733.4919 [127] + X_POSIX 3 write 21 152471339008 67108864 733.5044 733.8327 [127] + X_POSIX 3 write 22 161061273600 67108864 733.8447 734.2340 [127] + X_POSIX 3 write 23 169651208192 67108864 734.2466 734.5405 [127] + X_POSIX 3 write 24 178241142784 67108864 734.5526 734.9382 [127] + X_POSIX 3 write 25 186831077376 67108864 734.9543 735.2889 [127] + X_POSIX 3 write 26 195421011968 67108864 735.3011 735.6101 [127] + X_POSIX 3 write 27 204010946560 67108864 735.6235 735.9218 [127] + X_POSIX 3 write 28 212600881152 67108864 735.9340 736.2786 [127] + X_POSIX 3 write 29 221190815744 67108864 736.2929 736.6248 [127] + X_POSIX 3 write 30 229780750336 67108864 736.6366 736.8778 [127] + X_POSIX 3 write 31 238370684928 67108864 736.8861 737.2284 [127] + X_POSIX 3 write 32 246960619520 67108864 737.2381 737.4676 [127] + X_POSIX 3 write 33 1504 328 737.5366 737.5410 [ 40] + X_POSIX 3 read 0 0 8 722.4243 722.4245 [ 40] + X_POSIX 3 read 1 0 9 722.4263 722.5396 [ 40] + X_POSIX 3 read 2 9 87 722.5398 722.5399 [ 40] + X_POSIX 3 read 3 96 512 722.5433 722.5433 [ 40] + X_POSIX 3 read 4 2064 632 722.5447 722.5449 [ 40] + X_POSIX 3 read 5 136 544 722.5459 722.5460 [ 40] + X_POSIX 3 read 6 680 512 722.5465 722.5466 [ 40] + X_POSIX 3 read 7 1504 328 722.5741 722.5742 [ 40] + X_POSIX 3 read 8 0 8 723.3812 723.3814 [ 40] + X_POSIX 3 read 9 0 9 723.3832 723.3833 [ 40] + X_POSIX 3 read 10 9 87 723.3835 723.3835 [ 40] + X_POSIX 3 read 11 96 512 723.3865 723.4369 [ 40] + X_POSIX 3 read 12 2064 632 723.4382 723.4383 [ 40] + X_POSIX 3 read 13 136 544 723.4393 723.4394 [ 40] + X_POSIX 3 read 14 680 512 723.4400 723.4400 [ 40] + X_POSIX 3 read 15 1504 328 723.4699 723.4700 [ 40] + X_POSIX 3 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 3 read 17 0 9 724.2927 724.3857 [ 40] + X_POSIX 3 read 18 9 87 724.3857 724.3859 [ 40] + X_POSIX 3 read 19 96 512 724.3859 724.3860 [ 40] + X_POSIX 3 read 20 2064 632 724.3860 724.3861 [ 40] + X_POSIX 3 read 21 136 544 724.3861 724.3862 [ 40] + X_POSIX 3 read 22 680 512 724.3862 724.3863 [ 40] + X_POSIX 3 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 3 read 24 0 8 726.4899 726.6465 [ 40] + X_POSIX 3 read 25 0 9 726.6484 726.6485 [ 40] + X_POSIX 3 read 26 9 87 726.6486 726.6488 [ 40] + X_POSIX 3 read 27 96 512 726.6522 726.6522 [ 40] + X_POSIX 3 read 28 2064 632 726.6536 726.6536 [ 40] + X_POSIX 3 read 29 136 544 726.6547 726.6547 [ 40] + X_POSIX 3 read 30 680 512 726.6552 726.6553 [ 40] + X_POSIX 3 read 31 1504 328 726.6740 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 3, hostname: nid00535 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 3 write 0 680 120 1497.0768 1497.0846 [209] + X_POSIX 3 write 1 1504 328 1497.6601 1497.7091 [209] + X_POSIX 3 write 2 6442450944 67108864 1498.3135 1498.4769 [195] + X_POSIX 3 write 3 1504 328 1498.5442 1498.5455 [209] + X_POSIX 3 write 4 15032385536 67108864 1499.2036 1499.3916 [195] + X_POSIX 3 write 5 23622320128 67108864 1499.4775 1499.6451 [195] + X_POSIX 3 write 6 1504 328 1500.0774 1500.0782 [209] + X_POSIX 3 write 7 32212254720 67108864 1502.1680 1502.3883 [195] + X_POSIX 3 write 8 40802189312 67108864 1502.6648 1502.8972 [195] + X_POSIX 3 write 9 49392123904 67108864 1503.1605 1503.3645 [195] + X_POSIX 3 write 10 57982058496 67108864 1503.5457 1503.7086 [195] + X_POSIX 3 write 11 66571993088 67108864 1503.7205 1503.9786 [195] + X_POSIX 3 write 12 75161927680 67108864 1504.0889 1504.3089 [195] + X_POSIX 3 write 13 83751862272 67108864 1504.3472 1504.5458 [195] + X_POSIX 3 write 14 92341796864 67108864 1504.7309 1504.9173 [195] + X_POSIX 3 write 15 100931731456 67108864 1504.9906 1505.3513 [195] + X_POSIX 3 write 16 109521666048 67108864 1505.4790 1505.6479 [195] + X_POSIX 3 write 17 118111600640 67108864 1505.7446 1505.8841 [195] + X_POSIX 3 write 18 126701535232 67108864 1506.1212 1506.2798 [195] + X_POSIX 3 write 19 135291469824 67108864 1506.3872 1506.6102 [195] + X_POSIX 3 write 20 143881404416 67108864 1506.6674 1506.9190 [195] + X_POSIX 3 write 21 152471339008 67108864 1506.9892 1507.2461 [195] + X_POSIX 3 write 22 161061273600 67108864 1507.3279 1507.5273 [195] + X_POSIX 3 write 23 169651208192 67108864 1507.7456 1507.9384 [195] + X_POSIX 3 write 24 178241142784 67108864 1508.0123 1508.2621 [195] + X_POSIX 3 write 25 186831077376 67108864 1508.3209 1508.5493 [195] + X_POSIX 3 write 26 195421011968 67108864 1508.6202 1508.8648 [195] + X_POSIX 3 write 27 204010946560 67108864 1508.8744 1509.1340 [195] + X_POSIX 3 write 28 1504 328 1509.4445 1509.4477 [209] + X_POSIX 3 read 0 0 8 1497.1738 1497.2807 [209] + X_POSIX 3 read 1 0 9 1497.2822 1497.2823 [209] + X_POSIX 3 read 2 9 87 1497.2824 1497.2825 [209] + X_POSIX 3 read 3 96 512 1497.2859 1497.2859 [209] + X_POSIX 3 read 4 2064 632 1497.2873 1497.2873 [209] + X_POSIX 3 read 5 136 544 1497.2884 1497.2884 [209] + X_POSIX 3 read 6 680 512 1497.2889 1497.2889 [209] + X_POSIX 3 read 7 1504 328 1497.3099 1497.3100 [209] + X_POSIX 3 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 3 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 3 read 10 9 87 1497.9742 1498.0193 [209] + X_POSIX 3 read 11 96 512 1498.0193 1498.0193 [209] + X_POSIX 3 read 12 2064 632 1498.0193 1498.0194 [209] + X_POSIX 3 read 13 136 544 1498.0194 1498.0195 [209] + X_POSIX 3 read 14 680 512 1498.0195 1498.0196 [209] + X_POSIX 3 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 3 read 16 0 8 1498.7552 1498.8334 [209] + X_POSIX 3 read 17 0 9 1498.8352 1498.8352 [209] + X_POSIX 3 read 18 9 87 1498.8354 1498.8355 [209] + X_POSIX 3 read 19 96 512 1498.8387 1498.8388 [209] + X_POSIX 3 read 20 2064 632 1498.8401 1498.8401 [209] + X_POSIX 3 read 21 136 544 1498.8412 1498.8412 [209] + X_POSIX 3 read 22 680 512 1498.8417 1498.8418 [209] + X_POSIX 3 read 23 1504 328 1498.8628 1498.8628 [209] + X_POSIX 3 read 24 0 8 1500.6274 1500.7397 [209] + X_POSIX 3 read 25 0 9 1500.7415 1500.7415 [209] + X_POSIX 3 read 26 9 87 1500.7417 1500.7417 [209] + X_POSIX 3 read 27 96 512 1500.7450 1500.7451 [209] + X_POSIX 3 read 28 2064 632 1500.7464 1500.7464 [209] + X_POSIX 3 read 29 136 544 1500.7474 1500.7476 [209] + X_POSIX 3 read 30 680 512 1500.7481 1500.7481 [209] + X_POSIX 3 read 31 1504 328 1500.7638 1500.7640 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 4, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 4 read 0 0 342 1.0881 1.0957 [ 33] + X_POSIX 4 read 1 342 0 1.1104 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 4, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 4 write 0 800 40 722.2581 722.2582 [ 40] + X_POSIX 4 write 1 2013319688 40 723.0747 723.2735 [247] + X_POSIX 4 write 2 3372318344 40 723.9739 724.1280 [155] + X_POSIX 4 write 3 8657576564 40 725.8092 726.0689 [ 14] + X_POSIX 4 write 4 27605820584 40 737.5389 739.5616 [100] + X_POSIX 4 read 0 0 8 722.4241 722.4243 [ 40] + X_POSIX 4 read 1 0 9 722.4261 722.5390 [ 40] + X_POSIX 4 read 2 9 87 722.5392 722.5392 [ 40] + X_POSIX 4 read 3 96 512 722.5427 722.5427 [ 40] + X_POSIX 4 read 4 2064 632 722.5441 722.5442 [ 40] + X_POSIX 4 read 5 136 544 722.5452 722.5452 [ 40] + X_POSIX 4 read 6 680 512 722.5457 722.5457 [ 40] + X_POSIX 4 read 7 1504 328 722.5742 722.5742 [ 40] + X_POSIX 4 read 8 0 8 723.3812 723.3815 [ 40] + X_POSIX 4 read 9 0 9 723.3834 723.3834 [ 40] + X_POSIX 4 read 10 9 87 723.3837 723.3837 [ 40] + X_POSIX 4 read 11 96 512 723.3865 723.4370 [ 40] + X_POSIX 4 read 12 2064 632 723.4384 723.4385 [ 40] + X_POSIX 4 read 13 136 544 723.4396 723.4397 [ 40] + X_POSIX 4 read 14 680 512 723.4402 723.4402 [ 40] + X_POSIX 4 read 15 1504 328 723.4701 723.4703 [ 40] + X_POSIX 4 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 4 read 17 0 9 724.2927 724.3860 [ 40] + X_POSIX 4 read 18 9 87 724.3860 724.3861 [ 40] + X_POSIX 4 read 19 96 512 724.3861 724.3862 [ 40] + X_POSIX 4 read 20 2064 632 724.3862 724.3864 [ 40] + X_POSIX 4 read 21 136 544 724.3864 724.3865 [ 40] + X_POSIX 4 read 22 680 512 724.3865 724.3866 [ 40] + X_POSIX 4 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 4 read 24 0 8 726.4900 726.6465 [ 40] + X_POSIX 4 read 25 0 9 726.6485 726.6485 [ 40] + X_POSIX 4 read 26 9 87 726.6487 726.6488 [ 40] + X_POSIX 4 read 27 96 512 726.6523 726.6524 [ 40] + X_POSIX 4 read 28 2064 632 726.6538 726.6538 [ 40] + X_POSIX 4 read 29 136 544 726.6549 726.6549 [ 40] + X_POSIX 4 read 30 680 512 726.6554 726.6554 [ 40] + X_POSIX 4 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 4, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 4 write 0 800 40 1497.0769 1497.0854 [209] + X_POSIX 4 write 1 2013319688 40 1497.6602 1497.7939 [ 85] + X_POSIX 4 write 2 3372318344 40 1498.5443 1498.6433 [ 35] + X_POSIX 4 write 3 8657576564 40 1500.0777 1500.3066 [193] + X_POSIX 4 write 4 27562580108 40 1509.4466 1511.1022 [183] + X_POSIX 4 read 0 0 8 1497.1742 1497.2812 [209] + X_POSIX 4 read 1 0 9 1497.2828 1497.2829 [209] + X_POSIX 4 read 2 9 87 1497.2830 1497.2831 [209] + X_POSIX 4 read 3 96 512 1497.2864 1497.2864 [209] + X_POSIX 4 read 4 2064 632 1497.2878 1497.2879 [209] + X_POSIX 4 read 5 136 544 1497.2889 1497.2889 [209] + X_POSIX 4 read 6 680 512 1497.2894 1497.2896 [209] + X_POSIX 4 read 7 1504 328 1497.3097 1497.3097 [209] + X_POSIX 4 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 4 read 9 0 9 1497.9740 1497.9743 [209] + X_POSIX 4 read 10 9 87 1497.9743 1498.0195 [209] + X_POSIX 4 read 11 96 512 1498.0195 1498.0196 [209] + X_POSIX 4 read 12 2064 632 1498.0196 1498.0197 [209] + X_POSIX 4 read 13 136 544 1498.0197 1498.0198 [209] + X_POSIX 4 read 14 680 512 1498.0198 1498.0198 [209] + X_POSIX 4 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 4 read 16 0 8 1498.7555 1498.8338 [209] + X_POSIX 4 read 17 0 9 1498.8357 1498.8357 [209] + X_POSIX 4 read 18 9 87 1498.8359 1498.8361 [209] + X_POSIX 4 read 19 96 512 1498.8395 1498.8395 [209] + X_POSIX 4 read 20 2064 632 1498.8409 1498.8410 [209] + X_POSIX 4 read 21 136 544 1498.8420 1498.8421 [209] + X_POSIX 4 read 22 680 512 1498.8428 1498.8428 [209] + X_POSIX 4 read 23 1504 328 1498.8626 1498.8627 [209] + X_POSIX 4 read 24 0 8 1500.6275 1500.7393 [209] + X_POSIX 4 read 25 0 9 1500.7407 1500.7407 [209] + X_POSIX 4 read 26 9 87 1500.7409 1500.7409 [209] + X_POSIX 4 read 27 96 512 1500.7443 1500.7444 [209] + X_POSIX 4 read 28 2064 632 1500.7457 1500.7457 [209] + X_POSIX 4 read 29 136 544 1500.7467 1500.7468 [209] + X_POSIX 4 read 30 680 512 1500.7473 1500.7475 [209] + X_POSIX 4 read 31 1504 328 1500.7639 1500.7641 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 5, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 5 read 0 0 342 1.0880 1.0952 [ 33] + X_POSIX 5 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 5, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 5 write 0 840 544 722.2558 722.2568 [ 40] + X_POSIX 5 write 1 2013319728 544 723.0747 723.2740 [247] + X_POSIX 5 write 2 3372318384 544 723.9739 724.1279 [155] + X_POSIX 5 write 3 8657576604 544 725.8093 726.0690 [ 14] + X_POSIX 5 write 4 27605820624 544 737.5389 739.5617 [100] + X_POSIX 5 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 5 read 1 0 9 722.4262 722.5393 [ 40] + X_POSIX 5 read 2 9 87 722.5395 722.5396 [ 40] + X_POSIX 5 read 3 96 512 722.5430 722.5430 [ 40] + X_POSIX 5 read 4 2064 632 722.5446 722.5447 [ 40] + X_POSIX 5 read 5 136 544 722.5457 722.5457 [ 40] + X_POSIX 5 read 6 680 512 722.5462 722.5464 [ 40] + X_POSIX 5 read 7 1504 328 722.5744 722.5745 [ 40] + X_POSIX 5 read 8 0 8 723.3817 723.3819 [ 40] + X_POSIX 5 read 9 0 9 723.3839 723.3841 [ 40] + X_POSIX 5 read 10 9 87 723.3842 723.3844 [ 40] + X_POSIX 5 read 11 96 512 723.3868 723.4374 [ 40] + X_POSIX 5 read 12 2064 632 723.4388 723.4389 [ 40] + X_POSIX 5 read 13 136 544 723.4400 723.4401 [ 40] + X_POSIX 5 read 14 680 512 723.4406 723.4406 [ 40] + X_POSIX 5 read 15 1504 328 723.4700 723.4701 [ 40] + X_POSIX 5 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 5 read 17 0 9 724.2928 724.3856 [ 40] + X_POSIX 5 read 18 9 87 724.3856 724.3857 [ 40] + X_POSIX 5 read 19 96 512 724.3858 724.3858 [ 40] + X_POSIX 5 read 20 2064 632 724.3859 724.3859 [ 40] + X_POSIX 5 read 21 136 544 724.3859 724.3860 [ 40] + X_POSIX 5 read 22 680 512 724.3860 724.3861 [ 40] + X_POSIX 5 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 5 read 24 0 8 726.4898 726.6461 [ 40] + X_POSIX 5 read 25 0 9 726.6474 726.6475 [ 40] + X_POSIX 5 read 26 9 87 726.6478 726.6478 [ 40] + X_POSIX 5 read 27 96 512 726.6511 726.6511 [ 40] + X_POSIX 5 read 28 2064 632 726.6526 726.6528 [ 40] + X_POSIX 5 read 29 136 544 726.6538 726.6538 [ 40] + X_POSIX 5 read 30 680 512 726.6543 726.6544 [ 40] + X_POSIX 5 read 31 1504 328 726.6739 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 5, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 5 write 0 840 544 1497.0768 1497.0848 [209] + X_POSIX 5 write 1 2013319728 544 1497.6602 1497.7940 [ 85] + X_POSIX 5 write 2 3372318384 544 1498.5442 1498.6432 [ 35] + X_POSIX 5 write 3 8657576604 544 1500.0777 1500.3068 [193] + X_POSIX 5 write 4 27562580148 544 1509.4466 1511.1022 [183] + X_POSIX 5 read 0 0 8 1497.1739 1497.2806 [209] + X_POSIX 5 read 1 0 9 1497.2820 1497.2821 [209] + X_POSIX 5 read 2 9 87 1497.2822 1497.2823 [209] + X_POSIX 5 read 3 96 512 1497.2856 1497.2856 [209] + X_POSIX 5 read 4 2064 632 1497.2870 1497.2870 [209] + X_POSIX 5 read 5 136 544 1497.2881 1497.2881 [209] + X_POSIX 5 read 6 680 512 1497.2886 1497.2886 [209] + X_POSIX 5 read 7 1504 328 1497.3100 1497.3101 [209] + X_POSIX 5 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 5 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 5 read 10 9 87 1497.9742 1498.0191 [209] + X_POSIX 5 read 11 96 512 1498.0192 1498.0192 [209] + X_POSIX 5 read 12 2064 632 1498.0192 1498.0193 [209] + X_POSIX 5 read 13 136 544 1498.0193 1498.0193 [209] + X_POSIX 5 read 14 680 512 1498.0193 1498.0194 [209] + X_POSIX 5 read 15 1504 328 1498.0357 1498.0361 [209] + X_POSIX 5 read 16 0 8 1498.7554 1498.8335 [209] + X_POSIX 5 read 17 0 9 1498.8352 1498.8353 [209] + X_POSIX 5 read 18 9 87 1498.8354 1498.8355 [209] + X_POSIX 5 read 19 96 512 1498.8388 1498.8389 [209] + X_POSIX 5 read 20 2064 632 1498.8402 1498.8402 [209] + X_POSIX 5 read 21 136 544 1498.8413 1498.8413 [209] + X_POSIX 5 read 22 680 512 1498.8418 1498.8418 [209] + X_POSIX 5 read 23 1504 328 1498.8625 1498.8626 [209] + X_POSIX 5 read 24 0 8 1500.6275 1500.7392 [209] + X_POSIX 5 read 25 0 9 1500.7401 1500.7401 [209] + X_POSIX 5 read 26 9 87 1500.7403 1500.7403 [209] + X_POSIX 5 read 27 96 512 1500.7436 1500.7437 [209] + X_POSIX 5 read 28 2064 632 1500.7450 1500.7450 [209] + X_POSIX 5 read 29 136 544 1500.7460 1500.7461 [209] + X_POSIX 5 read 30 680 512 1500.7466 1500.7467 [209] + X_POSIX 5 read 31 1504 328 1500.7637 1500.7638 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 6, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 6 read 0 0 342 1.0880 1.0955 [ 33] + X_POSIX 6 read 1 342 0 1.1105 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 6, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 6 write 0 1384 120 722.2557 722.2563 [ 40] + X_POSIX 6 write 1 2013320272 32 723.0747 723.2737 [247] + X_POSIX 6 write 2 3372318928 32 723.9739 724.1254 [155] + X_POSIX 6 write 3 8657577148 32 725.8092 726.0689 [ 14] + X_POSIX 6 write 4 27605821168 32 737.5390 739.5618 [100] + X_POSIX 6 read 0 0 8 722.4243 722.4245 [ 40] + X_POSIX 6 read 1 0 9 722.4262 722.5394 [ 40] + X_POSIX 6 read 2 9 87 722.5397 722.5397 [ 40] + X_POSIX 6 read 3 96 512 722.5431 722.5431 [ 40] + X_POSIX 6 read 4 2064 632 722.5445 722.5446 [ 40] + X_POSIX 6 read 5 136 544 722.5456 722.5456 [ 40] + X_POSIX 6 read 6 680 512 722.5461 722.5462 [ 40] + X_POSIX 6 read 7 1504 328 722.5743 722.5743 [ 40] + X_POSIX 6 read 8 0 8 723.3814 723.3816 [ 40] + X_POSIX 6 read 9 0 9 723.3835 723.3835 [ 40] + X_POSIX 6 read 10 9 87 723.3838 723.3839 [ 40] + X_POSIX 6 read 11 96 512 723.3866 723.4371 [ 40] + X_POSIX 6 read 12 2064 632 723.4385 723.4387 [ 40] + X_POSIX 6 read 13 136 544 723.4398 723.4399 [ 40] + X_POSIX 6 read 14 680 512 723.4404 723.4404 [ 40] + X_POSIX 6 read 15 1504 328 723.4699 723.4699 [ 40] + X_POSIX 6 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 6 read 17 0 9 724.2929 724.3855 [ 40] + X_POSIX 6 read 18 9 87 724.3856 724.3856 [ 40] + X_POSIX 6 read 19 96 512 724.3856 724.3856 [ 40] + X_POSIX 6 read 20 2064 632 724.3856 724.3857 [ 40] + X_POSIX 6 read 21 136 544 724.3857 724.3857 [ 40] + X_POSIX 6 read 22 680 512 724.3857 724.3858 [ 40] + X_POSIX 6 read 23 1504 328 724.3948 724.3949 [ 40] + X_POSIX 6 read 24 0 8 726.4899 726.6464 [ 40] + X_POSIX 6 read 25 0 9 726.6484 726.6484 [ 40] + X_POSIX 6 read 26 9 87 726.6486 726.6487 [ 40] + X_POSIX 6 read 27 96 512 726.6521 726.6522 [ 40] + X_POSIX 6 read 28 2064 632 726.6536 726.6536 [ 40] + X_POSIX 6 read 29 136 544 726.6546 726.6547 [ 40] + X_POSIX 6 read 30 680 512 726.6552 726.6552 [ 40] + X_POSIX 6 read 31 1504 328 726.6742 726.6744 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 6, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 6 write 0 1384 120 1497.0767 1497.0845 [209] + X_POSIX 6 write 1 2013320272 32 1497.6601 1497.7938 [ 85] + X_POSIX 6 write 2 3372318928 32 1498.5442 1498.6433 [ 35] + X_POSIX 6 write 3 8657577148 32 1500.0776 1500.3064 [193] + X_POSIX 6 write 4 27562580692 32 1509.4466 1511.1023 [183] + X_POSIX 6 read 0 0 8 1497.1741 1497.2812 [209] + X_POSIX 6 read 1 0 9 1497.2829 1497.2829 [209] + X_POSIX 6 read 2 9 87 1497.2831 1497.2831 [209] + X_POSIX 6 read 3 96 512 1497.2865 1497.2865 [209] + X_POSIX 6 read 4 2064 632 1497.2880 1497.2880 [209] + X_POSIX 6 read 5 136 544 1497.2889 1497.2890 [209] + X_POSIX 6 read 6 680 512 1497.2895 1497.2897 [209] + X_POSIX 6 read 7 1504 328 1497.3099 1497.3099 [209] + X_POSIX 6 read 8 0 8 1497.9735 1497.9740 [209] + X_POSIX 6 read 9 0 9 1497.9740 1497.9742 [209] + X_POSIX 6 read 10 9 87 1497.9742 1498.0194 [209] + X_POSIX 6 read 11 96 512 1498.0194 1498.0195 [209] + X_POSIX 6 read 12 2064 632 1498.0195 1498.0195 [209] + X_POSIX 6 read 13 136 544 1498.0195 1498.0196 [209] + X_POSIX 6 read 14 680 512 1498.0196 1498.0197 [209] + X_POSIX 6 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 6 read 16 0 8 1498.7553 1498.8335 [209] + X_POSIX 6 read 17 0 9 1498.8353 1498.8354 [209] + X_POSIX 6 read 18 9 87 1498.8357 1498.8358 [209] + X_POSIX 6 read 19 96 512 1498.8391 1498.8391 [209] + X_POSIX 6 read 20 2064 632 1498.8404 1498.8404 [209] + X_POSIX 6 read 21 136 544 1498.8415 1498.8415 [209] + X_POSIX 6 read 22 680 512 1498.8420 1498.8421 [209] + X_POSIX 6 read 23 1504 328 1498.8627 1498.8629 [209] + X_POSIX 6 read 24 0 8 1500.6274 1500.7396 [209] + X_POSIX 6 read 25 0 9 1500.7413 1500.7414 [209] + X_POSIX 6 read 26 9 87 1500.7415 1500.7415 [209] + X_POSIX 6 read 27 96 512 1500.7449 1500.7449 [209] + X_POSIX 6 read 28 2064 632 1500.7463 1500.7463 [209] + X_POSIX 6 read 29 136 544 1500.7473 1500.7474 [209] + X_POSIX 6 read 30 680 512 1500.7479 1500.7480 [209] + X_POSIX 6 read 31 1504 328 1500.7637 1500.7638 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 7, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 7 read 0 0 342 1.0880 1.0952 [ 33] + X_POSIX 7 read 1 342 0 1.1105 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 7, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 7 write 0 1504 328 722.2558 722.2566 [ 40] + X_POSIX 7 write 1 2013320392 40 723.0747 723.2737 [247] + X_POSIX 7 write 2 3372319048 40 723.9739 724.1253 [155] + X_POSIX 7 write 3 8657577268 40 725.8091 726.0687 [ 14] + X_POSIX 7 write 4 27605821288 40 737.5389 739.5616 [100] + X_POSIX 7 read 0 0 8 722.4241 722.4243 [ 40] + X_POSIX 7 read 1 0 9 722.4261 722.5391 [ 40] + X_POSIX 7 read 2 9 87 722.5392 722.5393 [ 40] + X_POSIX 7 read 3 96 512 722.5427 722.5428 [ 40] + X_POSIX 7 read 4 2064 632 722.5442 722.5442 [ 40] + X_POSIX 7 read 5 136 544 722.5453 722.5453 [ 40] + X_POSIX 7 read 6 680 512 722.5458 722.5458 [ 40] + X_POSIX 7 read 7 1504 328 722.5744 722.5745 [ 40] + X_POSIX 7 read 8 0 8 723.3812 723.3814 [ 40] + X_POSIX 7 read 9 0 9 723.3833 723.3833 [ 40] + X_POSIX 7 read 10 9 87 723.3835 723.3835 [ 40] + X_POSIX 7 read 11 96 512 723.3864 723.4371 [ 40] + X_POSIX 7 read 12 2064 632 723.4385 723.4386 [ 40] + X_POSIX 7 read 13 136 544 723.4397 723.4397 [ 40] + X_POSIX 7 read 14 680 512 723.4402 723.4403 [ 40] + X_POSIX 7 read 15 1504 328 723.4700 723.4702 [ 40] + X_POSIX 7 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 7 read 17 0 9 724.2928 724.3868 [ 40] + X_POSIX 7 read 18 9 87 724.3868 724.3869 [ 40] + X_POSIX 7 read 19 96 512 724.3869 724.3869 [ 40] + X_POSIX 7 read 20 2064 632 724.3869 724.3869 [ 40] + X_POSIX 7 read 21 136 544 724.3869 724.3870 [ 40] + X_POSIX 7 read 22 680 512 724.3870 724.3870 [ 40] + X_POSIX 7 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 7 read 24 0 8 726.4898 726.6462 [ 40] + X_POSIX 7 read 25 0 9 726.6480 726.6481 [ 40] + X_POSIX 7 read 26 9 87 726.6482 726.6483 [ 40] + X_POSIX 7 read 27 96 512 726.6516 726.6516 [ 40] + X_POSIX 7 read 28 2064 632 726.6530 726.6532 [ 40] + X_POSIX 7 read 29 136 544 726.6542 726.6543 [ 40] + X_POSIX 7 read 30 680 512 726.6548 726.6548 [ 40] + X_POSIX 7 read 31 1504 328 726.6744 726.6746 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 7, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 7 write 0 1504 328 1497.0768 1497.0850 [209] + X_POSIX 7 write 1 2013320392 40 1497.6602 1497.7938 [ 85] + X_POSIX 7 write 2 3372319048 40 1498.5443 1498.6433 [ 35] + X_POSIX 7 write 3 8657577268 40 1500.0777 1500.3067 [193] + X_POSIX 7 write 4 27562580812 40 1509.4466 1511.1021 [183] + X_POSIX 7 read 0 0 8 1497.1741 1497.2808 [209] + X_POSIX 7 read 1 0 9 1497.2825 1497.2825 [209] + X_POSIX 7 read 2 9 87 1497.2827 1497.2828 [209] + X_POSIX 7 read 3 96 512 1497.2862 1497.2862 [209] + X_POSIX 7 read 4 2064 632 1497.2876 1497.2876 [209] + X_POSIX 7 read 5 136 544 1497.2886 1497.2887 [209] + X_POSIX 7 read 6 680 512 1497.2891 1497.2892 [209] + X_POSIX 7 read 7 1504 328 1497.3098 1497.3099 [209] + X_POSIX 7 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 7 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 7 read 10 9 87 1497.9742 1498.0191 [209] + X_POSIX 7 read 11 96 512 1498.0192 1498.0192 [209] + X_POSIX 7 read 12 2064 632 1498.0192 1498.0193 [209] + X_POSIX 7 read 13 136 544 1498.0193 1498.0193 [209] + X_POSIX 7 read 14 680 512 1498.0193 1498.0194 [209] + X_POSIX 7 read 15 1504 328 1498.0357 1498.0361 [209] + X_POSIX 7 read 16 0 8 1498.7553 1498.8337 [209] + X_POSIX 7 read 17 0 9 1498.8354 1498.8355 [209] + X_POSIX 7 read 18 9 87 1498.8357 1498.8359 [209] + X_POSIX 7 read 19 96 512 1498.8391 1498.8392 [209] + X_POSIX 7 read 20 2064 632 1498.8405 1498.8406 [209] + X_POSIX 7 read 21 136 544 1498.8416 1498.8416 [209] + X_POSIX 7 read 22 680 512 1498.8421 1498.8421 [209] + X_POSIX 7 read 23 1504 328 1498.8625 1498.8626 [209] + X_POSIX 7 read 24 0 8 1500.6274 1500.7394 [209] + X_POSIX 7 read 25 0 9 1500.7409 1500.7409 [209] + X_POSIX 7 read 26 9 87 1500.7411 1500.7411 [209] + X_POSIX 7 read 27 96 512 1500.7445 1500.7445 [209] + X_POSIX 7 read 28 2064 632 1500.7458 1500.7458 [209] + X_POSIX 7 read 29 136 544 1500.7468 1500.7468 [209] + X_POSIX 7 read 30 680 512 1500.7473 1500.7475 [209] + X_POSIX 7 read 31 1504 328 1500.7641 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 8, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 8 read 0 0 342 1.0879 1.0952 [ 33] + X_POSIX 8 read 1 342 0 1.1104 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 8, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 8 write 0 1832 232 722.2557 722.2567 [ 40] + X_POSIX 8 write 1 2013320432 544 723.0747 723.2738 [247] + X_POSIX 8 write 2 3372319088 544 723.9738 724.1250 [155] + X_POSIX 8 write 3 8657577308 544 725.8063 726.0684 [ 14] + X_POSIX 8 write 4 27605821328 544 737.5368 739.5580 [100] + X_POSIX 8 read 0 0 8 722.4241 722.4242 [ 40] + X_POSIX 8 read 1 0 9 722.4260 722.5388 [ 40] + X_POSIX 8 read 2 9 87 722.5389 722.5389 [ 40] + X_POSIX 8 read 3 96 512 722.5416 722.5416 [ 40] + X_POSIX 8 read 4 2064 632 722.5430 722.5431 [ 40] + X_POSIX 8 read 5 136 544 722.5442 722.5442 [ 40] + X_POSIX 8 read 6 680 512 722.5447 722.5449 [ 40] + X_POSIX 8 read 7 1504 328 722.5741 722.5741 [ 40] + X_POSIX 8 read 8 0 8 723.3783 723.3783 [ 40] + X_POSIX 8 read 9 0 9 723.3802 723.3802 [ 40] + X_POSIX 8 read 10 9 87 723.3804 723.3804 [ 40] + X_POSIX 8 read 11 96 512 723.3838 723.3839 [ 40] + X_POSIX 8 read 12 2064 632 723.3854 723.4366 [ 40] + X_POSIX 8 read 13 136 544 723.4373 723.4374 [ 40] + X_POSIX 8 read 14 680 512 723.4379 723.4379 [ 40] + X_POSIX 8 read 15 1504 328 723.4699 723.4701 [ 40] + X_POSIX 8 read 16 0 8 724.2923 724.2925 [ 40] + X_POSIX 8 read 17 0 9 724.2925 724.2927 [ 40] + X_POSIX 8 read 18 9 87 724.2927 724.3854 [ 40] + X_POSIX 8 read 19 96 512 724.3854 724.3855 [ 40] + X_POSIX 8 read 20 2064 632 724.3855 724.3855 [ 40] + X_POSIX 8 read 21 136 544 724.3855 724.3856 [ 40] + X_POSIX 8 read 22 680 512 724.3856 724.3856 [ 40] + X_POSIX 8 read 23 1504 328 724.3947 724.3950 [ 40] + X_POSIX 8 read 24 0 8 726.4897 726.6461 [ 40] + X_POSIX 8 read 25 0 9 726.6479 726.6479 [ 40] + X_POSIX 8 read 26 9 87 726.6481 726.6481 [ 40] + X_POSIX 8 read 27 96 512 726.6515 726.6515 [ 40] + X_POSIX 8 read 28 2064 632 726.6529 726.6531 [ 40] + X_POSIX 8 read 29 136 544 726.6541 726.6542 [ 40] + X_POSIX 8 read 30 680 512 726.6547 726.6547 [ 40] + X_POSIX 8 read 31 1504 328 726.6739 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 8, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 8 write 0 1832 232 1497.0767 1497.0846 [209] + X_POSIX 8 write 1 2013320432 544 1497.6601 1497.7935 [ 85] + X_POSIX 8 write 2 3372319088 544 1498.5442 1498.6041 [ 35] + X_POSIX 8 write 3 8657577308 544 1500.0776 1500.3062 [193] + X_POSIX 8 write 4 27562580852 544 1509.4446 1511.0982 [183] + X_POSIX 8 read 0 0 8 1497.1739 1497.2807 [209] + X_POSIX 8 read 1 0 9 1497.2824 1497.2825 [209] + X_POSIX 8 read 2 9 87 1497.2826 1497.2827 [209] + X_POSIX 8 read 3 96 512 1497.2861 1497.2861 [209] + X_POSIX 8 read 4 2064 632 1497.2875 1497.2876 [209] + X_POSIX 8 read 5 136 544 1497.2886 1497.2886 [209] + X_POSIX 8 read 6 680 512 1497.2891 1497.2891 [209] + X_POSIX 8 read 7 1504 328 1497.3099 1497.3100 [209] + X_POSIX 8 read 8 0 8 1497.9735 1497.9736 [209] + X_POSIX 8 read 9 0 9 1497.9737 1497.9739 [209] + X_POSIX 8 read 10 9 87 1497.9739 1497.9742 [209] + X_POSIX 8 read 11 96 512 1497.9742 1498.0194 [209] + X_POSIX 8 read 12 2064 632 1498.0194 1498.0195 [209] + X_POSIX 8 read 13 136 544 1498.0195 1498.0196 [209] + X_POSIX 8 read 14 680 512 1498.0196 1498.0196 [209] + X_POSIX 8 read 15 1504 328 1498.0356 1498.0358 [209] + X_POSIX 8 read 16 0 8 1498.7551 1498.8334 [209] + X_POSIX 8 read 17 0 9 1498.8351 1498.8352 [209] + X_POSIX 8 read 18 9 87 1498.8353 1498.8354 [209] + X_POSIX 8 read 19 96 512 1498.8389 1498.8389 [209] + X_POSIX 8 read 20 2064 632 1498.8403 1498.8403 [209] + X_POSIX 8 read 21 136 544 1498.8413 1498.8413 [209] + X_POSIX 8 read 22 680 512 1498.8418 1498.8419 [209] + X_POSIX 8 read 23 1504 328 1498.8626 1498.8627 [209] + X_POSIX 8 read 24 0 8 1500.6273 1500.7394 [209] + X_POSIX 8 read 25 0 9 1500.7411 1500.7412 [209] + X_POSIX 8 read 26 9 87 1500.7413 1500.7414 [209] + X_POSIX 8 read 27 96 512 1500.7447 1500.7447 [209] + X_POSIX 8 read 28 2064 632 1500.7460 1500.7461 [209] + X_POSIX 8 read 29 136 544 1500.7471 1500.7472 [209] + X_POSIX 8 read 30 680 512 1500.7478 1500.7478 [209] + X_POSIX 8 read 31 1504 328 1500.7637 1500.7637 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 9, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 9 read 0 0 342 1.0880 1.0952 [ 33] + X_POSIX 9 read 1 342 0 1.1106 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 9, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 9 write 0 2064 632 722.2558 722.2565 [ 40] + X_POSIX 9 write 1 2013320976 120 723.0747 723.2735 [247] + X_POSIX 9 write 2 3372319632 120 723.9738 724.1251 [155] + X_POSIX 9 write 3 8657577852 120 725.8067 726.0686 [ 14] + X_POSIX 9 write 4 27605821872 120 737.5372 739.5582 [100] + X_POSIX 9 read 0 0 8 722.4241 722.4243 [ 40] + X_POSIX 9 read 1 0 9 722.4260 722.5389 [ 40] + X_POSIX 9 read 2 9 87 722.5390 722.5391 [ 40] + X_POSIX 9 read 3 96 512 722.5425 722.5425 [ 40] + X_POSIX 9 read 4 2064 632 722.5439 722.5440 [ 40] + X_POSIX 9 read 5 136 544 722.5450 722.5450 [ 40] + X_POSIX 9 read 6 680 512 722.5455 722.5456 [ 40] + X_POSIX 9 read 7 1504 328 722.5741 722.5742 [ 40] + X_POSIX 9 read 8 0 8 723.3815 723.3817 [ 40] + X_POSIX 9 read 9 0 9 723.3837 723.3838 [ 40] + X_POSIX 9 read 10 9 87 723.3839 723.3841 [ 40] + X_POSIX 9 read 11 96 512 723.3867 723.4373 [ 40] + X_POSIX 9 read 12 2064 632 723.4389 723.4390 [ 40] + X_POSIX 9 read 13 136 544 723.4401 723.4402 [ 40] + X_POSIX 9 read 14 680 512 723.4407 723.4407 [ 40] + X_POSIX 9 read 15 1504 328 723.4700 723.4702 [ 40] + X_POSIX 9 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 9 read 17 0 9 724.2928 724.3862 [ 40] + X_POSIX 9 read 18 9 87 724.3862 724.3864 [ 40] + X_POSIX 9 read 19 96 512 724.3864 724.3865 [ 40] + X_POSIX 9 read 20 2064 632 724.3865 724.3866 [ 40] + X_POSIX 9 read 21 136 544 724.3866 724.3867 [ 40] + X_POSIX 9 read 22 680 512 724.3867 724.3867 [ 40] + X_POSIX 9 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 9 read 24 0 8 726.4898 726.6462 [ 40] + X_POSIX 9 read 25 0 9 726.6478 726.6478 [ 40] + X_POSIX 9 read 26 9 87 726.6480 726.6480 [ 40] + X_POSIX 9 read 27 96 512 726.6513 726.6513 [ 40] + X_POSIX 9 read 28 2064 632 726.6528 726.6530 [ 40] + X_POSIX 9 read 29 136 544 726.6540 726.6540 [ 40] + X_POSIX 9 read 30 680 512 726.6545 726.6546 [ 40] + X_POSIX 9 read 31 1504 328 726.6741 726.6742 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 9, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 9 write 0 2064 632 1497.0768 1497.0845 [209] + X_POSIX 9 write 1 2013320976 120 1497.6601 1497.7935 [ 85] + X_POSIX 9 write 2 3372319632 120 1498.5443 1498.6043 [ 35] + X_POSIX 9 write 3 8657577852 120 1500.0776 1500.3062 [193] + X_POSIX 9 write 4 27562581396 120 1509.4450 1511.0983 [183] + X_POSIX 9 read 0 0 8 1497.1740 1497.2813 [209] + X_POSIX 9 read 1 0 9 1497.2831 1497.2831 [209] + X_POSIX 9 read 2 9 87 1497.2833 1497.2833 [209] + X_POSIX 9 read 3 96 512 1497.2866 1497.2868 [209] + X_POSIX 9 read 4 2064 632 1497.2883 1497.2883 [209] + X_POSIX 9 read 5 136 544 1497.2892 1497.2893 [209] + X_POSIX 9 read 6 680 512 1497.2898 1497.2899 [209] + X_POSIX 9 read 7 1504 328 1497.3098 1497.3098 [209] + X_POSIX 9 read 8 0 8 1497.9736 1497.9740 [209] + X_POSIX 9 read 9 0 9 1497.9740 1497.9742 [209] + X_POSIX 9 read 10 9 87 1497.9742 1498.0192 [209] + X_POSIX 9 read 11 96 512 1498.0192 1498.0193 [209] + X_POSIX 9 read 12 2064 632 1498.0193 1498.0194 [209] + X_POSIX 9 read 13 136 544 1498.0194 1498.0195 [209] + X_POSIX 9 read 14 680 512 1498.0195 1498.0195 [209] + X_POSIX 9 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 9 read 16 0 8 1498.7555 1498.8337 [209] + X_POSIX 9 read 17 0 9 1498.8355 1498.8356 [209] + X_POSIX 9 read 18 9 87 1498.8358 1498.8360 [209] + X_POSIX 9 read 19 96 512 1498.8392 1498.8392 [209] + X_POSIX 9 read 20 2064 632 1498.8406 1498.8406 [209] + X_POSIX 9 read 21 136 544 1498.8416 1498.8417 [209] + X_POSIX 9 read 22 680 512 1498.8422 1498.8423 [209] + X_POSIX 9 read 23 1504 328 1498.8628 1498.8628 [209] + X_POSIX 9 read 24 0 8 1500.6276 1500.7399 [209] + X_POSIX 9 read 25 0 9 1500.7416 1500.7416 [209] + X_POSIX 9 read 26 9 87 1500.7418 1500.7419 [209] + X_POSIX 9 read 27 96 512 1500.7452 1500.7452 [209] + X_POSIX 9 read 28 2064 632 1500.7465 1500.7466 [209] + X_POSIX 9 read 29 136 544 1500.7476 1500.7477 [209] + X_POSIX 9 read 30 680 512 1500.7482 1500.7483 [209] + X_POSIX 9 read 31 1504 328 1500.7641 1500.7643 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 10, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 10 read 0 0 342 1.0880 1.0954 [ 33] + X_POSIX 10 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 10, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 10 write 0 2696 40 722.2582 722.2583 [ 40] + X_POSIX 10 write 1 2013321096 328 723.0747 723.2737 [247] + X_POSIX 10 write 2 3372319752 328 723.9739 724.1254 [155] + X_POSIX 10 write 3 8657577972 328 725.8093 726.0691 [ 14] + X_POSIX 10 write 4 27605821992 328 737.5390 739.5618 [100] + X_POSIX 10 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 10 read 1 0 9 722.4263 722.5394 [ 40] + X_POSIX 10 read 2 9 87 722.5396 722.5397 [ 40] + X_POSIX 10 read 3 96 512 722.5431 722.5431 [ 40] + X_POSIX 10 read 4 2064 632 722.5445 722.5445 [ 40] + X_POSIX 10 read 5 136 544 722.5456 722.5456 [ 40] + X_POSIX 10 read 6 680 512 722.5461 722.5462 [ 40] + X_POSIX 10 read 7 1504 328 722.5745 722.5747 [ 40] + X_POSIX 10 read 8 0 8 723.3815 723.3817 [ 40] + X_POSIX 10 read 9 0 9 723.3836 723.3836 [ 40] + X_POSIX 10 read 10 9 87 723.3838 723.3840 [ 40] + X_POSIX 10 read 11 96 512 723.3867 723.4374 [ 40] + X_POSIX 10 read 12 2064 632 723.4388 723.4389 [ 40] + X_POSIX 10 read 13 136 544 723.4400 723.4401 [ 40] + X_POSIX 10 read 14 680 512 723.4406 723.4406 [ 40] + X_POSIX 10 read 15 1504 328 723.4702 723.4704 [ 40] + X_POSIX 10 read 16 0 8 724.2924 724.2929 [ 40] + X_POSIX 10 read 17 0 9 724.2929 724.3858 [ 40] + X_POSIX 10 read 18 9 87 724.3858 724.3859 [ 40] + X_POSIX 10 read 19 96 512 724.3859 724.3859 [ 40] + X_POSIX 10 read 20 2064 632 724.3859 724.3860 [ 40] + X_POSIX 10 read 21 136 544 724.3861 724.3862 [ 40] + X_POSIX 10 read 22 680 512 724.3862 724.3863 [ 40] + X_POSIX 10 read 23 1504 328 724.3948 724.3953 [ 40] + X_POSIX 10 read 24 0 8 726.4893 726.6460 [ 40] + X_POSIX 10 read 25 0 9 726.6463 726.6464 [ 40] + X_POSIX 10 read 26 9 87 726.6465 726.6466 [ 40] + X_POSIX 10 read 27 96 512 726.6499 726.6500 [ 40] + X_POSIX 10 read 28 2064 632 726.6514 726.6514 [ 40] + X_POSIX 10 read 29 136 544 726.6525 726.6527 [ 40] + X_POSIX 10 read 30 680 512 726.6532 726.6532 [ 40] + X_POSIX 10 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 10, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 10 write 0 2696 40 1497.0769 1497.0852 [209] + X_POSIX 10 write 1 2013321096 328 1497.6602 1497.7941 [ 85] + X_POSIX 10 write 2 3372319752 328 1498.5443 1498.6045 [ 35] + X_POSIX 10 write 3 8657577972 328 1500.0777 1500.3067 [193] + X_POSIX 10 write 4 27562581516 328 1509.4467 1511.1024 [183] + X_POSIX 10 read 0 0 8 1497.1741 1497.2813 [209] + X_POSIX 10 read 1 0 9 1497.2830 1497.2830 [209] + X_POSIX 10 read 2 9 87 1497.2832 1497.2832 [209] + X_POSIX 10 read 3 96 512 1497.2866 1497.2867 [209] + X_POSIX 10 read 4 2064 632 1497.2882 1497.2882 [209] + X_POSIX 10 read 5 136 544 1497.2891 1497.2892 [209] + X_POSIX 10 read 6 680 512 1497.2897 1497.2899 [209] + X_POSIX 10 read 7 1504 328 1497.3096 1497.3096 [209] + X_POSIX 10 read 8 0 8 1497.9736 1497.9738 [209] + X_POSIX 10 read 9 0 9 1497.9738 1497.9741 [209] + X_POSIX 10 read 10 9 87 1497.9741 1498.0189 [209] + X_POSIX 10 read 11 96 512 1498.0189 1498.0189 [209] + X_POSIX 10 read 12 2064 632 1498.0190 1498.0190 [209] + X_POSIX 10 read 13 136 544 1498.0190 1498.0191 [209] + X_POSIX 10 read 14 680 512 1498.0191 1498.0191 [209] + X_POSIX 10 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 10 read 16 0 8 1498.7552 1498.8333 [209] + X_POSIX 10 read 17 0 9 1498.8349 1498.8349 [209] + X_POSIX 10 read 18 9 87 1498.8351 1498.8351 [209] + X_POSIX 10 read 19 96 512 1498.8384 1498.8384 [209] + X_POSIX 10 read 20 2064 632 1498.8398 1498.8399 [209] + X_POSIX 10 read 21 136 544 1498.8409 1498.8409 [209] + X_POSIX 10 read 22 680 512 1498.8414 1498.8415 [209] + X_POSIX 10 read 23 1504 328 1498.8626 1498.8626 [209] + X_POSIX 10 read 24 0 8 1500.6275 1500.7395 [209] + X_POSIX 10 read 25 0 9 1500.7412 1500.7413 [209] + X_POSIX 10 read 26 9 87 1500.7414 1500.7415 [209] + X_POSIX 10 read 27 96 512 1500.7448 1500.7449 [209] + X_POSIX 10 read 28 2064 632 1500.7462 1500.7462 [209] + X_POSIX 10 read 29 136 544 1500.7474 1500.7476 [209] + X_POSIX 10 read 30 680 512 1500.7480 1500.7481 [209] + X_POSIX 10 read 31 1504 328 1500.7642 1500.7644 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 11, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 11 read 0 0 342 1.0881 1.0955 [ 33] + X_POSIX 11 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 11, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 11 write 0 2736 544 722.2582 722.2584 [ 40] + X_POSIX 11 write 1 2013321424 320 723.0748 723.2739 [247] + X_POSIX 11 write 2 3372320080 320 723.9739 724.1253 [155] + X_POSIX 11 write 3 8657578300 320 725.8088 726.0686 [ 14] + X_POSIX 11 write 4 27605822320 320 737.5385 739.5583 [100] + X_POSIX 11 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 11 read 1 0 9 722.4262 722.5393 [ 40] + X_POSIX 11 read 2 9 87 722.5395 722.5396 [ 40] + X_POSIX 11 read 3 96 512 722.5430 722.5430 [ 40] + X_POSIX 11 read 4 2064 632 722.5444 722.5445 [ 40] + X_POSIX 11 read 5 136 544 722.5455 722.5455 [ 40] + X_POSIX 11 read 6 680 512 722.5460 722.5460 [ 40] + X_POSIX 11 read 7 1504 328 722.5744 722.5746 [ 40] + X_POSIX 11 read 8 0 8 723.3783 723.3784 [ 40] + X_POSIX 11 read 9 0 9 723.3803 723.3803 [ 40] + X_POSIX 11 read 10 9 87 723.3805 723.3805 [ 40] + X_POSIX 11 read 11 96 512 723.3838 723.3839 [ 40] + X_POSIX 11 read 12 2064 632 723.3853 723.4367 [ 40] + X_POSIX 11 read 13 136 544 723.4369 723.4370 [ 40] + X_POSIX 11 read 14 680 512 723.4374 723.4375 [ 40] + X_POSIX 11 read 15 1504 328 723.4701 723.4703 [ 40] + X_POSIX 11 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 11 read 17 0 9 724.2927 724.2930 [ 40] + X_POSIX 11 read 18 9 87 724.2930 724.3856 [ 40] + X_POSIX 11 read 19 96 512 724.3856 724.3857 [ 40] + X_POSIX 11 read 20 2064 632 724.3857 724.3858 [ 40] + X_POSIX 11 read 21 136 544 724.3858 724.3859 [ 40] + X_POSIX 11 read 22 680 512 724.3859 724.3860 [ 40] + X_POSIX 11 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 11 read 24 0 8 726.4899 726.6461 [ 40] + X_POSIX 11 read 25 0 9 726.6476 726.6477 [ 40] + X_POSIX 11 read 26 9 87 726.6479 726.6479 [ 40] + X_POSIX 11 read 27 96 512 726.6512 726.6512 [ 40] + X_POSIX 11 read 28 2064 632 726.6527 726.6529 [ 40] + X_POSIX 11 read 29 136 544 726.6539 726.6540 [ 40] + X_POSIX 11 read 30 680 512 726.6545 726.6545 [ 40] + X_POSIX 11 read 31 1504 328 726.6740 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 11, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 11 write 0 2736 544 1497.0769 1497.0854 [209] + X_POSIX 11 write 1 2013321424 320 1497.6602 1497.7938 [ 85] + X_POSIX 11 write 2 3372320080 320 1498.5443 1498.6044 [ 35] + X_POSIX 11 write 3 8657578300 320 1500.0777 1500.3064 [193] + X_POSIX 11 write 4 27562581844 320 1509.4463 1511.1021 [183] + X_POSIX 11 read 0 0 8 1497.1741 1497.2809 [209] + X_POSIX 11 read 1 0 9 1497.2827 1497.2827 [209] + X_POSIX 11 read 2 9 87 1497.2829 1497.2829 [209] + X_POSIX 11 read 3 96 512 1497.2863 1497.2863 [209] + X_POSIX 11 read 4 2064 632 1497.2878 1497.2878 [209] + X_POSIX 11 read 5 136 544 1497.2888 1497.2888 [209] + X_POSIX 11 read 6 680 512 1497.2893 1497.2893 [209] + X_POSIX 11 read 7 1504 328 1497.3100 1497.3101 [209] + X_POSIX 11 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 11 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 11 read 10 9 87 1497.9742 1498.0190 [209] + X_POSIX 11 read 11 96 512 1498.0190 1498.0190 [209] + X_POSIX 11 read 12 2064 632 1498.0191 1498.0191 [209] + X_POSIX 11 read 13 136 544 1498.0191 1498.0192 [209] + X_POSIX 11 read 14 680 512 1498.0192 1498.0193 [209] + X_POSIX 11 read 15 1504 328 1498.0357 1498.0361 [209] + X_POSIX 11 read 16 0 8 1498.7555 1498.8338 [209] + X_POSIX 11 read 17 0 9 1498.8358 1498.8360 [209] + X_POSIX 11 read 18 9 87 1498.8362 1498.8362 [209] + X_POSIX 11 read 19 96 512 1498.8394 1498.8395 [209] + X_POSIX 11 read 20 2064 632 1498.8409 1498.8409 [209] + X_POSIX 11 read 21 136 544 1498.8419 1498.8420 [209] + X_POSIX 11 read 22 680 512 1498.8425 1498.8425 [209] + X_POSIX 11 read 23 1504 328 1498.8629 1498.8630 [209] + X_POSIX 11 read 24 0 8 1500.6273 1500.7398 [209] + X_POSIX 11 read 25 0 9 1500.7416 1500.7416 [209] + X_POSIX 11 read 26 9 87 1500.7418 1500.7418 [209] + X_POSIX 11 read 27 96 512 1500.7453 1500.7454 [209] + X_POSIX 11 read 28 2064 632 1500.7467 1500.7468 [209] + X_POSIX 11 read 29 136 544 1500.7478 1500.7479 [209] + X_POSIX 11 read 30 680 512 1500.7484 1500.7485 [209] + X_POSIX 11 read 31 1504 328 1500.7638 1500.7639 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 12, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 12 read 0 0 342 1.0881 1.0957 [ 33] + X_POSIX 12 read 1 342 0 1.1106 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 12, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 12 write 0 3280 32 722.2582 722.2582 [ 40] + X_POSIX 12 write 1 2013321744 608 723.0747 723.2736 [247] + X_POSIX 12 write 2 3372320400 608 723.9739 724.1252 [155] + X_POSIX 12 write 3 8657578620 608 725.8092 726.0689 [ 14] + X_POSIX 12 write 4 27605822640 608 737.5390 739.5617 [100] + X_POSIX 12 read 0 0 8 722.4242 722.4245 [ 40] + X_POSIX 12 read 1 0 9 722.4263 722.5393 [ 40] + X_POSIX 12 read 2 9 87 722.5395 722.5395 [ 40] + X_POSIX 12 read 3 96 512 722.5430 722.5430 [ 40] + X_POSIX 12 read 4 2064 632 722.5444 722.5445 [ 40] + X_POSIX 12 read 5 136 544 722.5455 722.5455 [ 40] + X_POSIX 12 read 6 680 512 722.5460 722.5460 [ 40] + X_POSIX 12 read 7 1504 328 722.5742 722.5743 [ 40] + X_POSIX 12 read 8 0 8 723.3784 723.3785 [ 40] + X_POSIX 12 read 9 0 9 723.3804 723.3804 [ 40] + X_POSIX 12 read 10 9 87 723.3806 723.3806 [ 40] + X_POSIX 12 read 11 96 512 723.3839 723.3841 [ 40] + X_POSIX 12 read 12 2064 632 723.3856 723.4369 [ 40] + X_POSIX 12 read 13 136 544 723.4378 723.4378 [ 40] + X_POSIX 12 read 14 680 512 723.4384 723.4385 [ 40] + X_POSIX 12 read 15 1504 328 723.4699 723.4700 [ 40] + X_POSIX 12 read 16 0 8 724.2924 724.2926 [ 40] + X_POSIX 12 read 17 0 9 724.2926 724.2928 [ 40] + X_POSIX 12 read 18 9 87 724.2928 724.3863 [ 40] + X_POSIX 12 read 19 96 512 724.3863 724.3864 [ 40] + X_POSIX 12 read 20 2064 632 724.3865 724.3866 [ 40] + X_POSIX 12 read 21 136 544 724.3866 724.3867 [ 40] + X_POSIX 12 read 22 680 512 724.3867 724.3867 [ 40] + X_POSIX 12 read 23 1504 328 724.3949 724.3951 [ 40] + X_POSIX 12 read 24 0 8 726.4898 726.6463 [ 40] + X_POSIX 12 read 25 0 9 726.6482 726.6482 [ 40] + X_POSIX 12 read 26 9 87 726.6484 726.6484 [ 40] + X_POSIX 12 read 27 96 512 726.6517 726.6518 [ 40] + X_POSIX 12 read 28 2064 632 726.6531 726.6533 [ 40] + X_POSIX 12 read 29 136 544 726.6543 726.6543 [ 40] + X_POSIX 12 read 30 680 512 726.6549 726.6549 [ 40] + X_POSIX 12 read 31 1504 328 726.6743 726.6745 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 12, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 12 write 0 3280 32 1497.0769 1497.0851 [209] + X_POSIX 12 write 1 2013321744 608 1497.6602 1497.7936 [ 85] + X_POSIX 12 write 2 3372320400 608 1498.5443 1498.6045 [ 35] + X_POSIX 12 write 3 8657578620 608 1500.0777 1500.3066 [193] + X_POSIX 12 write 4 27562582164 608 1509.4466 1511.1022 [183] + X_POSIX 12 read 0 0 8 1497.1739 1497.2808 [209] + X_POSIX 12 read 1 0 9 1497.2824 1497.2824 [209] + X_POSIX 12 read 2 9 87 1497.2826 1497.2827 [209] + X_POSIX 12 read 3 96 512 1497.2861 1497.2861 [209] + X_POSIX 12 read 4 2064 632 1497.2874 1497.2875 [209] + X_POSIX 12 read 5 136 544 1497.2886 1497.2886 [209] + X_POSIX 12 read 6 680 512 1497.2891 1497.2891 [209] + X_POSIX 12 read 7 1504 328 1497.3097 1497.3098 [209] + X_POSIX 12 read 8 0 8 1497.9736 1497.9740 [209] + X_POSIX 12 read 9 0 9 1497.9740 1497.9742 [209] + X_POSIX 12 read 10 9 87 1497.9742 1498.0194 [209] + X_POSIX 12 read 11 96 512 1498.0194 1498.0195 [209] + X_POSIX 12 read 12 2064 632 1498.0195 1498.0195 [209] + X_POSIX 12 read 13 136 544 1498.0196 1498.0196 [209] + X_POSIX 12 read 14 680 512 1498.0196 1498.0196 [209] + X_POSIX 12 read 15 1504 328 1498.0358 1498.0361 [209] + X_POSIX 12 read 16 0 8 1498.7552 1498.8334 [209] + X_POSIX 12 read 17 0 9 1498.8352 1498.8352 [209] + X_POSIX 12 read 18 9 87 1498.8354 1498.8354 [209] + X_POSIX 12 read 19 96 512 1498.8387 1498.8387 [209] + X_POSIX 12 read 20 2064 632 1498.8401 1498.8401 [209] + X_POSIX 12 read 21 136 544 1498.8411 1498.8411 [209] + X_POSIX 12 read 22 680 512 1498.8416 1498.8416 [209] + X_POSIX 12 read 23 1504 328 1498.8630 1498.8631 [209] + X_POSIX 12 read 24 0 8 1500.6274 1500.7398 [209] + X_POSIX 12 read 25 0 9 1500.7415 1500.7416 [209] + X_POSIX 12 read 26 9 87 1500.7418 1500.7418 [209] + X_POSIX 12 read 27 96 512 1500.7453 1500.7454 [209] + X_POSIX 12 read 28 2064 632 1500.7467 1500.7468 [209] + X_POSIX 12 read 29 136 544 1500.7478 1500.7479 [209] + X_POSIX 12 read 30 680 512 1500.7484 1500.7485 [209] + X_POSIX 12 read 31 1504 328 1500.7640 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 13, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 13 read 0 0 342 1.0881 1.0956 [ 33] + X_POSIX 13 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 13, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 13 write 0 3400 40 722.2582 722.2583 [ 40] + X_POSIX 13 write 1 2013322352 272 723.0747 723.2740 [247] + X_POSIX 13 write 2 3372321008 272 723.9739 724.1255 [155] + X_POSIX 13 write 3 8657579228 272 725.8091 726.0687 [ 14] + X_POSIX 13 write 4 27605823248 272 737.5388 739.5615 [100] + X_POSIX 13 read 0 0 8 722.4241 722.4243 [ 40] + X_POSIX 13 read 1 0 9 722.4261 722.5390 [ 40] + X_POSIX 13 read 2 9 87 722.5391 722.5391 [ 40] + X_POSIX 13 read 3 96 512 722.5425 722.5426 [ 40] + X_POSIX 13 read 4 2064 632 722.5440 722.5441 [ 40] + X_POSIX 13 read 5 136 544 722.5451 722.5451 [ 40] + X_POSIX 13 read 6 680 512 722.5456 722.5456 [ 40] + X_POSIX 13 read 7 1504 328 722.5741 722.5742 [ 40] + X_POSIX 13 read 8 0 8 723.3783 723.3783 [ 40] + X_POSIX 13 read 9 0 9 723.3802 723.3803 [ 40] + X_POSIX 13 read 10 9 87 723.3804 723.3805 [ 40] + X_POSIX 13 read 11 96 512 723.3840 723.3842 [ 40] + X_POSIX 13 read 12 2064 632 723.3856 723.4368 [ 40] + X_POSIX 13 read 13 136 544 723.4377 723.4378 [ 40] + X_POSIX 13 read 14 680 512 723.4383 723.4384 [ 40] + X_POSIX 13 read 15 1504 328 723.4700 723.4701 [ 40] + X_POSIX 13 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 13 read 17 0 9 724.2927 724.3862 [ 40] + X_POSIX 13 read 18 9 87 724.3863 724.3864 [ 40] + X_POSIX 13 read 19 96 512 724.3864 724.3865 [ 40] + X_POSIX 13 read 20 2064 632 724.3865 724.3866 [ 40] + X_POSIX 13 read 21 136 544 724.3866 724.3867 [ 40] + X_POSIX 13 read 22 680 512 724.3867 724.3867 [ 40] + X_POSIX 13 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 13 read 24 0 8 726.4897 726.6460 [ 40] + X_POSIX 13 read 25 0 9 726.6470 726.6471 [ 40] + X_POSIX 13 read 26 9 87 726.6473 726.6473 [ 40] + X_POSIX 13 read 27 96 512 726.6507 726.6507 [ 40] + X_POSIX 13 read 28 2064 632 726.6522 726.6523 [ 40] + X_POSIX 13 read 29 136 544 726.6534 726.6534 [ 40] + X_POSIX 13 read 30 680 512 726.6539 726.6540 [ 40] + X_POSIX 13 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 13, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 13 write 0 3400 40 1497.0768 1497.0849 [209] + X_POSIX 13 write 1 2013322352 272 1497.6601 1497.7937 [ 85] + X_POSIX 13 write 2 3372321008 272 1498.5442 1498.6044 [ 35] + X_POSIX 13 write 3 8657579228 272 1500.0776 1500.3063 [193] + X_POSIX 13 write 4 27562582772 272 1509.4466 1511.1022 [183] + X_POSIX 13 read 0 0 8 1497.1741 1497.2810 [209] + X_POSIX 13 read 1 0 9 1497.2827 1497.2827 [209] + X_POSIX 13 read 2 9 87 1497.2829 1497.2829 [209] + X_POSIX 13 read 3 96 512 1497.2863 1497.2863 [209] + X_POSIX 13 read 4 2064 632 1497.2878 1497.2878 [209] + X_POSIX 13 read 5 136 544 1497.2888 1497.2888 [209] + X_POSIX 13 read 6 680 512 1497.2893 1497.2893 [209] + X_POSIX 13 read 7 1504 328 1497.3097 1497.3098 [209] + X_POSIX 13 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 13 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 13 read 10 9 87 1497.9742 1498.0196 [209] + X_POSIX 13 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 13 read 12 2064 632 1498.0197 1498.0198 [209] + X_POSIX 13 read 13 136 544 1498.0198 1498.0198 [209] + X_POSIX 13 read 14 680 512 1498.0198 1498.0199 [209] + X_POSIX 13 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 13 read 16 0 8 1498.7551 1498.8333 [209] + X_POSIX 13 read 17 0 9 1498.8349 1498.8349 [209] + X_POSIX 13 read 18 9 87 1498.8350 1498.8351 [209] + X_POSIX 13 read 19 96 512 1498.8384 1498.8384 [209] + X_POSIX 13 read 20 2064 632 1498.8397 1498.8398 [209] + X_POSIX 13 read 21 136 544 1498.8408 1498.8409 [209] + X_POSIX 13 read 22 680 512 1498.8414 1498.8415 [209] + X_POSIX 13 read 23 1504 328 1498.8625 1498.8626 [209] + X_POSIX 13 read 24 0 8 1500.6273 1500.7397 [209] + X_POSIX 13 read 25 0 9 1500.7416 1500.7417 [209] + X_POSIX 13 read 26 9 87 1500.7418 1500.7419 [209] + X_POSIX 13 read 27 96 512 1500.7452 1500.7452 [209] + X_POSIX 13 read 28 2064 632 1500.7465 1500.7466 [209] + X_POSIX 13 read 29 136 544 1500.7476 1500.7478 [209] + X_POSIX 13 read 30 680 512 1500.7483 1500.7483 [209] + X_POSIX 13 read 31 1504 328 1500.7637 1500.7639 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 14, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 14 read 0 0 342 1.0881 1.0957 [ 33] + X_POSIX 14 read 1 342 0 1.1106 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 14, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 14 write 0 3440 544 722.2558 722.2568 [ 40] + X_POSIX 14 write 1 2013326976 440 723.0747 723.2773 [247] + X_POSIX 14 write 2 3372325388 440 723.9739 724.1252 [155] + X_POSIX 14 write 3 8657595392 440 725.8092 726.0686 [ 14] + X_POSIX 14 write 4 27606095148 440 737.5388 739.5581 [100] + X_POSIX 14 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 14 read 1 0 9 722.4262 722.5392 [ 40] + X_POSIX 14 read 2 9 87 722.5393 722.5394 [ 40] + X_POSIX 14 read 3 96 512 722.5428 722.5429 [ 40] + X_POSIX 14 read 4 2064 632 722.5443 722.5444 [ 40] + X_POSIX 14 read 5 136 544 722.5453 722.5454 [ 40] + X_POSIX 14 read 6 680 512 722.5459 722.5459 [ 40] + X_POSIX 14 read 7 1504 328 722.5745 722.5747 [ 40] + X_POSIX 14 read 8 0 8 723.3816 723.3818 [ 40] + X_POSIX 14 read 9 0 9 723.3839 723.3840 [ 40] + X_POSIX 14 read 10 9 87 723.3842 723.3844 [ 40] + X_POSIX 14 read 11 96 512 723.3868 723.4374 [ 40] + X_POSIX 14 read 12 2064 632 723.4388 723.4389 [ 40] + X_POSIX 14 read 13 136 544 723.4401 723.4401 [ 40] + X_POSIX 14 read 14 680 512 723.4406 723.4406 [ 40] + X_POSIX 14 read 15 1504 328 723.4698 723.4699 [ 40] + X_POSIX 14 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 14 read 17 0 9 724.2927 724.2929 [ 40] + X_POSIX 14 read 18 9 87 724.2929 724.3861 [ 40] + X_POSIX 14 read 19 96 512 724.3862 724.3863 [ 40] + X_POSIX 14 read 20 2064 632 724.3863 724.3864 [ 40] + X_POSIX 14 read 21 136 544 724.3865 724.3866 [ 40] + X_POSIX 14 read 22 680 512 724.3866 724.3866 [ 40] + X_POSIX 14 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 14 read 24 0 8 726.4900 726.6465 [ 40] + X_POSIX 14 read 25 0 9 726.6485 726.6486 [ 40] + X_POSIX 14 read 26 9 87 726.6488 726.6489 [ 40] + X_POSIX 14 read 27 96 512 726.6524 726.6525 [ 40] + X_POSIX 14 read 28 2064 632 726.6539 726.6539 [ 40] + X_POSIX 14 read 29 136 544 726.6550 726.6550 [ 40] + X_POSIX 14 read 30 680 512 726.6556 726.6557 [ 40] + X_POSIX 14 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 14, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 14 write 0 3440 544 1497.0769 1497.0852 [209] + X_POSIX 14 write 1 2013326976 440 1497.6602 1497.7962 [ 85] + X_POSIX 14 write 2 3372325388 440 1498.5442 1498.6042 [ 35] + X_POSIX 14 write 3 8657596868 440 1500.0777 1500.3062 [193] + X_POSIX 14 write 4 27562853756 440 1509.4466 1511.1032 [183] + X_POSIX 14 read 0 0 8 1497.1740 1497.2810 [209] + X_POSIX 14 read 1 0 9 1497.2826 1497.2827 [209] + X_POSIX 14 read 2 9 87 1497.2828 1497.2829 [209] + X_POSIX 14 read 3 96 512 1497.2862 1497.2863 [209] + X_POSIX 14 read 4 2064 632 1497.2878 1497.2878 [209] + X_POSIX 14 read 5 136 544 1497.2887 1497.2888 [209] + X_POSIX 14 read 6 680 512 1497.2893 1497.2893 [209] + X_POSIX 14 read 7 1504 328 1497.3095 1497.3096 [209] + X_POSIX 14 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 14 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 14 read 10 9 87 1497.9742 1498.0194 [209] + X_POSIX 14 read 11 96 512 1498.0195 1498.0196 [209] + X_POSIX 14 read 12 2064 632 1498.0196 1498.0196 [209] + X_POSIX 14 read 13 136 544 1498.0197 1498.0197 [209] + X_POSIX 14 read 14 680 512 1498.0197 1498.0197 [209] + X_POSIX 14 read 15 1504 328 1498.0357 1498.0359 [209] + X_POSIX 14 read 16 0 8 1498.7554 1498.8340 [209] + X_POSIX 14 read 17 0 9 1498.8358 1498.8360 [209] + X_POSIX 14 read 18 9 87 1498.8362 1498.8362 [209] + X_POSIX 14 read 19 96 512 1498.8396 1498.8397 [209] + X_POSIX 14 read 20 2064 632 1498.8410 1498.8410 [209] + X_POSIX 14 read 21 136 544 1498.8420 1498.8421 [209] + X_POSIX 14 read 22 680 512 1498.8426 1498.8426 [209] + X_POSIX 14 read 23 1504 328 1498.8628 1498.8628 [209] + X_POSIX 14 read 24 0 8 1500.6274 1500.7397 [209] + X_POSIX 14 read 25 0 9 1500.7415 1500.7415 [209] + X_POSIX 14 read 26 9 87 1500.7417 1500.7417 [209] + X_POSIX 14 read 27 96 512 1500.7451 1500.7451 [209] + X_POSIX 14 read 28 2064 632 1500.7465 1500.7465 [209] + X_POSIX 14 read 29 136 544 1500.7475 1500.7477 [209] + X_POSIX 14 read 30 680 512 1500.7482 1500.7482 [209] + X_POSIX 14 read 31 1504 328 1500.7637 1500.7638 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 15, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 15 read 0 0 342 1.0880 1.0952 [ 33] + X_POSIX 15 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 15, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 15 write 0 3984 120 722.2558 722.2565 [ 40] + X_POSIX 15 write 1 2013327416 88 723.0747 723.2737 [247] + X_POSIX 15 write 2 3372325828 88 723.9739 724.1253 [155] + X_POSIX 15 write 3 8657595832 88 725.8091 726.0685 [ 14] + X_POSIX 15 write 4 27606095588 88 737.5389 739.5582 [100] + X_POSIX 15 read 0 0 8 722.4241 722.4243 [ 40] + X_POSIX 15 read 1 0 9 722.4261 722.5389 [ 40] + X_POSIX 15 read 2 9 87 722.5389 722.5390 [ 40] + X_POSIX 15 read 3 96 512 722.5423 722.5424 [ 40] + X_POSIX 15 read 4 2064 632 722.5439 722.5439 [ 40] + X_POSIX 15 read 5 136 544 722.5449 722.5450 [ 40] + X_POSIX 15 read 6 680 512 722.5455 722.5456 [ 40] + X_POSIX 15 read 7 1504 328 722.5744 722.5746 [ 40] + X_POSIX 15 read 8 0 8 723.3785 723.3785 [ 40] + X_POSIX 15 read 9 0 9 723.3804 723.3805 [ 40] + X_POSIX 15 read 10 9 87 723.3806 723.3807 [ 40] + X_POSIX 15 read 11 96 512 723.3840 723.3842 [ 40] + X_POSIX 15 read 12 2064 632 723.3856 723.4367 [ 40] + X_POSIX 15 read 13 136 544 723.4371 723.4372 [ 40] + X_POSIX 15 read 14 680 512 723.4377 723.4377 [ 40] + X_POSIX 15 read 15 1504 328 723.4699 723.4699 [ 40] + X_POSIX 15 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 15 read 17 0 9 724.2928 724.3863 [ 40] + X_POSIX 15 read 18 9 87 724.3863 724.3865 [ 40] + X_POSIX 15 read 19 96 512 724.3865 724.3866 [ 40] + X_POSIX 15 read 20 2064 632 724.3866 724.3867 [ 40] + X_POSIX 15 read 21 136 544 724.3867 724.3867 [ 40] + X_POSIX 15 read 22 680 512 724.3867 724.3868 [ 40] + X_POSIX 15 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 15 read 24 0 8 726.4898 726.6461 [ 40] + X_POSIX 15 read 25 0 9 726.6473 726.6474 [ 40] + X_POSIX 15 read 26 9 87 726.6476 726.6476 [ 40] + X_POSIX 15 read 27 96 512 726.6509 726.6510 [ 40] + X_POSIX 15 read 28 2064 632 726.6525 726.6527 [ 40] + X_POSIX 15 read 29 136 544 726.6537 726.6537 [ 40] + X_POSIX 15 read 30 680 512 726.6542 726.6543 [ 40] + X_POSIX 15 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 15, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 15 write 0 3984 120 1497.0768 1497.0848 [209] + X_POSIX 15 write 1 2013327416 88 1497.6602 1497.7964 [ 85] + X_POSIX 15 write 2 3372325828 88 1498.5443 1498.6043 [ 35] + X_POSIX 15 write 3 8657597308 88 1500.0777 1500.3064 [193] + X_POSIX 15 write 4 27562854196 88 1509.4466 1511.1032 [183] + X_POSIX 15 read 0 0 8 1497.1740 1497.2813 [209] + X_POSIX 15 read 1 0 9 1497.2830 1497.2830 [209] + X_POSIX 15 read 2 9 87 1497.2832 1497.2833 [209] + X_POSIX 15 read 3 96 512 1497.2866 1497.2868 [209] + X_POSIX 15 read 4 2064 632 1497.2884 1497.2884 [209] + X_POSIX 15 read 5 136 544 1497.2894 1497.2896 [209] + X_POSIX 15 read 6 680 512 1497.2901 1497.2902 [209] + X_POSIX 15 read 7 1504 328 1497.3098 1497.3098 [209] + X_POSIX 15 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 15 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 15 read 10 9 87 1497.9742 1498.0191 [209] + X_POSIX 15 read 11 96 512 1498.0191 1498.0192 [209] + X_POSIX 15 read 12 2064 632 1498.0192 1498.0193 [209] + X_POSIX 15 read 13 136 544 1498.0193 1498.0193 [209] + X_POSIX 15 read 14 680 512 1498.0193 1498.0194 [209] + X_POSIX 15 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 15 read 16 0 8 1498.7555 1498.8341 [209] + X_POSIX 15 read 17 0 9 1498.8359 1498.8361 [209] + X_POSIX 15 read 18 9 87 1498.8362 1498.8363 [209] + X_POSIX 15 read 19 96 512 1498.8395 1498.8395 [209] + X_POSIX 15 read 20 2064 632 1498.8409 1498.8410 [209] + X_POSIX 15 read 21 136 544 1498.8420 1498.8421 [209] + X_POSIX 15 read 22 680 512 1498.8426 1498.8426 [209] + X_POSIX 15 read 23 1504 328 1498.8627 1498.8628 [209] + X_POSIX 15 read 24 0 8 1500.6274 1500.7393 [209] + X_POSIX 15 read 25 0 9 1500.7403 1500.7404 [209] + X_POSIX 15 read 26 9 87 1500.7406 1500.7406 [209] + X_POSIX 15 read 27 96 512 1500.7440 1500.7440 [209] + X_POSIX 15 read 28 2064 632 1500.7453 1500.7454 [209] + X_POSIX 15 read 29 136 544 1500.7464 1500.7464 [209] + X_POSIX 15 read 30 680 512 1500.7469 1500.7469 [209] + X_POSIX 15 read 31 1504 328 1500.7638 1500.7638 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 16, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 16 read 0 0 342 1.0880 1.0953 [ 33] + X_POSIX 16 read 1 342 0 1.1104 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 16, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 16 write 0 4104 328 722.2582 722.2583 [ 40] + X_POSIX 16 write 1 2013327504 272 723.0747 723.2736 [247] + X_POSIX 16 write 2 3372325916 272 723.9739 724.1251 [155] + X_POSIX 16 write 3 8657595920 272 725.8092 726.0687 [ 14] + X_POSIX 16 write 4 27606095676 272 737.5389 739.5583 [100] + X_POSIX 16 read 0 0 8 722.4241 722.4242 [ 40] + X_POSIX 16 read 1 0 9 722.4260 722.5391 [ 40] + X_POSIX 16 read 2 9 87 722.5393 722.5393 [ 40] + X_POSIX 16 read 3 96 512 722.5428 722.5428 [ 40] + X_POSIX 16 read 4 2064 632 722.5443 722.5443 [ 40] + X_POSIX 16 read 5 136 544 722.5453 722.5454 [ 40] + X_POSIX 16 read 6 680 512 722.5458 722.5459 [ 40] + X_POSIX 16 read 7 1504 328 722.5741 722.5741 [ 40] + X_POSIX 16 read 8 0 8 723.3783 723.3784 [ 40] + X_POSIX 16 read 9 0 9 723.3803 723.3803 [ 40] + X_POSIX 16 read 10 9 87 723.3805 723.3805 [ 40] + X_POSIX 16 read 11 96 512 723.3838 723.3840 [ 40] + X_POSIX 16 read 12 2064 632 723.3854 723.4375 [ 40] + X_POSIX 16 read 13 136 544 723.4386 723.4387 [ 40] + X_POSIX 16 read 14 680 512 723.4392 723.4393 [ 40] + X_POSIX 16 read 15 1504 328 723.4701 723.4703 [ 40] + X_POSIX 16 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 16 read 17 0 9 724.2927 724.2928 [ 40] + X_POSIX 16 read 18 9 87 724.2928 724.3858 [ 40] + X_POSIX 16 read 19 96 512 724.3858 724.3858 [ 40] + X_POSIX 16 read 20 2064 632 724.3858 724.3859 [ 40] + X_POSIX 16 read 21 136 544 724.3859 724.3860 [ 40] + X_POSIX 16 read 22 680 512 724.3860 724.3861 [ 40] + X_POSIX 16 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 16 read 24 0 8 726.4900 726.6466 [ 40] + X_POSIX 16 read 25 0 9 726.6486 726.6487 [ 40] + X_POSIX 16 read 26 9 87 726.6489 726.6491 [ 40] + X_POSIX 16 read 27 96 512 726.6525 726.6527 [ 40] + X_POSIX 16 read 28 2064 632 726.6541 726.6541 [ 40] + X_POSIX 16 read 29 136 544 726.6551 726.6552 [ 40] + X_POSIX 16 read 30 680 512 726.6558 726.6558 [ 40] + X_POSIX 16 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 16, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 16 write 0 4104 328 1497.0769 1497.0850 [209] + X_POSIX 16 write 1 2013327504 272 1497.6602 1497.7963 [ 85] + X_POSIX 16 write 2 3372325916 272 1498.5443 1498.6044 [ 35] + X_POSIX 16 write 3 8657597396 272 1500.0777 1500.3064 [193] + X_POSIX 16 write 4 27562854284 272 1509.4466 1511.1032 [183] + X_POSIX 16 read 0 0 8 1497.1740 1497.2808 [209] + X_POSIX 16 read 1 0 9 1497.2824 1497.2825 [209] + X_POSIX 16 read 2 9 87 1497.2826 1497.2827 [209] + X_POSIX 16 read 3 96 512 1497.2861 1497.2861 [209] + X_POSIX 16 read 4 2064 632 1497.2875 1497.2875 [209] + X_POSIX 16 read 5 136 544 1497.2886 1497.2886 [209] + X_POSIX 16 read 6 680 512 1497.2891 1497.2891 [209] + X_POSIX 16 read 7 1504 328 1497.3099 1497.3100 [209] + X_POSIX 16 read 8 0 8 1497.9736 1497.9740 [209] + X_POSIX 16 read 9 0 9 1497.9740 1497.9743 [209] + X_POSIX 16 read 10 9 87 1497.9743 1498.0196 [209] + X_POSIX 16 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 16 read 12 2064 632 1498.0197 1498.0197 [209] + X_POSIX 16 read 13 136 544 1498.0197 1498.0198 [209] + X_POSIX 16 read 14 680 512 1498.0198 1498.0198 [209] + X_POSIX 16 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 16 read 16 0 8 1498.7554 1498.8336 [209] + X_POSIX 16 read 17 0 9 1498.8353 1498.8354 [209] + X_POSIX 16 read 18 9 87 1498.8355 1498.8356 [209] + X_POSIX 16 read 19 96 512 1498.8389 1498.8389 [209] + X_POSIX 16 read 20 2064 632 1498.8402 1498.8403 [209] + X_POSIX 16 read 21 136 544 1498.8413 1498.8414 [209] + X_POSIX 16 read 22 680 512 1498.8418 1498.8419 [209] + X_POSIX 16 read 23 1504 328 1498.8626 1498.8626 [209] + X_POSIX 16 read 24 0 8 1500.6276 1500.7394 [209] + X_POSIX 16 read 25 0 9 1500.7410 1500.7410 [209] + X_POSIX 16 read 26 9 87 1500.7412 1500.7412 [209] + X_POSIX 16 read 27 96 512 1500.7446 1500.7446 [209] + X_POSIX 16 read 28 2064 632 1500.7459 1500.7460 [209] + X_POSIX 16 read 29 136 544 1500.7470 1500.7470 [209] + X_POSIX 16 read 30 680 512 1500.7475 1500.7477 [209] + X_POSIX 16 read 31 1504 328 1500.7638 1500.7640 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 17, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 17 read 0 0 342 1.0881 1.0958 [ 33] + X_POSIX 17 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 17, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 17 write 0 4432 320 722.2558 722.2566 [ 40] + X_POSIX 17 write 1 2013327776 272 723.0747 723.2736 [247] + X_POSIX 17 write 2 3372326188 272 723.9739 724.1252 [155] + X_POSIX 17 write 3 8657596192 272 725.8092 726.0718 [ 14] + X_POSIX 17 write 4 27606095948 272 737.5390 739.5583 [100] + X_POSIX 17 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 17 read 1 0 9 722.4262 722.5396 [ 40] + X_POSIX 17 read 2 9 87 722.5398 722.5399 [ 40] + X_POSIX 17 read 3 96 512 722.5432 722.5433 [ 40] + X_POSIX 17 read 4 2064 632 722.5447 722.5448 [ 40] + X_POSIX 17 read 5 136 544 722.5458 722.5459 [ 40] + X_POSIX 17 read 6 680 512 722.5464 722.5466 [ 40] + X_POSIX 17 read 7 1504 328 722.5742 722.5743 [ 40] + X_POSIX 17 read 8 0 8 723.3817 723.3819 [ 40] + X_POSIX 17 read 9 0 9 723.3839 723.3841 [ 40] + X_POSIX 17 read 10 9 87 723.3843 723.3844 [ 40] + X_POSIX 17 read 11 96 512 723.3868 723.4373 [ 40] + X_POSIX 17 read 12 2064 632 723.4386 723.4388 [ 40] + X_POSIX 17 read 13 136 544 723.4399 723.4399 [ 40] + X_POSIX 17 read 14 680 512 723.4404 723.4405 [ 40] + X_POSIX 17 read 15 1504 328 723.4699 723.4700 [ 40] + X_POSIX 17 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 17 read 17 0 9 724.2927 724.2929 [ 40] + X_POSIX 17 read 18 9 87 724.2929 724.3867 [ 40] + X_POSIX 17 read 19 96 512 724.3867 724.3868 [ 40] + X_POSIX 17 read 20 2064 632 724.3868 724.3868 [ 40] + X_POSIX 17 read 21 136 544 724.3868 724.3869 [ 40] + X_POSIX 17 read 22 680 512 724.3869 724.3869 [ 40] + X_POSIX 17 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 17 read 24 0 8 726.4900 726.6467 [ 40] + X_POSIX 17 read 25 0 9 726.6487 726.6489 [ 40] + X_POSIX 17 read 26 9 87 726.6490 726.6492 [ 40] + X_POSIX 17 read 27 96 512 726.6527 726.6529 [ 40] + X_POSIX 17 read 28 2064 632 726.6543 726.6543 [ 40] + X_POSIX 17 read 29 136 544 726.6554 726.6554 [ 40] + X_POSIX 17 read 30 680 512 726.6559 726.6560 [ 40] + X_POSIX 17 read 31 1504 328 726.6740 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 17, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 17 write 0 4432 320 1497.0768 1497.0768 [209] + X_POSIX 17 write 1 2013327776 272 1497.6602 1497.7965 [ 85] + X_POSIX 17 write 2 3372326188 272 1498.5442 1498.6044 [ 35] + X_POSIX 17 write 3 8657597668 272 1500.0777 1500.3063 [193] + X_POSIX 17 write 4 27562854556 272 1509.4467 1511.1033 [183] + X_POSIX 17 read 0 0 8 1497.1742 1497.2812 [209] + X_POSIX 17 read 1 0 9 1497.2828 1497.2829 [209] + X_POSIX 17 read 2 9 87 1497.2830 1497.2831 [209] + X_POSIX 17 read 3 96 512 1497.2864 1497.2864 [209] + X_POSIX 17 read 4 2064 632 1497.2878 1497.2878 [209] + X_POSIX 17 read 5 136 544 1497.2890 1497.2890 [209] + X_POSIX 17 read 6 680 512 1497.2895 1497.2897 [209] + X_POSIX 17 read 7 1504 328 1497.3096 1497.3096 [209] + X_POSIX 17 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 17 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 17 read 10 9 87 1497.9742 1498.0196 [209] + X_POSIX 17 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 17 read 12 2064 632 1498.0197 1498.0197 [209] + X_POSIX 17 read 13 136 544 1498.0197 1498.0198 [209] + X_POSIX 17 read 14 680 512 1498.0198 1498.0198 [209] + X_POSIX 17 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 17 read 16 0 8 1498.7555 1498.8339 [209] + X_POSIX 17 read 17 0 9 1498.8357 1498.8358 [209] + X_POSIX 17 read 18 9 87 1498.8360 1498.8361 [209] + X_POSIX 17 read 19 96 512 1498.8393 1498.8394 [209] + X_POSIX 17 read 20 2064 632 1498.8407 1498.8408 [209] + X_POSIX 17 read 21 136 544 1498.8417 1498.8418 [209] + X_POSIX 17 read 22 680 512 1498.8423 1498.8423 [209] + X_POSIX 17 read 23 1504 328 1498.8629 1498.8630 [209] + X_POSIX 17 read 24 0 8 1500.6273 1500.7394 [209] + X_POSIX 17 read 25 0 9 1500.7410 1500.7410 [209] + X_POSIX 17 read 26 9 87 1500.7412 1500.7412 [209] + X_POSIX 17 read 27 96 512 1500.7445 1500.7446 [209] + X_POSIX 17 read 28 2064 632 1500.7459 1500.7460 [209] + X_POSIX 17 read 29 136 544 1500.7469 1500.7469 [209] + X_POSIX 17 read 30 680 512 1500.7474 1500.7476 [209] + X_POSIX 17 read 31 1504 328 1500.7638 1500.7640 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 18, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 18 read 0 0 342 1.0880 1.0957 [ 33] + X_POSIX 18 read 1 342 0 1.1105 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 18, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 18 write 0 4752 608 722.2581 722.2581 [ 40] + X_POSIX 18 write 1 2013328048 176 723.0746 723.2734 [247] + X_POSIX 18 write 2 3372326460 176 723.9739 724.1251 [155] + X_POSIX 18 write 3 8657596464 176 725.8092 726.0718 [ 14] + X_POSIX 18 write 4 27606096220 176 737.5390 739.5583 [100] + X_POSIX 18 read 0 0 8 722.4240 722.4242 [ 40] + X_POSIX 18 read 1 0 9 722.4259 722.5389 [ 40] + X_POSIX 18 read 2 9 87 722.5389 722.5389 [ 40] + X_POSIX 18 read 3 96 512 722.5420 722.5421 [ 40] + X_POSIX 18 read 4 2064 632 722.5435 722.5435 [ 40] + X_POSIX 18 read 5 136 544 722.5446 722.5446 [ 40] + X_POSIX 18 read 6 680 512 722.5451 722.5452 [ 40] + X_POSIX 18 read 7 1504 328 722.5740 722.5740 [ 40] + X_POSIX 18 read 8 0 8 723.3812 723.3814 [ 40] + X_POSIX 18 read 9 0 9 723.3833 723.3833 [ 40] + X_POSIX 18 read 10 9 87 723.3835 723.3835 [ 40] + X_POSIX 18 read 11 96 512 723.3864 723.4370 [ 40] + X_POSIX 18 read 12 2064 632 723.4384 723.4385 [ 40] + X_POSIX 18 read 13 136 544 723.4396 723.4396 [ 40] + X_POSIX 18 read 14 680 512 723.4401 723.4402 [ 40] + X_POSIX 18 read 15 1504 328 723.4700 723.4702 [ 40] + X_POSIX 18 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 18 read 17 0 9 724.2927 724.3858 [ 40] + X_POSIX 18 read 18 9 87 724.3858 724.3859 [ 40] + X_POSIX 18 read 19 96 512 724.3859 724.3860 [ 40] + X_POSIX 18 read 20 2064 632 724.3860 724.3861 [ 40] + X_POSIX 18 read 21 136 544 724.3861 724.3863 [ 40] + X_POSIX 18 read 22 680 512 724.3863 724.3864 [ 40] + X_POSIX 18 read 23 1504 328 724.3948 724.3950 [ 40] + X_POSIX 18 read 24 0 8 726.4892 726.6459 [ 40] + X_POSIX 18 read 25 0 9 726.6462 726.6462 [ 40] + X_POSIX 18 read 26 9 87 726.6463 726.6463 [ 40] + X_POSIX 18 read 27 96 512 726.6497 726.6498 [ 40] + X_POSIX 18 read 28 2064 632 726.6512 726.6513 [ 40] + X_POSIX 18 read 29 136 544 726.6524 726.6526 [ 40] + X_POSIX 18 read 30 680 512 726.6531 726.6532 [ 40] + X_POSIX 18 read 31 1504 328 726.6742 726.6744 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 18, hostname: nid00535 +# DXT, write_count: 5, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 18 write 0 4752 608 1497.0769 1497.0848 [209] + X_POSIX 18 write 1 2013328048 176 1497.6601 1497.7964 [ 85] + X_POSIX 18 write 2 3372326460 176 1498.5442 1498.6044 [ 35] + X_POSIX 18 write 3 8657597940 176 1500.0777 1500.3064 [193] + X_POSIX 18 write 4 27562854828 176 1509.4466 1511.1033 [183] + X_POSIX 18 read 0 0 8 1497.1740 1497.2809 [209] + X_POSIX 18 read 1 0 9 1497.2825 1497.2826 [209] + X_POSIX 18 read 2 9 87 1497.2828 1497.2828 [209] + X_POSIX 18 read 3 96 512 1497.2862 1497.2862 [209] + X_POSIX 18 read 4 2064 632 1497.2877 1497.2877 [209] + X_POSIX 18 read 5 136 544 1497.2887 1497.2887 [209] + X_POSIX 18 read 6 680 512 1497.2892 1497.2892 [209] + X_POSIX 18 read 7 1504 328 1497.3100 1497.3100 [209] + X_POSIX 18 read 8 0 8 1497.9735 1497.9738 [209] + X_POSIX 18 read 9 0 9 1497.9738 1497.9741 [209] + X_POSIX 18 read 10 9 87 1497.9741 1498.0196 [209] + X_POSIX 18 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 18 read 12 2064 632 1498.0197 1498.0197 [209] + X_POSIX 18 read 13 136 544 1498.0198 1498.0198 [209] + X_POSIX 18 read 14 680 512 1498.0198 1498.0198 [209] + X_POSIX 18 read 15 1504 328 1498.0357 1498.0359 [209] + X_POSIX 18 read 16 0 8 1498.7554 1498.8337 [209] + X_POSIX 18 read 17 0 9 1498.8355 1498.8355 [209] + X_POSIX 18 read 18 9 87 1498.8357 1498.8359 [209] + X_POSIX 18 read 19 96 512 1498.8392 1498.8392 [209] + X_POSIX 18 read 20 2064 632 1498.8405 1498.8406 [209] + X_POSIX 18 read 21 136 544 1498.8417 1498.8417 [209] + X_POSIX 18 read 22 680 512 1498.8422 1498.8423 [209] + X_POSIX 18 read 23 1504 328 1498.8628 1498.8630 [209] + X_POSIX 18 read 24 0 8 1500.6274 1500.7392 [209] + X_POSIX 18 read 25 0 9 1500.7405 1500.7405 [209] + X_POSIX 18 read 26 9 87 1500.7407 1500.7407 [209] + X_POSIX 18 read 27 96 512 1500.7441 1500.7441 [209] + X_POSIX 18 read 28 2064 632 1500.7454 1500.7455 [209] + X_POSIX 18 read 29 136 544 1500.7465 1500.7466 [209] + X_POSIX 18 read 30 680 512 1500.7470 1500.7472 [209] + X_POSIX 18 read 31 1504 328 1500.7637 1500.7638 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 19, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 19 read 0 0 342 1.0881 1.0956 [ 33] + X_POSIX 19 read 1 342 0 1.1106 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 19, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 19 write 0 5360 272 722.2582 722.2583 [ 40] + X_POSIX 19 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 19 read 1 0 9 722.4262 722.5392 [ 40] + X_POSIX 19 read 2 9 87 722.5394 722.5395 [ 40] + X_POSIX 19 read 3 96 512 722.5429 722.5430 [ 40] + X_POSIX 19 read 4 2064 632 722.5444 722.5445 [ 40] + X_POSIX 19 read 5 136 544 722.5455 722.5455 [ 40] + X_POSIX 19 read 6 680 512 722.5460 722.5460 [ 40] + X_POSIX 19 read 7 1504 328 722.5742 722.5743 [ 40] + X_POSIX 19 read 8 0 8 723.3783 723.3784 [ 40] + X_POSIX 19 read 9 0 9 723.3804 723.3804 [ 40] + X_POSIX 19 read 10 9 87 723.3806 723.3807 [ 40] + X_POSIX 19 read 11 96 512 723.3841 723.3843 [ 40] + X_POSIX 19 read 12 2064 632 723.3857 723.4369 [ 40] + X_POSIX 19 read 13 136 544 723.4379 723.4380 [ 40] + X_POSIX 19 read 14 680 512 723.4385 723.4386 [ 40] + X_POSIX 19 read 15 1504 328 723.4702 723.4703 [ 40] + X_POSIX 19 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 19 read 17 0 9 724.2928 724.3861 [ 40] + X_POSIX 19 read 18 9 87 724.3861 724.3862 [ 40] + X_POSIX 19 read 19 96 512 724.3862 724.3863 [ 40] + X_POSIX 19 read 20 2064 632 724.3863 724.3865 [ 40] + X_POSIX 19 read 21 136 544 724.3865 724.3866 [ 40] + X_POSIX 19 read 22 680 512 724.3866 724.3867 [ 40] + X_POSIX 19 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 19 read 24 0 8 726.4900 726.6466 [ 40] + X_POSIX 19 read 25 0 9 726.6488 726.6490 [ 40] + X_POSIX 19 read 26 9 87 726.6492 726.6493 [ 40] + X_POSIX 19 read 27 96 512 726.6528 726.6530 [ 40] + X_POSIX 19 read 28 2064 632 726.6543 726.6544 [ 40] + X_POSIX 19 read 29 136 544 726.6554 726.6555 [ 40] + X_POSIX 19 read 30 680 512 726.6560 726.6560 [ 40] + X_POSIX 19 read 31 1504 328 726.6744 726.6746 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 19, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 19 write 0 5360 272 1497.0769 1497.0848 [209] + X_POSIX 19 read 0 0 8 1497.1739 1497.2807 [209] + X_POSIX 19 read 1 0 9 1497.2822 1497.2822 [209] + X_POSIX 19 read 2 9 87 1497.2824 1497.2825 [209] + X_POSIX 19 read 3 96 512 1497.2858 1497.2858 [209] + X_POSIX 19 read 4 2064 632 1497.2872 1497.2872 [209] + X_POSIX 19 read 5 136 544 1497.2883 1497.2883 [209] + X_POSIX 19 read 6 680 512 1497.2888 1497.2889 [209] + X_POSIX 19 read 7 1504 328 1497.3097 1497.3097 [209] + X_POSIX 19 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 19 read 9 0 9 1497.9740 1497.9743 [209] + X_POSIX 19 read 10 9 87 1497.9743 1498.0196 [209] + X_POSIX 19 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 19 read 12 2064 632 1498.0197 1498.0198 [209] + X_POSIX 19 read 13 136 544 1498.0198 1498.0198 [209] + X_POSIX 19 read 14 680 512 1498.0198 1498.0198 [209] + X_POSIX 19 read 15 1504 328 1498.0357 1498.0361 [209] + X_POSIX 19 read 16 0 8 1498.7554 1498.8336 [209] + X_POSIX 19 read 17 0 9 1498.8354 1498.8355 [209] + X_POSIX 19 read 18 9 87 1498.8357 1498.8358 [209] + X_POSIX 19 read 19 96 512 1498.8390 1498.8391 [209] + X_POSIX 19 read 20 2064 632 1498.8404 1498.8404 [209] + X_POSIX 19 read 21 136 544 1498.8414 1498.8415 [209] + X_POSIX 19 read 22 680 512 1498.8419 1498.8420 [209] + X_POSIX 19 read 23 1504 328 1498.8627 1498.8627 [209] + X_POSIX 19 read 24 0 8 1500.6276 1500.7399 [209] + X_POSIX 19 read 25 0 9 1500.7417 1500.7417 [209] + X_POSIX 19 read 26 9 87 1500.7419 1500.7419 [209] + X_POSIX 19 read 27 96 512 1500.7454 1500.7455 [209] + X_POSIX 19 read 28 2064 632 1500.7469 1500.7469 [209] + X_POSIX 19 read 29 136 544 1500.7479 1500.7480 [209] + X_POSIX 19 read 30 680 512 1500.7485 1500.7486 [209] + X_POSIX 19 read 31 1504 328 1500.7639 1500.7641 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 20, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 20 read 0 0 342 1.0880 1.0953 [ 33] + X_POSIX 20 read 1 342 0 1.1103 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 20, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 20 write 0 10752 440 722.2581 722.2582 [ 40] + X_POSIX 20 read 0 0 8 722.4241 722.4242 [ 40] + X_POSIX 20 read 1 0 9 722.4261 722.5387 [ 40] + X_POSIX 20 read 2 9 87 722.5388 722.5388 [ 40] + X_POSIX 20 read 3 96 512 722.5396 722.5396 [ 40] + X_POSIX 20 read 4 2064 632 722.5411 722.5411 [ 40] + X_POSIX 20 read 5 136 544 722.5422 722.5422 [ 40] + X_POSIX 20 read 6 680 512 722.5428 722.5428 [ 40] + X_POSIX 20 read 7 1504 328 722.5743 722.5743 [ 40] + X_POSIX 20 read 8 0 8 723.3785 723.3785 [ 40] + X_POSIX 20 read 9 0 9 723.3804 723.3805 [ 40] + X_POSIX 20 read 10 9 87 723.3806 723.3807 [ 40] + X_POSIX 20 read 11 96 512 723.3840 723.3842 [ 40] + X_POSIX 20 read 12 2064 632 723.3857 723.4369 [ 40] + X_POSIX 20 read 13 136 544 723.4380 723.4381 [ 40] + X_POSIX 20 read 14 680 512 723.4386 723.4388 [ 40] + X_POSIX 20 read 15 1504 328 723.4699 723.4701 [ 40] + X_POSIX 20 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 20 read 17 0 9 724.2927 724.2928 [ 40] + X_POSIX 20 read 18 9 87 724.2928 724.3867 [ 40] + X_POSIX 20 read 19 96 512 724.3867 724.3868 [ 40] + X_POSIX 20 read 20 2064 632 724.3868 724.3868 [ 40] + X_POSIX 20 read 21 136 544 724.3868 724.3869 [ 40] + X_POSIX 20 read 22 680 512 724.3869 724.3869 [ 40] + X_POSIX 20 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 20 read 24 0 8 726.4899 726.6465 [ 40] + X_POSIX 20 read 25 0 9 726.6486 726.6487 [ 40] + X_POSIX 20 read 26 9 87 726.6488 726.6490 [ 40] + X_POSIX 20 read 27 96 512 726.6524 726.6526 [ 40] + X_POSIX 20 read 28 2064 632 726.6540 726.6540 [ 40] + X_POSIX 20 read 29 136 544 726.6551 726.6551 [ 40] + X_POSIX 20 read 30 680 512 726.6557 726.6557 [ 40] + X_POSIX 20 read 31 1504 328 726.6739 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 20, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 20 write 0 10752 440 1497.0768 1497.0769 [209] + X_POSIX 20 read 0 0 8 1497.1740 1497.2810 [209] + X_POSIX 20 read 1 0 9 1497.2826 1497.2827 [209] + X_POSIX 20 read 2 9 87 1497.2829 1497.2829 [209] + X_POSIX 20 read 3 96 512 1497.2862 1497.2863 [209] + X_POSIX 20 read 4 2064 632 1497.2877 1497.2878 [209] + X_POSIX 20 read 5 136 544 1497.2887 1497.2888 [209] + X_POSIX 20 read 6 680 512 1497.2892 1497.2893 [209] + X_POSIX 20 read 7 1504 328 1497.3099 1497.3100 [209] + X_POSIX 20 read 8 0 8 1497.9735 1497.9738 [209] + X_POSIX 20 read 9 0 9 1497.9739 1497.9741 [209] + X_POSIX 20 read 10 9 87 1497.9741 1498.0191 [209] + X_POSIX 20 read 11 96 512 1498.0191 1498.0192 [209] + X_POSIX 20 read 12 2064 632 1498.0192 1498.0193 [209] + X_POSIX 20 read 13 136 544 1498.0193 1498.0194 [209] + X_POSIX 20 read 14 680 512 1498.0194 1498.0194 [209] + X_POSIX 20 read 15 1504 328 1498.0357 1498.0359 [209] + X_POSIX 20 read 16 0 8 1498.7554 1498.8335 [209] + X_POSIX 20 read 17 0 9 1498.8353 1498.8354 [209] + X_POSIX 20 read 18 9 87 1498.8356 1498.8357 [209] + X_POSIX 20 read 19 96 512 1498.8389 1498.8389 [209] + X_POSIX 20 read 20 2064 632 1498.8402 1498.8403 [209] + X_POSIX 20 read 21 136 544 1498.8413 1498.8413 [209] + X_POSIX 20 read 22 680 512 1498.8418 1498.8419 [209] + X_POSIX 20 read 23 1504 328 1498.8629 1498.8630 [209] + X_POSIX 20 read 24 0 8 1500.6273 1500.7397 [209] + X_POSIX 20 read 25 0 9 1500.7414 1500.7415 [209] + X_POSIX 20 read 26 9 87 1500.7417 1500.7417 [209] + X_POSIX 20 read 27 96 512 1500.7451 1500.7451 [209] + X_POSIX 20 read 28 2064 632 1500.7464 1500.7464 [209] + X_POSIX 20 read 29 136 544 1500.7474 1500.7476 [209] + X_POSIX 20 read 30 680 512 1500.7481 1500.7481 [209] + X_POSIX 20 read 31 1504 328 1500.7638 1500.7640 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 21, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 21 read 0 0 342 1.0881 1.0955 [ 33] + X_POSIX 21 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 21, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 21 write 0 11192 88 722.2581 722.2582 [ 40] + X_POSIX 21 read 0 0 8 722.4242 722.4243 [ 40] + X_POSIX 21 read 1 0 9 722.4261 722.5392 [ 40] + X_POSIX 21 read 2 9 87 722.5394 722.5395 [ 40] + X_POSIX 21 read 3 96 512 722.5429 722.5430 [ 40] + X_POSIX 21 read 4 2064 632 722.5444 722.5444 [ 40] + X_POSIX 21 read 5 136 544 722.5455 722.5455 [ 40] + X_POSIX 21 read 6 680 512 722.5460 722.5460 [ 40] + X_POSIX 21 read 7 1504 328 722.5741 722.5741 [ 40] + X_POSIX 21 read 8 0 8 723.3819 723.3821 [ 40] + X_POSIX 21 read 9 0 9 723.3841 723.3843 [ 40] + X_POSIX 21 read 10 9 87 723.3845 723.3847 [ 40] + X_POSIX 21 read 11 96 512 723.3868 723.4374 [ 40] + X_POSIX 21 read 12 2064 632 723.4388 723.4389 [ 40] + X_POSIX 21 read 13 136 544 723.4401 723.4401 [ 40] + X_POSIX 21 read 14 680 512 723.4406 723.4407 [ 40] + X_POSIX 21 read 15 1504 328 723.4699 723.4700 [ 40] + X_POSIX 21 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 21 read 17 0 9 724.2928 724.3859 [ 40] + X_POSIX 21 read 18 9 87 724.3860 724.3860 [ 40] + X_POSIX 21 read 19 96 512 724.3861 724.3861 [ 40] + X_POSIX 21 read 20 2064 632 724.3862 724.3863 [ 40] + X_POSIX 21 read 21 136 544 724.3863 724.3864 [ 40] + X_POSIX 21 read 22 680 512 724.3864 724.3866 [ 40] + X_POSIX 21 read 23 1504 328 724.3948 724.3953 [ 40] + X_POSIX 21 read 24 0 8 726.4900 726.6468 [ 40] + X_POSIX 21 read 25 0 9 726.6489 726.6491 [ 40] + X_POSIX 21 read 26 9 87 726.6494 726.6495 [ 40] + X_POSIX 21 read 27 96 512 726.6529 726.6531 [ 40] + X_POSIX 21 read 28 2064 632 726.6545 726.6545 [ 40] + X_POSIX 21 read 29 136 544 726.6556 726.6556 [ 40] + X_POSIX 21 read 30 680 512 726.6561 726.6562 [ 40] + X_POSIX 21 read 31 1504 328 726.6743 726.6745 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 21, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 21 write 0 11192 88 1497.0769 1497.0770 [209] + X_POSIX 21 read 0 0 8 1497.1741 1497.2809 [209] + X_POSIX 21 read 1 0 9 1497.2825 1497.2826 [209] + X_POSIX 21 read 2 9 87 1497.2828 1497.2829 [209] + X_POSIX 21 read 3 96 512 1497.2862 1497.2863 [209] + X_POSIX 21 read 4 2064 632 1497.2879 1497.2879 [209] + X_POSIX 21 read 5 136 544 1497.2889 1497.2889 [209] + X_POSIX 21 read 6 680 512 1497.2894 1497.2896 [209] + X_POSIX 21 read 7 1504 328 1497.3097 1497.3097 [209] + X_POSIX 21 read 8 0 8 1497.9736 1497.9740 [209] + X_POSIX 21 read 9 0 9 1497.9740 1497.9743 [209] + X_POSIX 21 read 10 9 87 1497.9743 1498.0196 [209] + X_POSIX 21 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 21 read 12 2064 632 1498.0197 1498.0198 [209] + X_POSIX 21 read 13 136 544 1498.0198 1498.0199 [209] + X_POSIX 21 read 14 680 512 1498.0199 1498.0199 [209] + X_POSIX 21 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 21 read 16 0 8 1498.7553 1498.8333 [209] + X_POSIX 21 read 17 0 9 1498.8343 1498.8343 [209] + X_POSIX 21 read 18 9 87 1498.8345 1498.8345 [209] + X_POSIX 21 read 19 96 512 1498.8379 1498.8379 [209] + X_POSIX 21 read 20 2064 632 1498.8392 1498.8393 [209] + X_POSIX 21 read 21 136 544 1498.8403 1498.8403 [209] + X_POSIX 21 read 22 680 512 1498.8408 1498.8408 [209] + X_POSIX 21 read 23 1504 328 1498.8628 1498.8629 [209] + X_POSIX 21 read 24 0 8 1500.6275 1500.7395 [209] + X_POSIX 21 read 25 0 9 1500.7411 1500.7412 [209] + X_POSIX 21 read 26 9 87 1500.7413 1500.7414 [209] + X_POSIX 21 read 27 96 512 1500.7447 1500.7448 [209] + X_POSIX 21 read 28 2064 632 1500.7461 1500.7461 [209] + X_POSIX 21 read 29 136 544 1500.7471 1500.7472 [209] + X_POSIX 21 read 30 680 512 1500.7477 1500.7479 [209] + X_POSIX 21 read 31 1504 328 1500.7638 1500.7640 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 22, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 22 read 0 0 342 1.0881 1.0957 [ 33] + X_POSIX 22 read 1 342 0 1.1104 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 22, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 22 write 0 11280 272 722.2581 722.2583 [ 40] + X_POSIX 22 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 22 read 1 0 9 722.4262 722.5389 [ 40] + X_POSIX 22 read 2 9 87 722.5389 722.5390 [ 40] + X_POSIX 22 read 3 96 512 722.5423 722.5424 [ 40] + X_POSIX 22 read 4 2064 632 722.5438 722.5439 [ 40] + X_POSIX 22 read 5 136 544 722.5449 722.5450 [ 40] + X_POSIX 22 read 6 680 512 722.5455 722.5455 [ 40] + X_POSIX 22 read 7 1504 328 722.5743 722.5744 [ 40] + X_POSIX 22 read 8 0 8 723.3814 723.3816 [ 40] + X_POSIX 22 read 9 0 9 723.3834 723.3835 [ 40] + X_POSIX 22 read 10 9 87 723.3837 723.3838 [ 40] + X_POSIX 22 read 11 96 512 723.3866 723.4371 [ 40] + X_POSIX 22 read 12 2064 632 723.4385 723.4386 [ 40] + X_POSIX 22 read 13 136 544 723.4398 723.4398 [ 40] + X_POSIX 22 read 14 680 512 723.4403 723.4403 [ 40] + X_POSIX 22 read 15 1504 328 723.4699 723.4699 [ 40] + X_POSIX 22 read 16 0 8 724.2924 724.2925 [ 40] + X_POSIX 22 read 17 0 9 724.2925 724.2929 [ 40] + X_POSIX 22 read 18 9 87 724.2929 724.3861 [ 40] + X_POSIX 22 read 19 96 512 724.3861 724.3862 [ 40] + X_POSIX 22 read 20 2064 632 724.3862 724.3863 [ 40] + X_POSIX 22 read 21 136 544 724.3863 724.3864 [ 40] + X_POSIX 22 read 22 680 512 724.3864 724.3865 [ 40] + X_POSIX 22 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 22 read 24 0 8 726.4899 726.6463 [ 40] + X_POSIX 22 read 25 0 9 726.6483 726.6483 [ 40] + X_POSIX 22 read 26 9 87 726.6485 726.6485 [ 40] + X_POSIX 22 read 27 96 512 726.6521 726.6521 [ 40] + X_POSIX 22 read 28 2064 632 726.6535 726.6535 [ 40] + X_POSIX 22 read 29 136 544 726.6545 726.6546 [ 40] + X_POSIX 22 read 30 680 512 726.6551 726.6551 [ 40] + X_POSIX 22 read 31 1504 328 726.6742 726.6744 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 22, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 22 write 0 11280 272 1497.0769 1497.0770 [209] + X_POSIX 22 read 0 0 8 1497.1739 1497.2806 [209] + X_POSIX 22 read 1 0 9 1497.2816 1497.2816 [209] + X_POSIX 22 read 2 9 87 1497.2818 1497.2818 [209] + X_POSIX 22 read 3 96 512 1497.2851 1497.2851 [209] + X_POSIX 22 read 4 2064 632 1497.2864 1497.2865 [209] + X_POSIX 22 read 5 136 544 1497.2876 1497.2876 [209] + X_POSIX 22 read 6 680 512 1497.2881 1497.2881 [209] + X_POSIX 22 read 7 1504 328 1497.3095 1497.3096 [209] + X_POSIX 22 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 22 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 22 read 10 9 87 1497.9742 1498.0193 [209] + X_POSIX 22 read 11 96 512 1498.0193 1498.0194 [209] + X_POSIX 22 read 12 2064 632 1498.0194 1498.0194 [209] + X_POSIX 22 read 13 136 544 1498.0194 1498.0195 [209] + X_POSIX 22 read 14 680 512 1498.0195 1498.0196 [209] + X_POSIX 22 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 22 read 16 0 8 1498.7555 1498.8339 [209] + X_POSIX 22 read 17 0 9 1498.8357 1498.8358 [209] + X_POSIX 22 read 18 9 87 1498.8359 1498.8361 [209] + X_POSIX 22 read 19 96 512 1498.8393 1498.8393 [209] + X_POSIX 22 read 20 2064 632 1498.8407 1498.8407 [209] + X_POSIX 22 read 21 136 544 1498.8418 1498.8418 [209] + X_POSIX 22 read 22 680 512 1498.8423 1498.8423 [209] + X_POSIX 22 read 23 1504 328 1498.8626 1498.8627 [209] + X_POSIX 22 read 24 0 8 1500.6274 1500.7397 [209] + X_POSIX 22 read 25 0 9 1500.7414 1500.7415 [209] + X_POSIX 22 read 26 9 87 1500.7416 1500.7417 [209] + X_POSIX 22 read 27 96 512 1500.7450 1500.7450 [209] + X_POSIX 22 read 28 2064 632 1500.7464 1500.7464 [209] + X_POSIX 22 read 29 136 544 1500.7474 1500.7476 [209] + X_POSIX 22 read 30 680 512 1500.7481 1500.7481 [209] + X_POSIX 22 read 31 1504 328 1500.7640 1500.7641 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 23, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 23 read 0 0 342 1.0880 1.0955 [ 33] + X_POSIX 23 read 1 342 0 1.1105 1.1105 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 23, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 23 write 0 11552 272 722.2581 722.2581 [ 40] + X_POSIX 23 read 0 0 8 722.4241 722.4242 [ 40] + X_POSIX 23 read 1 0 9 722.4260 722.5391 [ 40] + X_POSIX 23 read 2 9 87 722.5392 722.5393 [ 40] + X_POSIX 23 read 3 96 512 722.5427 722.5427 [ 40] + X_POSIX 23 read 4 2064 632 722.5442 722.5442 [ 40] + X_POSIX 23 read 5 136 544 722.5452 722.5452 [ 40] + X_POSIX 23 read 6 680 512 722.5457 722.5457 [ 40] + X_POSIX 23 read 7 1504 328 722.5743 722.5744 [ 40] + X_POSIX 23 read 8 0 8 723.3813 723.3815 [ 40] + X_POSIX 23 read 9 0 9 723.3834 723.3835 [ 40] + X_POSIX 23 read 10 9 87 723.3837 723.3838 [ 40] + X_POSIX 23 read 11 96 512 723.3866 723.4370 [ 40] + X_POSIX 23 read 12 2064 632 723.4384 723.4385 [ 40] + X_POSIX 23 read 13 136 544 723.4395 723.4396 [ 40] + X_POSIX 23 read 14 680 512 723.4401 723.4402 [ 40] + X_POSIX 23 read 15 1504 328 723.4701 723.4703 [ 40] + X_POSIX 23 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 23 read 17 0 9 724.2928 724.3857 [ 40] + X_POSIX 23 read 18 9 87 724.3857 724.3858 [ 40] + X_POSIX 23 read 19 96 512 724.3858 724.3859 [ 40] + X_POSIX 23 read 20 2064 632 724.3859 724.3860 [ 40] + X_POSIX 23 read 21 136 544 724.3860 724.3861 [ 40] + X_POSIX 23 read 22 680 512 724.3861 724.3862 [ 40] + X_POSIX 23 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 23 read 24 0 8 726.4899 726.6467 [ 40] + X_POSIX 23 read 25 0 9 726.6488 726.6490 [ 40] + X_POSIX 23 read 26 9 87 726.6491 726.6493 [ 40] + X_POSIX 23 read 27 96 512 726.6527 726.6529 [ 40] + X_POSIX 23 read 28 2064 632 726.6543 726.6543 [ 40] + X_POSIX 23 read 29 136 544 726.6554 726.6554 [ 40] + X_POSIX 23 read 30 680 512 726.6560 726.6560 [ 40] + X_POSIX 23 read 31 1504 328 726.6744 726.6746 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 23, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 23 write 0 11552 272 1497.0769 1497.0770 [209] + X_POSIX 23 read 0 0 8 1497.1740 1497.2814 [209] + X_POSIX 23 read 1 0 9 1497.2831 1497.2831 [209] + X_POSIX 23 read 2 9 87 1497.2832 1497.2833 [209] + X_POSIX 23 read 3 96 512 1497.2866 1497.2868 [209] + X_POSIX 23 read 4 2064 632 1497.2883 1497.2883 [209] + X_POSIX 23 read 5 136 544 1497.2892 1497.2893 [209] + X_POSIX 23 read 6 680 512 1497.2898 1497.2900 [209] + X_POSIX 23 read 7 1504 328 1497.3098 1497.3099 [209] + X_POSIX 23 read 8 0 8 1497.9735 1497.9738 [209] + X_POSIX 23 read 9 0 9 1497.9738 1497.9741 [209] + X_POSIX 23 read 10 9 87 1497.9741 1498.0190 [209] + X_POSIX 23 read 11 96 512 1498.0190 1498.0191 [209] + X_POSIX 23 read 12 2064 632 1498.0191 1498.0192 [209] + X_POSIX 23 read 13 136 544 1498.0192 1498.0192 [209] + X_POSIX 23 read 14 680 512 1498.0192 1498.0193 [209] + X_POSIX 23 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 23 read 16 0 8 1498.7552 1498.8334 [209] + X_POSIX 23 read 17 0 9 1498.8351 1498.8352 [209] + X_POSIX 23 read 18 9 87 1498.8353 1498.8354 [209] + X_POSIX 23 read 19 96 512 1498.8387 1498.8387 [209] + X_POSIX 23 read 20 2064 632 1498.8401 1498.8401 [209] + X_POSIX 23 read 21 136 544 1498.8411 1498.8411 [209] + X_POSIX 23 read 22 680 512 1498.8416 1498.8417 [209] + X_POSIX 23 read 23 1504 328 1498.8628 1498.8630 [209] + X_POSIX 23 read 24 0 8 1500.6275 1500.7394 [209] + X_POSIX 23 read 25 0 9 1500.7411 1500.7411 [209] + X_POSIX 23 read 26 9 87 1500.7413 1500.7413 [209] + X_POSIX 23 read 27 96 512 1500.7446 1500.7447 [209] + X_POSIX 23 read 28 2064 632 1500.7460 1500.7460 [209] + X_POSIX 23 read 29 136 544 1500.7470 1500.7471 [209] + X_POSIX 23 read 30 680 512 1500.7475 1500.7477 [209] + X_POSIX 23 read 31 1504 328 1500.7642 1500.7643 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 24, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 24 read 0 0 342 1.0879 1.0951 [ 33] + X_POSIX 24 read 1 342 0 1.1104 1.1104 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 24, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 24 write 0 11824 176 722.2581 722.2581 [ 40] + X_POSIX 24 read 0 0 8 722.4241 722.4243 [ 40] + X_POSIX 24 read 1 0 9 722.4261 722.5389 [ 40] + X_POSIX 24 read 2 9 87 722.5389 722.5390 [ 40] + X_POSIX 24 read 3 96 512 722.5424 722.5424 [ 40] + X_POSIX 24 read 4 2064 632 722.5439 722.5439 [ 40] + X_POSIX 24 read 5 136 544 722.5449 722.5450 [ 40] + X_POSIX 24 read 6 680 512 722.5455 722.5455 [ 40] + X_POSIX 24 read 7 1504 328 722.5743 722.5743 [ 40] + X_POSIX 24 read 8 0 8 723.3814 723.3816 [ 40] + X_POSIX 24 read 9 0 9 723.3835 723.3835 [ 40] + X_POSIX 24 read 10 9 87 723.3837 723.3838 [ 40] + X_POSIX 24 read 11 96 512 723.3866 723.4372 [ 40] + X_POSIX 24 read 12 2064 632 723.4386 723.4387 [ 40] + X_POSIX 24 read 13 136 544 723.4399 723.4400 [ 40] + X_POSIX 24 read 14 680 512 723.4405 723.4405 [ 40] + X_POSIX 24 read 15 1504 328 723.4699 723.4701 [ 40] + X_POSIX 24 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 24 read 17 0 9 724.2927 724.2928 [ 40] + X_POSIX 24 read 18 9 87 724.2928 724.3861 [ 40] + X_POSIX 24 read 19 96 512 724.3861 724.3862 [ 40] + X_POSIX 24 read 20 2064 632 724.3862 724.3864 [ 40] + X_POSIX 24 read 21 136 544 724.3864 724.3865 [ 40] + X_POSIX 24 read 22 680 512 724.3865 724.3866 [ 40] + X_POSIX 24 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 24 read 24 0 8 726.4900 726.6467 [ 40] + X_POSIX 24 read 25 0 9 726.6487 726.6489 [ 40] + X_POSIX 24 read 26 9 87 726.6491 726.6493 [ 40] + X_POSIX 24 read 27 96 512 726.6530 726.6532 [ 40] + X_POSIX 24 read 28 2064 632 726.6545 726.6545 [ 40] + X_POSIX 24 read 29 136 544 726.6557 726.6557 [ 40] + X_POSIX 24 read 30 680 512 726.6562 726.6563 [ 40] + X_POSIX 24 read 31 1504 328 726.6739 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 24, hostname: nid00535 +# DXT, write_count: 1, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 24 write 0 11824 176 1497.0769 1497.0770 [209] + X_POSIX 24 read 0 0 8 1497.1741 1497.2813 [209] + X_POSIX 24 read 1 0 9 1497.2830 1497.2830 [209] + X_POSIX 24 read 2 9 87 1497.2832 1497.2832 [209] + X_POSIX 24 read 3 96 512 1497.2866 1497.2867 [209] + X_POSIX 24 read 4 2064 632 1497.2883 1497.2884 [209] + X_POSIX 24 read 5 136 544 1497.2895 1497.2897 [209] + X_POSIX 24 read 6 680 512 1497.2902 1497.2903 [209] + X_POSIX 24 read 7 1504 328 1497.3096 1497.3096 [209] + X_POSIX 24 read 8 0 8 1497.9735 1497.9740 [209] + X_POSIX 24 read 9 0 9 1497.9740 1498.0189 [209] + X_POSIX 24 read 10 9 87 1498.0189 1498.0189 [209] + X_POSIX 24 read 11 96 512 1498.0189 1498.0190 [209] + X_POSIX 24 read 12 2064 632 1498.0190 1498.0191 [209] + X_POSIX 24 read 13 136 544 1498.0191 1498.0192 [209] + X_POSIX 24 read 14 680 512 1498.0192 1498.0192 [209] + X_POSIX 24 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 24 read 16 0 8 1498.7554 1498.8340 [209] + X_POSIX 24 read 17 0 9 1498.8358 1498.8360 [209] + X_POSIX 24 read 18 9 87 1498.8362 1498.8362 [209] + X_POSIX 24 read 19 96 512 1498.8397 1498.8398 [209] + X_POSIX 24 read 20 2064 632 1498.8411 1498.8411 [209] + X_POSIX 24 read 21 136 544 1498.8421 1498.8422 [209] + X_POSIX 24 read 22 680 512 1498.8427 1498.8427 [209] + X_POSIX 24 read 23 1504 328 1498.8627 1498.8629 [209] + X_POSIX 24 read 24 0 8 1500.6275 1500.7399 [209] + X_POSIX 24 read 25 0 9 1500.7416 1500.7417 [209] + X_POSIX 24 read 26 9 87 1500.7418 1500.7419 [209] + X_POSIX 24 read 27 96 512 1500.7452 1500.7453 [209] + X_POSIX 24 read 28 2064 632 1500.7467 1500.7468 [209] + X_POSIX 24 read 29 136 544 1500.7478 1500.7479 [209] + X_POSIX 24 read 30 680 512 1500.7484 1500.7485 [209] + X_POSIX 24 read 31 1504 328 1500.7640 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 25, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 25 read 0 0 342 1.0882 1.0958 [ 33] + X_POSIX 25 read 1 342 0 1.1105 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 25, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 25 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 25 read 1 0 9 722.4264 722.5396 [ 40] + X_POSIX 25 read 2 9 87 722.5399 722.5399 [ 40] + X_POSIX 25 read 3 96 512 722.5433 722.5433 [ 40] + X_POSIX 25 read 4 2064 632 722.5448 722.5448 [ 40] + X_POSIX 25 read 5 136 544 722.5459 722.5459 [ 40] + X_POSIX 25 read 6 680 512 722.5464 722.5466 [ 40] + X_POSIX 25 read 7 1504 328 722.5743 722.5743 [ 40] + X_POSIX 25 read 8 0 8 723.3818 723.3820 [ 40] + X_POSIX 25 read 9 0 9 723.3840 723.3842 [ 40] + X_POSIX 25 read 10 9 87 723.3844 723.3846 [ 40] + X_POSIX 25 read 11 96 512 723.3869 723.4375 [ 40] + X_POSIX 25 read 12 2064 632 723.4389 723.4390 [ 40] + X_POSIX 25 read 13 136 544 723.4402 723.4402 [ 40] + X_POSIX 25 read 14 680 512 723.4407 723.4407 [ 40] + X_POSIX 25 read 15 1504 328 723.4700 723.4702 [ 40] + X_POSIX 25 read 16 0 8 724.2925 724.2928 [ 40] + X_POSIX 25 read 17 0 9 724.2928 724.3859 [ 40] + X_POSIX 25 read 18 9 87 724.3859 724.3860 [ 40] + X_POSIX 25 read 19 96 512 724.3860 724.3861 [ 40] + X_POSIX 25 read 20 2064 632 724.3861 724.3862 [ 40] + X_POSIX 25 read 21 136 544 724.3862 724.3863 [ 40] + X_POSIX 25 read 22 680 512 724.3863 724.3864 [ 40] + X_POSIX 25 read 23 1504 328 724.3949 724.3953 [ 40] + X_POSIX 25 read 24 0 8 726.4900 726.6462 [ 40] + X_POSIX 25 read 25 0 9 726.6480 726.6480 [ 40] + X_POSIX 25 read 26 9 87 726.6482 726.6482 [ 40] + X_POSIX 25 read 27 96 512 726.6515 726.6515 [ 40] + X_POSIX 25 read 28 2064 632 726.6530 726.6532 [ 40] + X_POSIX 25 read 29 136 544 726.6542 726.6542 [ 40] + X_POSIX 25 read 30 680 512 726.6547 726.6548 [ 40] + X_POSIX 25 read 31 1504 328 726.6741 726.6743 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 25, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 25 read 0 0 8 1497.1742 1497.2812 [209] + X_POSIX 25 read 1 0 9 1497.2832 1497.2833 [209] + X_POSIX 25 read 2 9 87 1497.2834 1497.2835 [209] + X_POSIX 25 read 3 96 512 1497.2868 1497.2870 [209] + X_POSIX 25 read 4 2064 632 1497.2884 1497.2885 [209] + X_POSIX 25 read 5 136 544 1497.2894 1497.2896 [209] + X_POSIX 25 read 6 680 512 1497.2901 1497.2903 [209] + X_POSIX 25 read 7 1504 328 1497.3101 1497.3101 [209] + X_POSIX 25 read 8 0 8 1497.9736 1497.9740 [209] + X_POSIX 25 read 9 0 9 1497.9740 1497.9743 [209] + X_POSIX 25 read 10 9 87 1497.9743 1498.0196 [209] + X_POSIX 25 read 11 96 512 1498.0196 1498.0197 [209] + X_POSIX 25 read 12 2064 632 1498.0197 1498.0198 [209] + X_POSIX 25 read 13 136 544 1498.0198 1498.0198 [209] + X_POSIX 25 read 14 680 512 1498.0198 1498.0199 [209] + X_POSIX 25 read 15 1504 328 1498.0358 1498.0361 [209] + X_POSIX 25 read 16 0 8 1498.7553 1498.8334 [209] + X_POSIX 25 read 17 0 9 1498.8348 1498.8349 [209] + X_POSIX 25 read 18 9 87 1498.8351 1498.8351 [209] + X_POSIX 25 read 19 96 512 1498.8384 1498.8385 [209] + X_POSIX 25 read 20 2064 632 1498.8398 1498.8399 [209] + X_POSIX 25 read 21 136 544 1498.8409 1498.8410 [209] + X_POSIX 25 read 22 680 512 1498.8415 1498.8415 [209] + X_POSIX 25 read 23 1504 328 1498.8629 1498.8629 [209] + X_POSIX 25 read 24 0 8 1500.6275 1500.7397 [209] + X_POSIX 25 read 25 0 9 1500.7414 1500.7414 [209] + X_POSIX 25 read 26 9 87 1500.7416 1500.7416 [209] + X_POSIX 25 read 27 96 512 1500.7449 1500.7450 [209] + X_POSIX 25 read 28 2064 632 1500.7463 1500.7463 [209] + X_POSIX 25 read 29 136 544 1500.7473 1500.7475 [209] + X_POSIX 25 read 30 680 512 1500.7480 1500.7481 [209] + X_POSIX 25 read 31 1504 328 1500.7641 1500.7643 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 26, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 26 read 0 0 342 1.0881 1.0956 [ 33] + X_POSIX 26 read 1 342 0 1.1106 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 26, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 26 read 0 0 8 722.4242 722.4245 [ 40] + X_POSIX 26 read 1 0 9 722.4263 722.5394 [ 40] + X_POSIX 26 read 2 9 87 722.5396 722.5397 [ 40] + X_POSIX 26 read 3 96 512 722.5433 722.5433 [ 40] + X_POSIX 26 read 4 2064 632 722.5447 722.5448 [ 40] + X_POSIX 26 read 5 136 544 722.5458 722.5458 [ 40] + X_POSIX 26 read 6 680 512 722.5464 722.5466 [ 40] + X_POSIX 26 read 7 1504 328 722.5741 722.5741 [ 40] + X_POSIX 26 read 8 0 8 723.3816 723.3818 [ 40] + X_POSIX 26 read 9 0 9 723.3838 723.3838 [ 40] + X_POSIX 26 read 10 9 87 723.3840 723.3842 [ 40] + X_POSIX 26 read 11 96 512 723.3868 723.4371 [ 40] + X_POSIX 26 read 12 2064 632 723.4385 723.4386 [ 40] + X_POSIX 26 read 13 136 544 723.4397 723.4397 [ 40] + X_POSIX 26 read 14 680 512 723.4402 723.4403 [ 40] + X_POSIX 26 read 15 1504 328 723.4701 723.4703 [ 40] + X_POSIX 26 read 16 0 8 724.2924 724.2928 [ 40] + X_POSIX 26 read 17 0 9 724.2928 724.2930 [ 40] + X_POSIX 26 read 18 9 87 724.2930 724.3861 [ 40] + X_POSIX 26 read 19 96 512 724.3861 724.3862 [ 40] + X_POSIX 26 read 20 2064 632 724.3862 724.3863 [ 40] + X_POSIX 26 read 21 136 544 724.3863 724.3864 [ 40] + X_POSIX 26 read 22 680 512 724.3864 724.3866 [ 40] + X_POSIX 26 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 26 read 24 0 8 726.4900 726.6467 [ 40] + X_POSIX 26 read 25 0 9 726.6487 726.6489 [ 40] + X_POSIX 26 read 26 9 87 726.6491 726.6493 [ 40] + X_POSIX 26 read 27 96 512 726.6527 726.6529 [ 40] + X_POSIX 26 read 28 2064 632 726.6543 726.6544 [ 40] + X_POSIX 26 read 29 136 544 726.6554 726.6555 [ 40] + X_POSIX 26 read 30 680 512 726.6560 726.6561 [ 40] + X_POSIX 26 read 31 1504 328 726.6740 726.6742 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 26, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 26 read 0 0 8 1497.1740 1497.2806 [209] + X_POSIX 26 read 1 0 9 1497.2819 1497.2820 [209] + X_POSIX 26 read 2 9 87 1497.2822 1497.2822 [209] + X_POSIX 26 read 3 96 512 1497.2855 1497.2856 [209] + X_POSIX 26 read 4 2064 632 1497.2869 1497.2870 [209] + X_POSIX 26 read 5 136 544 1497.2881 1497.2881 [209] + X_POSIX 26 read 6 680 512 1497.2886 1497.2887 [209] + X_POSIX 26 read 7 1504 328 1497.3098 1497.3099 [209] + X_POSIX 26 read 8 0 8 1497.9736 1497.9741 [209] + X_POSIX 26 read 9 0 9 1497.9741 1498.0191 [209] + X_POSIX 26 read 10 9 87 1498.0191 1498.0191 [209] + X_POSIX 26 read 11 96 512 1498.0191 1498.0192 [209] + X_POSIX 26 read 12 2064 632 1498.0192 1498.0193 [209] + X_POSIX 26 read 13 136 544 1498.0193 1498.0194 [209] + X_POSIX 26 read 14 680 512 1498.0194 1498.0194 [209] + X_POSIX 26 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 26 read 16 0 8 1498.7553 1498.8332 [209] + X_POSIX 26 read 17 0 9 1498.8333 1498.8333 [209] + X_POSIX 26 read 18 9 87 1498.8334 1498.8334 [209] + X_POSIX 26 read 19 96 512 1498.8367 1498.8368 [209] + X_POSIX 26 read 20 2064 632 1498.8381 1498.8382 [209] + X_POSIX 26 read 21 136 544 1498.8392 1498.8392 [209] + X_POSIX 26 read 22 680 512 1498.8397 1498.8398 [209] + X_POSIX 26 read 23 1504 328 1498.8627 1498.8628 [209] + X_POSIX 26 read 24 0 8 1500.6274 1500.7398 [209] + X_POSIX 26 read 25 0 9 1500.7415 1500.7416 [209] + X_POSIX 26 read 26 9 87 1500.7418 1500.7418 [209] + X_POSIX 26 read 27 96 512 1500.7452 1500.7452 [209] + X_POSIX 26 read 28 2064 632 1500.7465 1500.7466 [209] + X_POSIX 26 read 29 136 544 1500.7475 1500.7477 [209] + X_POSIX 26 read 30 680 512 1500.7482 1500.7483 [209] + X_POSIX 26 read 31 1504 328 1500.7640 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 27, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 27 read 0 0 342 1.0881 1.0956 [ 33] + X_POSIX 27 read 1 342 0 1.1107 1.1108 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 27, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 27 read 0 0 8 722.4243 722.4245 [ 40] + X_POSIX 27 read 1 0 9 722.4264 722.5397 [ 40] + X_POSIX 27 read 2 9 87 722.5399 722.5399 [ 40] + X_POSIX 27 read 3 96 512 722.5433 722.5434 [ 40] + X_POSIX 27 read 4 2064 632 722.5448 722.5449 [ 40] + X_POSIX 27 read 5 136 544 722.5460 722.5460 [ 40] + X_POSIX 27 read 6 680 512 722.5465 722.5467 [ 40] + X_POSIX 27 read 7 1504 328 722.5744 722.5744 [ 40] + X_POSIX 27 read 8 0 8 723.3785 723.3785 [ 40] + X_POSIX 27 read 9 0 9 723.3804 723.3805 [ 40] + X_POSIX 27 read 10 9 87 723.3806 723.3807 [ 40] + X_POSIX 27 read 11 96 512 723.3842 723.3843 [ 40] + X_POSIX 27 read 12 2064 632 723.3857 723.4369 [ 40] + X_POSIX 27 read 13 136 544 723.4378 723.4378 [ 40] + X_POSIX 27 read 14 680 512 723.4384 723.4384 [ 40] + X_POSIX 27 read 15 1504 328 723.4702 723.4704 [ 40] + X_POSIX 27 read 16 0 8 724.2925 724.2928 [ 40] + X_POSIX 27 read 17 0 9 724.2929 724.3868 [ 40] + X_POSIX 27 read 18 9 87 724.3868 724.3869 [ 40] + X_POSIX 27 read 19 96 512 724.3869 724.3869 [ 40] + X_POSIX 27 read 20 2064 632 724.3869 724.3870 [ 40] + X_POSIX 27 read 21 136 544 724.3870 724.3870 [ 40] + X_POSIX 27 read 22 680 512 724.3870 724.3870 [ 40] + X_POSIX 27 read 23 1504 328 724.3949 724.3952 [ 40] + X_POSIX 27 read 24 0 8 726.4900 726.6466 [ 40] + X_POSIX 27 read 25 0 9 726.6486 726.6486 [ 40] + X_POSIX 27 read 26 9 87 726.6488 726.6490 [ 40] + X_POSIX 27 read 27 96 512 726.6524 726.6525 [ 40] + X_POSIX 27 read 28 2064 632 726.6539 726.6539 [ 40] + X_POSIX 27 read 29 136 544 726.6549 726.6550 [ 40] + X_POSIX 27 read 30 680 512 726.6555 726.6555 [ 40] + X_POSIX 27 read 31 1504 328 726.6743 726.6745 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 27, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 27 read 0 0 8 1497.1741 1497.2810 [209] + X_POSIX 27 read 1 0 9 1497.2829 1497.2830 [209] + X_POSIX 27 read 2 9 87 1497.2831 1497.2832 [209] + X_POSIX 27 read 3 96 512 1497.2865 1497.2865 [209] + X_POSIX 27 read 4 2064 632 1497.2880 1497.2880 [209] + X_POSIX 27 read 5 136 544 1497.2891 1497.2892 [209] + X_POSIX 27 read 6 680 512 1497.2897 1497.2899 [209] + X_POSIX 27 read 7 1504 328 1497.3099 1497.3100 [209] + X_POSIX 27 read 8 0 8 1497.9736 1497.9739 [209] + X_POSIX 27 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 27 read 10 9 87 1497.9742 1498.0191 [209] + X_POSIX 27 read 11 96 512 1498.0191 1498.0191 [209] + X_POSIX 27 read 12 2064 632 1498.0191 1498.0193 [209] + X_POSIX 27 read 13 136 544 1498.0193 1498.0193 [209] + X_POSIX 27 read 14 680 512 1498.0193 1498.0194 [209] + X_POSIX 27 read 15 1504 328 1498.0358 1498.0361 [209] + X_POSIX 27 read 16 0 8 1498.7555 1498.8338 [209] + X_POSIX 27 read 17 0 9 1498.8356 1498.8356 [209] + X_POSIX 27 read 18 9 87 1498.8359 1498.8360 [209] + X_POSIX 27 read 19 96 512 1498.8392 1498.8393 [209] + X_POSIX 27 read 20 2064 632 1498.8406 1498.8407 [209] + X_POSIX 27 read 21 136 544 1498.8417 1498.8418 [209] + X_POSIX 27 read 22 680 512 1498.8423 1498.8423 [209] + X_POSIX 27 read 23 1504 328 1498.8627 1498.8628 [209] + X_POSIX 27 read 24 0 8 1500.6276 1500.7399 [209] + X_POSIX 27 read 25 0 9 1500.7417 1500.7417 [209] + X_POSIX 27 read 26 9 87 1500.7419 1500.7419 [209] + X_POSIX 27 read 27 96 512 1500.7452 1500.7453 [209] + X_POSIX 27 read 28 2064 632 1500.7466 1500.7466 [209] + X_POSIX 27 read 29 136 544 1500.7476 1500.7478 [209] + X_POSIX 27 read 30 680 512 1500.7483 1500.7483 [209] + X_POSIX 27 read 31 1504 328 1500.7640 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 28, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 28 read 0 0 342 1.0881 1.0956 [ 33] + X_POSIX 28 read 1 342 0 1.1105 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 28, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 28 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 28 read 1 0 9 722.4263 722.5394 [ 40] + X_POSIX 28 read 2 9 87 722.5397 722.5398 [ 40] + X_POSIX 28 read 3 96 512 722.5432 722.5432 [ 40] + X_POSIX 28 read 4 2064 632 722.5446 722.5446 [ 40] + X_POSIX 28 read 5 136 544 722.5456 722.5457 [ 40] + X_POSIX 28 read 6 680 512 722.5462 722.5463 [ 40] + X_POSIX 28 read 7 1504 328 722.5743 722.5744 [ 40] + X_POSIX 28 read 8 0 8 723.3784 723.3784 [ 40] + X_POSIX 28 read 9 0 9 723.3803 723.3804 [ 40] + X_POSIX 28 read 10 9 87 723.3806 723.3806 [ 40] + X_POSIX 28 read 11 96 512 723.3839 723.3841 [ 40] + X_POSIX 28 read 12 2064 632 723.3855 723.4367 [ 40] + X_POSIX 28 read 13 136 544 723.4374 723.4375 [ 40] + X_POSIX 28 read 14 680 512 723.4380 723.4381 [ 40] + X_POSIX 28 read 15 1504 328 723.4699 723.4700 [ 40] + X_POSIX 28 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 28 read 17 0 9 724.2927 724.3859 [ 40] + X_POSIX 28 read 18 9 87 724.3859 724.3860 [ 40] + X_POSIX 28 read 19 96 512 724.3860 724.3861 [ 40] + X_POSIX 28 read 20 2064 632 724.3861 724.3862 [ 40] + X_POSIX 28 read 21 136 544 724.3862 724.3864 [ 40] + X_POSIX 28 read 22 680 512 724.3864 724.3865 [ 40] + X_POSIX 28 read 23 1504 328 724.3948 724.3952 [ 40] + X_POSIX 28 read 24 0 8 726.4899 726.6463 [ 40] + X_POSIX 28 read 25 0 9 726.6483 726.6483 [ 40] + X_POSIX 28 read 26 9 87 726.6485 726.6485 [ 40] + X_POSIX 28 read 27 96 512 726.6519 726.6520 [ 40] + X_POSIX 28 read 28 2064 632 726.6534 726.6534 [ 40] + X_POSIX 28 read 29 136 544 726.6545 726.6545 [ 40] + X_POSIX 28 read 30 680 512 726.6550 726.6551 [ 40] + X_POSIX 28 read 31 1504 328 726.6740 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 28, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 28 read 0 0 8 1497.1741 1497.2811 [209] + X_POSIX 28 read 1 0 9 1497.2831 1497.2832 [209] + X_POSIX 28 read 2 9 87 1497.2833 1497.2834 [209] + X_POSIX 28 read 3 96 512 1497.2867 1497.2869 [209] + X_POSIX 28 read 4 2064 632 1497.2883 1497.2884 [209] + X_POSIX 28 read 5 136 544 1497.2893 1497.2894 [209] + X_POSIX 28 read 6 680 512 1497.2899 1497.2901 [209] + X_POSIX 28 read 7 1504 328 1497.3097 1497.3098 [209] + X_POSIX 28 read 8 0 8 1497.9735 1497.9738 [209] + X_POSIX 28 read 9 0 9 1497.9738 1497.9741 [209] + X_POSIX 28 read 10 9 87 1497.9741 1498.0189 [209] + X_POSIX 28 read 11 96 512 1498.0189 1498.0189 [209] + X_POSIX 28 read 12 2064 632 1498.0189 1498.0190 [209] + X_POSIX 28 read 13 136 544 1498.0190 1498.0191 [209] + X_POSIX 28 read 14 680 512 1498.0191 1498.0191 [209] + X_POSIX 28 read 15 1504 328 1498.0357 1498.0361 [209] + X_POSIX 28 read 16 0 8 1498.7555 1498.8340 [209] + X_POSIX 28 read 17 0 9 1498.8358 1498.8360 [209] + X_POSIX 28 read 18 9 87 1498.8362 1498.8362 [209] + X_POSIX 28 read 19 96 512 1498.8394 1498.8394 [209] + X_POSIX 28 read 20 2064 632 1498.8408 1498.8409 [209] + X_POSIX 28 read 21 136 544 1498.8419 1498.8419 [209] + X_POSIX 28 read 22 680 512 1498.8424 1498.8424 [209] + X_POSIX 28 read 23 1504 328 1498.8626 1498.8626 [209] + X_POSIX 28 read 24 0 8 1500.6276 1500.7400 [209] + X_POSIX 28 read 25 0 9 1500.7417 1500.7417 [209] + X_POSIX 28 read 26 9 87 1500.7419 1500.7419 [209] + X_POSIX 28 read 27 96 512 1500.7452 1500.7453 [209] + X_POSIX 28 read 28 2064 632 1500.7466 1500.7466 [209] + X_POSIX 28 read 29 136 544 1500.7476 1500.7478 [209] + X_POSIX 28 read 30 680 512 1500.7483 1500.7483 [209] + X_POSIX 28 read 31 1504 328 1500.7639 1500.7641 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 29, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 29 read 0 0 342 1.0880 1.0953 [ 33] + X_POSIX 29 read 1 342 0 1.1106 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 29, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 29 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 29 read 1 0 9 722.4263 722.5396 [ 40] + X_POSIX 29 read 2 9 87 722.5398 722.5399 [ 40] + X_POSIX 29 read 3 96 512 722.5433 722.5433 [ 40] + X_POSIX 29 read 4 2064 632 722.5447 722.5449 [ 40] + X_POSIX 29 read 5 136 544 722.5459 722.5460 [ 40] + X_POSIX 29 read 6 680 512 722.5465 722.5466 [ 40] + X_POSIX 29 read 7 1504 328 722.5743 722.5744 [ 40] + X_POSIX 29 read 8 0 8 723.3784 723.3784 [ 40] + X_POSIX 29 read 9 0 9 723.3803 723.3804 [ 40] + X_POSIX 29 read 10 9 87 723.3805 723.3806 [ 40] + X_POSIX 29 read 11 96 512 723.3839 723.3840 [ 40] + X_POSIX 29 read 12 2064 632 723.3855 723.4367 [ 40] + X_POSIX 29 read 13 136 544 723.4376 723.4376 [ 40] + X_POSIX 29 read 14 680 512 723.4381 723.4382 [ 40] + X_POSIX 29 read 15 1504 328 723.4701 723.4702 [ 40] + X_POSIX 29 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 29 read 17 0 9 724.2927 724.3863 [ 40] + X_POSIX 29 read 18 9 87 724.3863 724.3865 [ 40] + X_POSIX 29 read 19 96 512 724.3865 724.3865 [ 40] + X_POSIX 29 read 20 2064 632 724.3866 724.3866 [ 40] + X_POSIX 29 read 21 136 544 724.3867 724.3867 [ 40] + X_POSIX 29 read 22 680 512 724.3867 724.3867 [ 40] + X_POSIX 29 read 23 1504 328 724.3948 724.3950 [ 40] + X_POSIX 29 read 24 0 8 726.4898 726.6466 [ 40] + X_POSIX 29 read 25 0 9 726.6486 726.6486 [ 40] + X_POSIX 29 read 26 9 87 726.6488 726.6490 [ 40] + X_POSIX 29 read 27 96 512 726.6524 726.6526 [ 40] + X_POSIX 29 read 28 2064 632 726.6539 726.6540 [ 40] + X_POSIX 29 read 29 136 544 726.6550 726.6551 [ 40] + X_POSIX 29 read 30 680 512 726.6556 726.6557 [ 40] + X_POSIX 29 read 31 1504 328 726.6740 726.6742 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 29, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 29 read 0 0 8 1497.1739 1497.2805 [209] + X_POSIX 29 read 1 0 9 1497.2816 1497.2816 [209] + X_POSIX 29 read 2 9 87 1497.2818 1497.2819 [209] + X_POSIX 29 read 3 96 512 1497.2852 1497.2852 [209] + X_POSIX 29 read 4 2064 632 1497.2865 1497.2865 [209] + X_POSIX 29 read 5 136 544 1497.2876 1497.2877 [209] + X_POSIX 29 read 6 680 512 1497.2882 1497.2882 [209] + X_POSIX 29 read 7 1504 328 1497.3098 1497.3098 [209] + X_POSIX 29 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 29 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 29 read 10 9 87 1497.9742 1498.0193 [209] + X_POSIX 29 read 11 96 512 1498.0193 1498.0193 [209] + X_POSIX 29 read 12 2064 632 1498.0193 1498.0194 [209] + X_POSIX 29 read 13 136 544 1498.0194 1498.0195 [209] + X_POSIX 29 read 14 680 512 1498.0195 1498.0196 [209] + X_POSIX 29 read 15 1504 328 1498.0357 1498.0361 [209] + X_POSIX 29 read 16 0 8 1498.7552 1498.8332 [209] + X_POSIX 29 read 17 0 9 1498.8345 1498.8345 [209] + X_POSIX 29 read 18 9 87 1498.8347 1498.8348 [209] + X_POSIX 29 read 19 96 512 1498.8380 1498.8381 [209] + X_POSIX 29 read 20 2064 632 1498.8394 1498.8394 [209] + X_POSIX 29 read 21 136 544 1498.8404 1498.8405 [209] + X_POSIX 29 read 22 680 512 1498.8410 1498.8410 [209] + X_POSIX 29 read 23 1504 328 1498.8628 1498.8630 [209] + X_POSIX 29 read 24 0 8 1500.6274 1500.7395 [209] + X_POSIX 29 read 25 0 9 1500.7413 1500.7413 [209] + X_POSIX 29 read 26 9 87 1500.7415 1500.7415 [209] + X_POSIX 29 read 27 96 512 1500.7449 1500.7449 [209] + X_POSIX 29 read 28 2064 632 1500.7462 1500.7462 [209] + X_POSIX 29 read 29 136 544 1500.7472 1500.7474 [209] + X_POSIX 29 read 30 680 512 1500.7479 1500.7480 [209] + X_POSIX 29 read 31 1504 328 1500.7640 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 30, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 30 read 0 0 342 1.0880 1.0954 [ 33] + X_POSIX 30 read 1 342 0 1.1105 1.1106 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 30, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 30 read 0 0 8 722.4242 722.4244 [ 40] + X_POSIX 30 read 1 0 9 722.4263 722.5395 [ 40] + X_POSIX 30 read 2 9 87 722.5398 722.5398 [ 40] + X_POSIX 30 read 3 96 512 722.5432 722.5432 [ 40] + X_POSIX 30 read 4 2064 632 722.5446 722.5447 [ 40] + X_POSIX 30 read 5 136 544 722.5457 722.5457 [ 40] + X_POSIX 30 read 6 680 512 722.5462 722.5464 [ 40] + X_POSIX 30 read 7 1504 328 722.5742 722.5743 [ 40] + X_POSIX 30 read 8 0 8 723.3816 723.3818 [ 40] + X_POSIX 30 read 9 0 9 723.3838 723.3840 [ 40] + X_POSIX 30 read 10 9 87 723.3842 723.3844 [ 40] + X_POSIX 30 read 11 96 512 723.3868 723.4373 [ 40] + X_POSIX 30 read 12 2064 632 723.4387 723.4388 [ 40] + X_POSIX 30 read 13 136 544 723.4400 723.4400 [ 40] + X_POSIX 30 read 14 680 512 723.4405 723.4406 [ 40] + X_POSIX 30 read 15 1504 328 723.4703 723.4705 [ 40] + X_POSIX 30 read 16 0 8 724.2924 724.2929 [ 40] + X_POSIX 30 read 17 0 9 724.2929 724.3862 [ 40] + X_POSIX 30 read 18 9 87 724.3862 724.3863 [ 40] + X_POSIX 30 read 19 96 512 724.3863 724.3865 [ 40] + X_POSIX 30 read 20 2064 632 724.3865 724.3866 [ 40] + X_POSIX 30 read 21 136 544 724.3866 724.3866 [ 40] + X_POSIX 30 read 22 680 512 724.3866 724.3866 [ 40] + X_POSIX 30 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 30 read 24 0 8 726.4900 726.6467 [ 40] + X_POSIX 30 read 25 0 9 726.6488 726.6490 [ 40] + X_POSIX 30 read 26 9 87 726.6491 726.6493 [ 40] + X_POSIX 30 read 27 96 512 726.6528 726.6530 [ 40] + X_POSIX 30 read 28 2064 632 726.6545 726.6546 [ 40] + X_POSIX 30 read 29 136 544 726.6557 726.6557 [ 40] + X_POSIX 30 read 30 680 512 726.6562 726.6563 [ 40] + X_POSIX 30 read 31 1504 328 726.6740 726.6741 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 30, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 30 read 0 0 8 1497.1741 1497.2814 [209] + X_POSIX 30 read 1 0 9 1497.2834 1497.2834 [209] + X_POSIX 30 read 2 9 87 1497.2837 1497.2837 [209] + X_POSIX 30 read 3 96 512 1497.2870 1497.2871 [209] + X_POSIX 30 read 4 2064 632 1497.2885 1497.2885 [209] + X_POSIX 30 read 5 136 544 1497.2895 1497.2897 [209] + X_POSIX 30 read 6 680 512 1497.2902 1497.2903 [209] + X_POSIX 30 read 7 1504 328 1497.3099 1497.3099 [209] + X_POSIX 30 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 30 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 30 read 10 9 87 1497.9742 1498.0194 [209] + X_POSIX 30 read 11 96 512 1498.0194 1498.0195 [209] + X_POSIX 30 read 12 2064 632 1498.0195 1498.0195 [209] + X_POSIX 30 read 13 136 544 1498.0195 1498.0196 [209] + X_POSIX 30 read 14 680 512 1498.0196 1498.0197 [209] + X_POSIX 30 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 30 read 16 0 8 1498.7554 1498.8340 [209] + X_POSIX 30 read 17 0 9 1498.8358 1498.8360 [209] + X_POSIX 30 read 18 9 87 1498.8361 1498.8362 [209] + X_POSIX 30 read 19 96 512 1498.8394 1498.8394 [209] + X_POSIX 30 read 20 2064 632 1498.8408 1498.8409 [209] + X_POSIX 30 read 21 136 544 1498.8419 1498.8420 [209] + X_POSIX 30 read 22 680 512 1498.8425 1498.8425 [209] + X_POSIX 30 read 23 1504 328 1498.8628 1498.8629 [209] + X_POSIX 30 read 24 0 8 1500.6276 1500.7400 [209] + X_POSIX 30 read 25 0 9 1500.7417 1500.7418 [209] + X_POSIX 30 read 26 9 87 1500.7420 1500.7420 [209] + X_POSIX 30 read 27 96 512 1500.7453 1500.7454 [209] + X_POSIX 30 read 28 2064 632 1500.7467 1500.7468 [209] + X_POSIX 30 read 29 136 544 1500.7478 1500.7479 [209] + X_POSIX 30 read 30 680 512 1500.7484 1500.7485 [209] + X_POSIX 30 read 31 1504 328 1500.7639 1500.7640 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 31, hostname: nid00535 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 31 read 0 0 342 1.0880 1.0955 [ 33] + X_POSIX 31 read 1 342 0 1.1105 1.1107 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 31, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 31 read 0 0 8 722.4241 722.4242 [ 40] + X_POSIX 31 read 1 0 9 722.4263 722.5395 [ 40] + X_POSIX 31 read 2 9 87 722.5398 722.5398 [ 40] + X_POSIX 31 read 3 96 512 722.5432 722.5432 [ 40] + X_POSIX 31 read 4 2064 632 722.5446 722.5447 [ 40] + X_POSIX 31 read 5 136 544 722.5457 722.5457 [ 40] + X_POSIX 31 read 6 680 512 722.5463 722.5464 [ 40] + X_POSIX 31 read 7 1504 328 722.5742 722.5742 [ 40] + X_POSIX 31 read 8 0 8 723.3816 723.3818 [ 40] + X_POSIX 31 read 9 0 9 723.3838 723.3839 [ 40] + X_POSIX 31 read 10 9 87 723.3841 723.3842 [ 40] + X_POSIX 31 read 11 96 512 723.3867 723.4375 [ 40] + X_POSIX 31 read 12 2064 632 723.4388 723.4389 [ 40] + X_POSIX 31 read 13 136 544 723.4401 723.4401 [ 40] + X_POSIX 31 read 14 680 512 723.4406 723.4407 [ 40] + X_POSIX 31 read 15 1504 328 723.4702 723.4704 [ 40] + X_POSIX 31 read 16 0 8 724.2924 724.2927 [ 40] + X_POSIX 31 read 17 0 9 724.2927 724.2928 [ 40] + X_POSIX 31 read 18 9 87 724.2928 724.3859 [ 40] + X_POSIX 31 read 19 96 512 724.3860 724.3861 [ 40] + X_POSIX 31 read 20 2064 632 724.3861 724.3862 [ 40] + X_POSIX 31 read 21 136 544 724.3862 724.3863 [ 40] + X_POSIX 31 read 22 680 512 724.3863 724.3865 [ 40] + X_POSIX 31 read 23 1504 328 724.3948 724.3951 [ 40] + X_POSIX 31 read 24 0 8 726.4900 726.6468 [ 40] + X_POSIX 31 read 25 0 9 726.6488 726.6490 [ 40] + X_POSIX 31 read 26 9 87 726.6492 726.6493 [ 40] + X_POSIX 31 read 27 96 512 726.6528 726.6530 [ 40] + X_POSIX 31 read 28 2064 632 726.6544 726.6544 [ 40] + X_POSIX 31 read 29 136 544 726.6555 726.6555 [ 40] + X_POSIX 31 read 30 680 512 726.6560 726.6561 [ 40] + X_POSIX 31 read 31 1504 328 726.6739 726.6740 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 31, hostname: nid00535 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 31 read 0 0 8 1497.1739 1497.2806 [209] + X_POSIX 31 read 1 0 9 1497.2823 1497.2824 [209] + X_POSIX 31 read 2 9 87 1497.2825 1497.2826 [209] + X_POSIX 31 read 3 96 512 1497.2860 1497.2860 [209] + X_POSIX 31 read 4 2064 632 1497.2874 1497.2874 [209] + X_POSIX 31 read 5 136 544 1497.2885 1497.2885 [209] + X_POSIX 31 read 6 680 512 1497.2890 1497.2890 [209] + X_POSIX 31 read 7 1504 328 1497.3097 1497.3097 [209] + X_POSIX 31 read 8 0 8 1497.9735 1497.9739 [209] + X_POSIX 31 read 9 0 9 1497.9739 1497.9742 [209] + X_POSIX 31 read 10 9 87 1497.9742 1498.0192 [209] + X_POSIX 31 read 11 96 512 1498.0192 1498.0193 [209] + X_POSIX 31 read 12 2064 632 1498.0193 1498.0193 [209] + X_POSIX 31 read 13 136 544 1498.0193 1498.0194 [209] + X_POSIX 31 read 14 680 512 1498.0194 1498.0194 [209] + X_POSIX 31 read 15 1504 328 1498.0357 1498.0360 [209] + X_POSIX 31 read 16 0 8 1498.7554 1498.8336 [209] + X_POSIX 31 read 17 0 9 1498.8354 1498.8355 [209] + X_POSIX 31 read 18 9 87 1498.8357 1498.8359 [209] + X_POSIX 31 read 19 96 512 1498.8391 1498.8392 [209] + X_POSIX 31 read 20 2064 632 1498.8405 1498.8406 [209] + X_POSIX 31 read 21 136 544 1498.8416 1498.8416 [209] + X_POSIX 31 read 22 680 512 1498.8421 1498.8421 [209] + X_POSIX 31 read 23 1504 328 1498.8628 1498.8630 [209] + X_POSIX 31 read 24 0 8 1500.6275 1500.7400 [209] + X_POSIX 31 read 25 0 9 1500.7417 1500.7417 [209] + X_POSIX 31 read 26 9 87 1500.7419 1500.7419 [209] + X_POSIX 31 read 27 96 512 1500.7452 1500.7453 [209] + X_POSIX 31 read 28 2064 632 1500.7466 1500.7467 [209] + X_POSIX 31 read 29 136 544 1500.7477 1500.7478 [209] + X_POSIX 31 read 30 680 512 1500.7483 1500.7483 [209] + X_POSIX 31 read 31 1504 328 1500.7640 1500.7642 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 32, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 32 read 0 0 342 1.2904 1.2904 [ 33] + X_POSIX 32 read 1 342 0 1.3017 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 32, hostname: nid00536 +# DXT, write_count: 30, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 32 write 0 67108864 67108864 721.8982 722.0839 [ 14] + X_POSIX 32 write 1 8657043456 533108 723.6113 723.6120 [ 14] + X_POSIX 32 write 2 8657724584 66427736 724.7172 725.0924 [ 14] + X_POSIX 32 write 3 17246978048 67108864 725.1017 725.4604 [ 14] + X_POSIX 32 write 4 25836912640 67108864 725.4678 725.7379 [ 14] + X_POSIX 32 write 5 34426847232 67108864 727.9830 728.3640 [ 14] + X_POSIX 32 write 6 43016781824 67108864 728.5439 728.7420 [ 14] + X_POSIX 32 write 7 51606716416 67108864 728.8218 729.0974 [ 14] + X_POSIX 32 write 8 60196651008 67108864 729.1199 729.4066 [ 14] + X_POSIX 32 write 9 68786585600 67108864 729.4521 729.7266 [ 14] + X_POSIX 32 write 10 77376520192 67108864 729.9269 730.1707 [ 14] + X_POSIX 32 write 11 85966454784 67108864 730.4402 730.6368 [ 14] + X_POSIX 32 write 12 94556389376 67108864 730.6785 730.9401 [ 14] + X_POSIX 32 write 13 103146323968 67108864 731.1149 731.3175 [ 14] + X_POSIX 32 write 14 111736258560 67108864 731.3587 731.6290 [ 14] + X_POSIX 32 write 15 120326193152 67108864 731.7085 731.9554 [ 14] + X_POSIX 32 write 16 128916127744 67108864 732.1237 732.3496 [ 14] + X_POSIX 32 write 17 137506062336 67108864 732.5828 732.7556 [ 14] + X_POSIX 32 write 18 146095996928 67108864 732.9271 733.1321 [ 14] + X_POSIX 32 write 19 154685931520 67108864 733.1693 733.4827 [ 14] + X_POSIX 32 write 20 163275866112 67108864 733.5078 733.8373 [ 14] + X_POSIX 32 write 21 171865800704 67108864 733.8517 734.2082 [ 14] + X_POSIX 32 write 22 180455735296 67108864 734.2720 734.5543 [ 14] + X_POSIX 32 write 23 189045669888 67108864 734.5658 734.9157 [ 14] + X_POSIX 32 write 24 197635604480 67108864 734.9266 735.2351 [ 14] + X_POSIX 32 write 25 206225539072 67108864 735.2518 735.5497 [ 14] + X_POSIX 32 write 26 214815473664 67108864 735.6732 735.9324 [ 14] + X_POSIX 32 write 27 223405408256 67108864 735.9445 736.2582 [ 14] + X_POSIX 32 write 28 231995342848 67108864 736.2716 736.5007 [ 14] + X_POSIX 32 write 29 240585277440 67108864 736.5105 736.7501 [ 14] + X_POSIX 32 read 0 0 8 722.4098 722.5132 [ 40] + X_POSIX 32 read 1 0 9 722.5162 722.5162 [ 40] + X_POSIX 32 read 2 9 87 722.5165 722.5166 [ 40] + X_POSIX 32 read 3 96 512 722.5222 722.5223 [ 40] + X_POSIX 32 read 4 2064 632 722.5246 722.5246 [ 40] + X_POSIX 32 read 5 136 544 722.5264 722.5264 [ 40] + X_POSIX 32 read 6 680 512 722.5273 722.5273 [ 40] + X_POSIX 32 read 7 1504 328 722.5634 722.5634 [ 40] + X_POSIX 32 read 8 0 8 723.3757 723.4003 [ 40] + X_POSIX 32 read 9 0 9 723.4004 723.4005 [ 40] + X_POSIX 32 read 10 9 87 723.4005 723.4006 [ 40] + X_POSIX 32 read 11 96 512 723.4056 723.4057 [ 40] + X_POSIX 32 read 12 2064 632 723.4080 723.4080 [ 40] + X_POSIX 32 read 13 136 544 723.4097 723.4097 [ 40] + X_POSIX 32 read 14 680 512 723.4106 723.4106 [ 40] + X_POSIX 32 read 15 1504 328 723.4596 723.4596 [ 40] + X_POSIX 32 read 16 0 8 724.2776 724.3672 [ 40] + X_POSIX 32 read 17 0 9 724.3672 724.3672 [ 40] + X_POSIX 32 read 18 9 87 724.3672 724.3672 [ 40] + X_POSIX 32 read 19 96 512 724.3672 724.3673 [ 40] + X_POSIX 32 read 20 2064 632 724.3673 724.3673 [ 40] + X_POSIX 32 read 21 136 544 724.3673 724.3674 [ 40] + X_POSIX 32 read 22 680 512 724.3674 724.3674 [ 40] + X_POSIX 32 read 23 1504 328 724.3800 724.3803 [ 40] + X_POSIX 32 read 24 0 8 726.4816 726.6274 [ 40] + X_POSIX 32 read 25 0 9 726.6304 726.6305 [ 40] + X_POSIX 32 read 26 9 87 726.6308 726.6308 [ 40] + X_POSIX 32 read 27 96 512 726.6364 726.6364 [ 40] + X_POSIX 32 read 28 2064 632 726.6387 726.6388 [ 40] + X_POSIX 32 read 29 136 544 726.6405 726.6405 [ 40] + X_POSIX 32 read 30 680 512 726.6413 726.6414 [ 40] + X_POSIX 32 read 31 1504 328 726.6635 726.6635 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 32, hostname: nid00536 +# DXT, write_count: 25, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 32 write 0 67108864 67108864 1496.7967 1496.9290 [193] + X_POSIX 32 write 1 8657043456 533108 1498.2722 1498.2728 [193] + X_POSIX 32 write 2 8657737868 66414452 1499.1624 1499.3481 [193] + X_POSIX 32 write 3 17246978048 67108864 1499.3706 1499.5513 [193] + X_POSIX 32 write 4 25836912640 67108864 1499.6142 1499.8378 [193] + X_POSIX 32 write 5 34426847232 67108864 1501.8256 1502.0294 [193] + X_POSIX 32 write 6 43016781824 67108864 1502.2003 1502.3748 [193] + X_POSIX 32 write 7 51606716416 67108864 1502.5218 1502.6952 [193] + X_POSIX 32 write 8 60196651008 67108864 1502.7113 1502.9116 [193] + X_POSIX 32 write 9 68786585600 67108864 1502.9469 1503.1516 [193] + X_POSIX 32 write 10 77376520192 67108864 1503.1728 1503.4082 [193] + X_POSIX 32 write 11 85966454784 67108864 1503.4246 1503.6595 [193] + X_POSIX 32 write 12 94556389376 67108864 1504.7154 1504.9441 [193] + X_POSIX 32 write 13 103146323968 67108864 1505.0452 1505.2809 [193] + X_POSIX 32 write 14 111736258560 67108864 1505.3290 1505.5384 [193] + X_POSIX 32 write 15 120326193152 67108864 1505.6779 1505.8283 [193] + X_POSIX 32 write 16 128916127744 67108864 1505.8642 1506.0530 [193] + X_POSIX 32 write 17 137506062336 67108864 1506.2171 1506.3741 [193] + X_POSIX 32 write 18 146095996928 67108864 1506.5111 1506.6696 [193] + X_POSIX 32 write 19 154685931520 67108864 1506.8297 1506.9993 [193] + X_POSIX 32 write 20 163275866112 67108864 1507.2259 1507.3776 [193] + X_POSIX 32 write 21 171865800704 67108864 1507.6971 1507.8419 [193] + X_POSIX 32 write 22 180455735296 67108864 1508.0659 1508.2167 [193] + X_POSIX 32 write 23 189045669888 67108864 1508.3768 1508.5316 [193] + X_POSIX 32 write 24 197635604480 67108864 1508.6200 1508.7337 [193] + X_POSIX 32 read 0 0 8 1497.1510 1497.2691 [209] + X_POSIX 32 read 1 0 9 1497.2692 1497.2692 [209] + X_POSIX 32 read 2 9 87 1497.2692 1497.2693 [209] + X_POSIX 32 read 3 96 512 1497.2693 1497.2694 [209] + X_POSIX 32 read 4 2064 632 1497.2694 1497.2694 [209] + X_POSIX 32 read 5 136 544 1497.2694 1497.2694 [209] + X_POSIX 32 read 6 680 512 1497.2694 1497.2695 [209] + X_POSIX 32 read 7 1504 328 1497.2881 1497.2884 [209] + X_POSIX 32 read 8 0 8 1497.9771 1497.9966 [209] + X_POSIX 32 read 9 0 9 1497.9989 1497.9989 [209] + X_POSIX 32 read 10 9 87 1497.9992 1497.9992 [209] + X_POSIX 32 read 11 96 512 1498.0045 1498.0045 [209] + X_POSIX 32 read 12 2064 632 1498.0068 1498.0068 [209] + X_POSIX 32 read 13 136 544 1498.0085 1498.0085 [209] + X_POSIX 32 read 14 680 512 1498.0094 1498.0094 [209] + X_POSIX 32 read 15 1504 328 1498.0341 1498.0341 [209] + X_POSIX 32 read 16 0 8 1498.7312 1498.8186 [209] + X_POSIX 32 read 17 0 9 1498.8186 1498.8187 [209] + X_POSIX 32 read 18 9 87 1498.8187 1498.8187 [209] + X_POSIX 32 read 19 96 512 1498.8187 1498.8187 [209] + X_POSIX 32 read 20 2064 632 1498.8187 1498.8188 [209] + X_POSIX 32 read 21 136 544 1498.8188 1498.8188 [209] + X_POSIX 32 read 22 680 512 1498.8188 1498.8188 [209] + X_POSIX 32 read 23 1504 328 1498.8410 1498.8414 [209] + X_POSIX 32 read 24 0 8 1500.6207 1500.7182 [209] + X_POSIX 32 read 25 0 9 1500.7212 1500.7212 [209] + X_POSIX 32 read 26 9 87 1500.7215 1500.7215 [209] + X_POSIX 32 read 27 96 512 1500.7271 1500.7271 [209] + X_POSIX 32 read 28 2064 632 1500.7294 1500.7294 [209] + X_POSIX 32 read 29 136 544 1500.7311 1500.7311 [209] + X_POSIX 32 read 30 680 512 1500.7320 1500.7320 [209] + X_POSIX 32 read 31 1504 328 1500.7544 1500.7544 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 33, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 33 read 0 0 342 1.2982 1.2983 [ 33] + X_POSIX 33 read 1 342 0 1.3013 1.3013 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 33, hostname: nid00536 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 33 write 0 2214592512 67108864 722.7572 722.9356 [219] + X_POSIX 33 write 1 10804527104 67108864 724.7432 724.9200 [219] + X_POSIX 33 write 2 19394461696 67108864 725.0217 725.1747 [219] + X_POSIX 33 write 3 27984396288 67108864 728.0055 728.1706 [219] + X_POSIX 33 write 4 36574330880 67108864 728.2005 728.4097 [219] + X_POSIX 33 write 5 45164265472 67108864 728.5044 728.6879 [219] + X_POSIX 33 write 6 53754200064 67108864 728.7527 728.9080 [219] + X_POSIX 33 write 7 62344134656 67108864 729.3238 729.4549 [219] + X_POSIX 33 write 8 70934069248 67108864 729.4969 729.7407 [219] + X_POSIX 33 write 9 79524003840 67108864 729.9345 730.0755 [219] + X_POSIX 33 write 10 88113938432 67108864 730.2227 730.3657 [219] + X_POSIX 33 write 11 96703873024 67108864 730.5343 730.6857 [219] + X_POSIX 33 write 12 105293807616 67108864 730.7158 730.8899 [219] + X_POSIX 33 write 13 113883742208 67108864 730.9093 731.1175 [219] + X_POSIX 33 write 14 122473676800 67108864 731.1341 731.2864 [219] + X_POSIX 33 write 15 131063611392 67108864 731.3034 731.5538 [219] + X_POSIX 33 write 16 139653545984 67108864 731.5701 731.8631 [219] + X_POSIX 33 write 17 148243480576 67108864 731.8747 732.1640 [219] + X_POSIX 33 write 18 156833415168 67108864 732.2037 732.4158 [219] + X_POSIX 33 write 19 165423349760 67108864 732.4344 732.6486 [219] + X_POSIX 33 write 20 174013284352 67108864 732.6674 732.8283 [219] + X_POSIX 33 write 21 182603218944 67108864 732.8399 733.0423 [219] + X_POSIX 33 write 22 191193153536 67108864 733.0580 733.2593 [219] + X_POSIX 33 write 23 199783088128 67108864 733.2757 733.5827 [219] + X_POSIX 33 write 24 208373022720 67108864 733.5985 733.8303 [219] + X_POSIX 33 write 25 216962957312 67108864 733.8448 734.1041 [219] + X_POSIX 33 write 26 225552891904 67108864 734.1175 734.3625 [219] + X_POSIX 33 write 27 234142826496 67108864 734.3753 734.6429 [219] + X_POSIX 33 write 28 242732761088 67108864 734.6543 734.8976 [219] + X_POSIX 33 read 0 0 8 722.4096 722.5130 [ 40] + X_POSIX 33 read 1 0 9 722.5169 722.5170 [ 40] + X_POSIX 33 read 2 9 87 722.5173 722.5173 [ 40] + X_POSIX 33 read 3 96 512 722.5230 722.5231 [ 40] + X_POSIX 33 read 4 2064 632 722.5254 722.5254 [ 40] + X_POSIX 33 read 5 136 544 722.5272 722.5272 [ 40] + X_POSIX 33 read 6 680 512 722.5281 722.5281 [ 40] + X_POSIX 33 read 7 1504 328 722.5639 722.5639 [ 40] + X_POSIX 33 read 8 0 8 723.3784 723.4007 [ 40] + X_POSIX 33 read 9 0 9 723.4038 723.4038 [ 40] + X_POSIX 33 read 10 9 87 723.4041 723.4042 [ 40] + X_POSIX 33 read 11 96 512 723.4095 723.4095 [ 40] + X_POSIX 33 read 12 2064 632 723.4118 723.4118 [ 40] + X_POSIX 33 read 13 136 544 723.4135 723.4135 [ 40] + X_POSIX 33 read 14 680 512 723.4144 723.4144 [ 40] + X_POSIX 33 read 15 1504 328 723.4598 723.4598 [ 40] + X_POSIX 33 read 16 0 8 724.2773 724.3687 [ 40] + X_POSIX 33 read 17 0 9 724.3687 724.3687 [ 40] + X_POSIX 33 read 18 9 87 724.3687 724.3687 [ 40] + X_POSIX 33 read 19 96 512 724.3687 724.3688 [ 40] + X_POSIX 33 read 20 2064 632 724.3688 724.3688 [ 40] + X_POSIX 33 read 21 136 544 724.3688 724.3688 [ 40] + X_POSIX 33 read 22 680 512 724.3688 724.3688 [ 40] + X_POSIX 33 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 33 read 24 0 8 726.4812 726.6268 [ 40] + X_POSIX 33 read 25 0 9 726.6300 726.6301 [ 40] + X_POSIX 33 read 26 9 87 726.6304 726.6304 [ 40] + X_POSIX 33 read 27 96 512 726.6360 726.6360 [ 40] + X_POSIX 33 read 28 2064 632 726.6384 726.6384 [ 40] + X_POSIX 33 read 29 136 544 726.6401 726.6401 [ 40] + X_POSIX 33 read 30 680 512 726.6410 726.6410 [ 40] + X_POSIX 33 read 31 1504 328 726.6636 726.6637 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 33, hostname: nid00536 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 33 write 0 2214592512 67108864 1497.4195 1497.6045 [ 5] + X_POSIX 33 write 1 10804527104 67108864 1499.1862 1499.3467 [ 5] + X_POSIX 33 write 2 19394461696 67108864 1499.4761 1499.6378 [ 5] + X_POSIX 33 write 3 27984396288 67108864 1502.1552 1502.3193 [ 5] + X_POSIX 33 write 4 36574330880 67108864 1502.3549 1502.5691 [ 5] + X_POSIX 33 write 5 45164265472 67108864 1502.5809 1502.8722 [ 5] + X_POSIX 33 write 6 53754200064 67108864 1502.9443 1503.1427 [ 5] + X_POSIX 33 write 7 62344134656 67108864 1503.1791 1503.4101 [ 5] + X_POSIX 33 write 8 70934069248 67108864 1503.4448 1503.6423 [ 5] + X_POSIX 33 write 9 79524003840 67108864 1503.6602 1503.8263 [ 5] + X_POSIX 33 write 10 88113938432 67108864 1503.8957 1504.1305 [ 5] + X_POSIX 33 write 11 96703873024 67108864 1504.1468 1504.3510 [ 5] + X_POSIX 33 write 12 105293807616 67108864 1504.4347 1504.6514 [ 5] + X_POSIX 33 write 13 113883742208 67108864 1504.6739 1504.8934 [ 5] + X_POSIX 33 write 14 122473676800 67108864 1506.0624 1506.2017 [ 5] + X_POSIX 33 write 15 131063611392 67108864 1506.2156 1506.4655 [ 5] + X_POSIX 33 write 16 139653545984 67108864 1506.4800 1506.7517 [ 5] + X_POSIX 33 write 17 148243480576 67108864 1506.8314 1506.9805 [ 5] + X_POSIX 33 write 18 156833415168 67108864 1507.0557 1507.2259 [ 5] + X_POSIX 33 write 19 165423349760 67108864 1507.3121 1507.4740 [ 5] + X_POSIX 33 write 20 174013284352 67108864 1507.5478 1507.7235 [ 5] + X_POSIX 33 write 21 182603218944 67108864 1507.7403 1507.9711 [ 5] + X_POSIX 33 write 22 191193153536 67108864 1507.9901 1508.1865 [ 5] + X_POSIX 33 write 23 199783088128 67108864 1508.4019 1508.5635 [ 5] + X_POSIX 33 read 0 0 8 1497.1509 1497.2651 [209] + X_POSIX 33 read 1 0 9 1497.2652 1497.2652 [209] + X_POSIX 33 read 2 9 87 1497.2652 1497.2652 [209] + X_POSIX 33 read 3 96 512 1497.2652 1497.2653 [209] + X_POSIX 33 read 4 2064 632 1497.2653 1497.2653 [209] + X_POSIX 33 read 5 136 544 1497.2653 1497.2653 [209] + X_POSIX 33 read 6 680 512 1497.2653 1497.2654 [209] + X_POSIX 33 read 7 1504 328 1497.2878 1497.2882 [209] + X_POSIX 33 read 8 0 8 1497.9770 1497.9967 [209] + X_POSIX 33 read 9 0 9 1497.9998 1497.9999 [209] + X_POSIX 33 read 10 9 87 1498.0001 1498.0002 [209] + X_POSIX 33 read 11 96 512 1498.0055 1498.0056 [209] + X_POSIX 33 read 12 2064 632 1498.0078 1498.0078 [209] + X_POSIX 33 read 13 136 544 1498.0095 1498.0095 [209] + X_POSIX 33 read 14 680 512 1498.0104 1498.0104 [209] + X_POSIX 33 read 15 1504 328 1498.0346 1498.0346 [209] + X_POSIX 33 read 16 0 8 1498.7310 1498.8182 [209] + X_POSIX 33 read 17 0 9 1498.8182 1498.8183 [209] + X_POSIX 33 read 18 9 87 1498.8183 1498.8183 [209] + X_POSIX 33 read 19 96 512 1498.8183 1498.8183 [209] + X_POSIX 33 read 20 2064 632 1498.8184 1498.8184 [209] + X_POSIX 33 read 21 136 544 1498.8184 1498.8184 [209] + X_POSIX 33 read 22 680 512 1498.8184 1498.8184 [209] + X_POSIX 33 read 23 1504 328 1498.8408 1498.8411 [209] + X_POSIX 33 read 24 0 8 1500.6204 1500.7178 [209] + X_POSIX 33 read 25 0 9 1500.7210 1500.7210 [209] + X_POSIX 33 read 26 9 87 1500.7213 1500.7213 [209] + X_POSIX 33 read 27 96 512 1500.7269 1500.7269 [209] + X_POSIX 33 read 28 2064 632 1500.7292 1500.7292 [209] + X_POSIX 33 read 29 136 544 1500.7309 1500.7310 [209] + X_POSIX 33 read 30 680 512 1500.7318 1500.7318 [209] + X_POSIX 33 read 31 1504 328 1500.7548 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 34, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 34 read 0 0 342 1.3000 1.3000 [ 33] + X_POSIX 34 read 1 342 0 1.3015 1.3016 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 34, hostname: nid00536 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 34 write 0 4362076160 67108864 723.6603 723.8359 [179] + X_POSIX 34 write 1 12952010752 67108864 724.7466 724.8997 [179] + X_POSIX 34 write 2 21541945344 67108864 724.9982 725.1221 [179] + X_POSIX 34 write 3 30131879936 67108864 728.0445 728.2367 [179] + X_POSIX 34 write 4 38721814528 67108864 728.2706 728.5031 [179] + X_POSIX 34 write 5 47311749120 67108864 728.5271 728.7869 [179] + X_POSIX 34 write 6 55901683712 67108864 729.3752 729.5702 [179] + X_POSIX 34 write 7 64491618304 67108864 729.8736 730.0313 [179] + X_POSIX 34 write 8 73081552896 67108864 730.1985 730.3528 [179] + X_POSIX 34 write 9 81671487488 67108864 730.4711 730.6411 [179] + X_POSIX 34 write 10 90261422080 67108864 730.9342 731.0962 [179] + X_POSIX 34 write 11 98851356672 67108864 731.2000 731.3178 [179] + X_POSIX 34 write 12 107441291264 67108864 731.3848 731.5481 [179] + X_POSIX 34 write 13 116031225856 67108864 731.6521 731.7926 [179] + X_POSIX 34 write 14 124621160448 67108864 731.8548 732.0013 [179] + X_POSIX 34 write 15 133211095040 67108864 732.0468 732.2184 [179] + X_POSIX 34 write 16 141801029632 67108864 732.2339 732.4147 [179] + X_POSIX 34 write 17 150390964224 67108864 732.4467 732.6943 [179] + X_POSIX 34 write 18 158980898816 67108864 732.7974 732.9488 [179] + X_POSIX 34 write 19 167570833408 67108864 732.9973 733.2146 [179] + X_POSIX 34 write 20 176160768000 67108864 733.3062 733.4722 [179] + X_POSIX 34 write 21 184750702592 67108864 733.5658 733.7571 [179] + X_POSIX 34 write 22 193340637184 67108864 733.9590 734.1087 [179] + X_POSIX 34 write 23 201930571776 67108864 734.1241 734.3962 [179] + X_POSIX 34 write 24 210520506368 67108864 734.4111 734.7010 [179] + X_POSIX 34 write 25 219110440960 67108864 734.7163 734.9981 [179] + X_POSIX 34 write 26 227700375552 67108864 735.0181 735.3133 [179] + X_POSIX 34 write 27 236290310144 67108864 735.3326 735.5738 [179] + X_POSIX 34 write 28 244880244736 67108864 735.5853 735.8183 [179] + X_POSIX 34 read 0 0 8 722.4099 722.5131 [ 40] + X_POSIX 34 read 1 0 9 722.5169 722.5169 [ 40] + X_POSIX 34 read 2 9 87 722.5172 722.5172 [ 40] + X_POSIX 34 read 3 96 512 722.5230 722.5230 [ 40] + X_POSIX 34 read 4 2064 632 722.5253 722.5253 [ 40] + X_POSIX 34 read 5 136 544 722.5271 722.5271 [ 40] + X_POSIX 34 read 6 680 512 722.5280 722.5280 [ 40] + X_POSIX 34 read 7 1504 328 722.5641 722.5641 [ 40] + X_POSIX 34 read 8 0 8 723.3788 723.4006 [ 40] + X_POSIX 34 read 9 0 9 723.4037 723.4037 [ 40] + X_POSIX 34 read 10 9 87 723.4040 723.4040 [ 40] + X_POSIX 34 read 11 96 512 723.4094 723.4094 [ 40] + X_POSIX 34 read 12 2064 632 723.4116 723.4117 [ 40] + X_POSIX 34 read 13 136 544 723.4134 723.4134 [ 40] + X_POSIX 34 read 14 680 512 723.4142 723.4142 [ 40] + X_POSIX 34 read 15 1504 328 723.4602 723.4603 [ 40] + X_POSIX 34 read 16 0 8 724.2776 724.3685 [ 40] + X_POSIX 34 read 17 0 9 724.3685 724.3686 [ 40] + X_POSIX 34 read 18 9 87 724.3686 724.3686 [ 40] + X_POSIX 34 read 19 96 512 724.3686 724.3686 [ 40] + X_POSIX 34 read 20 2064 632 724.3686 724.3687 [ 40] + X_POSIX 34 read 21 136 544 724.3687 724.3687 [ 40] + X_POSIX 34 read 22 680 512 724.3687 724.3687 [ 40] + X_POSIX 34 read 23 1504 328 724.3800 724.3803 [ 40] + X_POSIX 34 read 24 0 8 726.4814 726.6267 [ 40] + X_POSIX 34 read 25 0 9 726.6270 726.6270 [ 40] + X_POSIX 34 read 26 9 87 726.6271 726.6271 [ 40] + X_POSIX 34 read 27 96 512 726.6327 726.6327 [ 40] + X_POSIX 34 read 28 2064 632 726.6350 726.6350 [ 40] + X_POSIX 34 read 29 136 544 726.6368 726.6368 [ 40] + X_POSIX 34 read 30 680 512 726.6377 726.6377 [ 40] + X_POSIX 34 read 31 1504 328 726.6639 726.6639 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 34, hostname: nid00536 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 34 write 0 4362076160 67108864 1498.3051 1498.4442 [ 57] + X_POSIX 34 write 1 12952010752 67108864 1499.1855 1499.3442 [ 57] + X_POSIX 34 write 2 21541945344 67108864 1499.4707 1499.6419 [ 57] + X_POSIX 34 write 3 30131879936 67108864 1501.9024 1502.0751 [ 57] + X_POSIX 34 write 4 38721814528 67108864 1502.2142 1502.4016 [ 57] + X_POSIX 34 write 5 47311749120 67108864 1502.4535 1502.6568 [ 57] + X_POSIX 34 write 6 55901683712 67108864 1503.2023 1503.3371 [ 57] + X_POSIX 34 write 7 64491618304 67108864 1503.3522 1503.5695 [ 57] + X_POSIX 34 write 8 73081552896 67108864 1503.5957 1503.8123 [ 57] + X_POSIX 34 write 9 81671487488 67108864 1503.8658 1504.0499 [ 57] + X_POSIX 34 write 10 90261422080 67108864 1504.0884 1504.2528 [ 57] + X_POSIX 34 write 11 98851356672 67108864 1504.2882 1504.5211 [ 57] + X_POSIX 34 write 12 107441291264 67108864 1504.5371 1504.8299 [ 57] + X_POSIX 34 write 13 116031225856 67108864 1504.8560 1505.1653 [ 57] + X_POSIX 34 write 14 124621160448 67108864 1505.1806 1505.3744 [ 57] + X_POSIX 34 write 15 133211095040 67108864 1505.6877 1505.9322 [ 57] + X_POSIX 34 write 16 141801029632 67108864 1506.0405 1506.1864 [ 57] + X_POSIX 34 write 17 150390964224 67108864 1506.5689 1506.7394 [ 57] + X_POSIX 34 write 18 158980898816 67108864 1506.8174 1506.9712 [ 57] + X_POSIX 34 write 19 167570833408 67108864 1506.9852 1507.2037 [ 57] + X_POSIX 34 write 20 176160768000 67108864 1507.2282 1507.4328 [ 57] + X_POSIX 34 write 21 184750702592 67108864 1507.4454 1507.7066 [ 57] + X_POSIX 34 write 22 193340637184 67108864 1507.7370 1508.0086 [ 57] + X_POSIX 34 write 23 201930571776 67108864 1508.0202 1508.2430 [ 57] + X_POSIX 34 read 0 0 8 1497.1512 1497.2626 [209] + X_POSIX 34 read 1 0 9 1497.2627 1497.2627 [209] + X_POSIX 34 read 2 9 87 1497.2627 1497.2627 [209] + X_POSIX 34 read 3 96 512 1497.2628 1497.2628 [209] + X_POSIX 34 read 4 2064 632 1497.2628 1497.2628 [209] + X_POSIX 34 read 5 136 544 1497.2628 1497.2629 [209] + X_POSIX 34 read 6 680 512 1497.2629 1497.2629 [209] + X_POSIX 34 read 7 1504 328 1497.2881 1497.2885 [209] + X_POSIX 34 read 8 0 8 1497.9774 1497.9968 [209] + X_POSIX 34 read 9 0 9 1497.9999 1497.9999 [209] + X_POSIX 34 read 10 9 87 1498.0002 1498.0002 [209] + X_POSIX 34 read 11 96 512 1498.0056 1498.0056 [209] + X_POSIX 34 read 12 2064 632 1498.0079 1498.0079 [209] + X_POSIX 34 read 13 136 544 1498.0096 1498.0096 [209] + X_POSIX 34 read 14 680 512 1498.0104 1498.0104 [209] + X_POSIX 34 read 15 1504 328 1498.0348 1498.0348 [209] + X_POSIX 34 read 16 0 8 1498.7312 1498.8200 [209] + X_POSIX 34 read 17 0 9 1498.8200 1498.8201 [209] + X_POSIX 34 read 18 9 87 1498.8201 1498.8201 [209] + X_POSIX 34 read 19 96 512 1498.8201 1498.8201 [209] + X_POSIX 34 read 20 2064 632 1498.8201 1498.8202 [209] + X_POSIX 34 read 21 136 544 1498.8202 1498.8202 [209] + X_POSIX 34 read 22 680 512 1498.8202 1498.8202 [209] + X_POSIX 34 read 23 1504 328 1498.8410 1498.8414 [209] + X_POSIX 34 read 24 0 8 1500.6205 1500.7178 [209] + X_POSIX 34 read 25 0 9 1500.7208 1500.7208 [209] + X_POSIX 34 read 26 9 87 1500.7211 1500.7211 [209] + X_POSIX 34 read 27 96 512 1500.7266 1500.7267 [209] + X_POSIX 34 read 28 2064 632 1500.7290 1500.7290 [209] + X_POSIX 34 read 29 136 544 1500.7307 1500.7307 [209] + X_POSIX 34 read 30 680 512 1500.7316 1500.7316 [209] + X_POSIX 34 read 31 1504 328 1500.7553 1500.7553 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 35, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 35 read 0 0 342 1.2870 1.2900 [ 33] + X_POSIX 35 read 1 342 0 1.3018 1.3019 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 35, hostname: nid00536 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 35 write 0 6509559808 67108864 723.6568 723.9206 [141] + X_POSIX 35 write 1 15099494400 67108864 724.7486 724.9346 [141] + X_POSIX 35 write 2 23689428992 67108864 725.0171 725.1505 [141] + X_POSIX 35 write 3 32279363584 67108864 728.0539 728.2145 [141] + X_POSIX 35 write 4 40869298176 67108864 728.2441 728.4843 [141] + X_POSIX 35 write 5 49459232768 67108864 728.5023 728.7572 [141] + X_POSIX 35 write 6 58049167360 67108864 728.7852 729.0066 [141] + X_POSIX 35 write 7 66639101952 67108864 729.0406 729.2084 [141] + X_POSIX 35 write 8 75229036544 67108864 729.2714 729.4263 [141] + X_POSIX 35 write 9 83818971136 67108864 729.4406 729.6430 [141] + X_POSIX 35 write 10 92408905728 67108864 729.6569 729.9433 [141] + X_POSIX 35 write 11 100998840320 67108864 729.9619 730.2164 [141] + X_POSIX 35 write 12 109588774912 67108864 730.2390 730.4647 [141] + X_POSIX 35 write 13 118178709504 67108864 731.3286 731.5005 [141] + X_POSIX 35 write 14 126768644096 67108864 731.5449 731.7864 [141] + X_POSIX 35 write 15 135358578688 67108864 731.8189 732.0326 [141] + X_POSIX 35 write 16 143948513280 67108864 732.1528 732.3161 [141] + X_POSIX 35 write 17 152538447872 67108864 732.5653 732.7146 [141] + X_POSIX 35 write 18 161128382464 67108864 732.8065 732.9655 [141] + X_POSIX 35 write 19 169718317056 67108864 733.0193 733.3443 [141] + X_POSIX 35 write 20 178308251648 67108864 733.4052 733.5756 [141] + X_POSIX 35 write 21 186898186240 67108864 734.1944 734.3507 [141] + X_POSIX 35 write 22 195488120832 67108864 734.3942 734.6270 [141] + X_POSIX 35 write 23 204078055424 67108864 734.6382 734.8752 [141] + X_POSIX 35 write 24 212667990016 67108864 735.0546 735.2298 [141] + X_POSIX 35 write 25 221257924608 67108864 735.2516 735.4423 [141] + X_POSIX 35 write 26 229847859200 67108864 735.4565 735.7054 [141] + X_POSIX 35 write 27 238437793792 67108864 735.7211 735.9206 [141] + X_POSIX 35 write 28 247027728384 67108864 735.9357 736.1960 [141] + X_POSIX 35 read 0 0 8 722.4099 722.5132 [ 40] + X_POSIX 35 read 1 0 9 722.5171 722.5171 [ 40] + X_POSIX 35 read 2 9 87 722.5174 722.5175 [ 40] + X_POSIX 35 read 3 96 512 722.5232 722.5233 [ 40] + X_POSIX 35 read 4 2064 632 722.5256 722.5256 [ 40] + X_POSIX 35 read 5 136 544 722.5273 722.5274 [ 40] + X_POSIX 35 read 6 680 512 722.5282 722.5283 [ 40] + X_POSIX 35 read 7 1504 328 722.5644 722.5644 [ 40] + X_POSIX 35 read 8 0 8 723.3787 723.4009 [ 40] + X_POSIX 35 read 9 0 9 723.4041 723.4041 [ 40] + X_POSIX 35 read 10 9 87 723.4044 723.4044 [ 40] + X_POSIX 35 read 11 96 512 723.4100 723.4101 [ 40] + X_POSIX 35 read 12 2064 632 723.4123 723.4123 [ 40] + X_POSIX 35 read 13 136 544 723.4140 723.4140 [ 40] + X_POSIX 35 read 14 680 512 723.4149 723.4149 [ 40] + X_POSIX 35 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 35 read 16 0 8 724.2776 724.3704 [ 40] + X_POSIX 35 read 17 0 9 724.3704 724.3704 [ 40] + X_POSIX 35 read 18 9 87 724.3704 724.3705 [ 40] + X_POSIX 35 read 19 96 512 724.3705 724.3705 [ 40] + X_POSIX 35 read 20 2064 632 724.3705 724.3705 [ 40] + X_POSIX 35 read 21 136 544 724.3705 724.3706 [ 40] + X_POSIX 35 read 22 680 512 724.3706 724.3706 [ 40] + X_POSIX 35 read 23 1504 328 724.3800 724.3803 [ 40] + X_POSIX 35 read 24 0 8 726.4816 726.6273 [ 40] + X_POSIX 35 read 25 0 9 726.6306 726.6306 [ 40] + X_POSIX 35 read 26 9 87 726.6309 726.6310 [ 40] + X_POSIX 35 read 27 96 512 726.6365 726.6366 [ 40] + X_POSIX 35 read 28 2064 632 726.6389 726.6389 [ 40] + X_POSIX 35 read 29 136 544 726.6407 726.6407 [ 40] + X_POSIX 35 read 30 680 512 726.6416 726.6416 [ 40] + X_POSIX 35 read 31 1504 328 726.6639 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 35, hostname: nid00536 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 35 write 0 6509559808 67108864 1498.3037 1498.4711 [ 65] + X_POSIX 35 write 1 15099494400 67108864 1499.1890 1499.3451 [ 65] + X_POSIX 35 write 2 23689428992 67108864 1499.4536 1499.6019 [ 65] + X_POSIX 35 write 3 32279363584 67108864 1502.1393 1502.3176 [ 65] + X_POSIX 35 write 4 40869298176 67108864 1502.6415 1502.8471 [ 65] + X_POSIX 35 write 5 49459232768 67108864 1503.1412 1503.2925 [ 65] + X_POSIX 35 write 6 58049167360 67108864 1503.4985 1503.6277 [ 65] + X_POSIX 35 write 7 66639101952 67108864 1503.6626 1503.8680 [ 65] + X_POSIX 35 write 8 75229036544 67108864 1503.9066 1504.0924 [ 65] + X_POSIX 35 write 9 83818971136 67108864 1504.1180 1504.3251 [ 65] + X_POSIX 35 write 10 92408905728 67108864 1504.3478 1504.5386 [ 65] + X_POSIX 35 write 11 100998840320 67108864 1504.5523 1504.7929 [ 65] + X_POSIX 35 write 12 109588774912 67108864 1504.8073 1505.0531 [ 65] + X_POSIX 35 write 13 118178709504 67108864 1505.0725 1505.3152 [ 65] + X_POSIX 35 write 14 126768644096 67108864 1505.3614 1505.5733 [ 65] + X_POSIX 35 write 15 135358578688 67108864 1505.6070 1505.7862 [ 65] + X_POSIX 35 write 16 143948513280 67108864 1505.8016 1506.0040 [ 65] + X_POSIX 35 write 17 152538447872 67108864 1506.0216 1506.2737 [ 65] + X_POSIX 35 write 18 161128382464 67108864 1506.7249 1506.8966 [ 65] + X_POSIX 35 write 19 169718317056 67108864 1506.9196 1507.0896 [ 65] + X_POSIX 35 write 20 178308251648 67108864 1507.1045 1507.3253 [ 65] + X_POSIX 35 write 21 186898186240 67108864 1507.3450 1507.5568 [ 65] + X_POSIX 35 write 22 195488120832 67108864 1507.5787 1507.8043 [ 65] + X_POSIX 35 write 23 204078055424 67108864 1507.8218 1508.0236 [ 65] + X_POSIX 35 read 0 0 8 1497.1512 1497.2654 [209] + X_POSIX 35 read 1 0 9 1497.2654 1497.2655 [209] + X_POSIX 35 read 2 9 87 1497.2655 1497.2655 [209] + X_POSIX 35 read 3 96 512 1497.2655 1497.2656 [209] + X_POSIX 35 read 4 2064 632 1497.2656 1497.2656 [209] + X_POSIX 35 read 5 136 544 1497.2656 1497.2656 [209] + X_POSIX 35 read 6 680 512 1497.2656 1497.2656 [209] + X_POSIX 35 read 7 1504 328 1497.2881 1497.2885 [209] + X_POSIX 35 read 8 0 8 1497.9773 1497.9967 [209] + X_POSIX 35 read 9 0 9 1497.9996 1497.9996 [209] + X_POSIX 35 read 10 9 87 1497.9999 1497.9999 [209] + X_POSIX 35 read 11 96 512 1498.0053 1498.0053 [209] + X_POSIX 35 read 12 2064 632 1498.0075 1498.0076 [209] + X_POSIX 35 read 13 136 544 1498.0092 1498.0092 [209] + X_POSIX 35 read 14 680 512 1498.0101 1498.0101 [209] + X_POSIX 35 read 15 1504 328 1498.0345 1498.0345 [209] + X_POSIX 35 read 16 0 8 1498.7312 1498.8172 [209] + X_POSIX 35 read 17 0 9 1498.8172 1498.8172 [209] + X_POSIX 35 read 18 9 87 1498.8172 1498.8172 [209] + X_POSIX 35 read 19 96 512 1498.8172 1498.8173 [209] + X_POSIX 35 read 20 2064 632 1498.8173 1498.8173 [209] + X_POSIX 35 read 21 136 544 1498.8173 1498.8173 [209] + X_POSIX 35 read 22 680 512 1498.8173 1498.8174 [209] + X_POSIX 35 read 23 1504 328 1498.8410 1498.8414 [209] + X_POSIX 35 read 24 0 8 1500.6207 1500.7182 [209] + X_POSIX 35 read 25 0 9 1500.7215 1500.7215 [209] + X_POSIX 35 read 26 9 87 1500.7218 1500.7218 [209] + X_POSIX 35 read 27 96 512 1500.7274 1500.7274 [209] + X_POSIX 35 read 28 2064 632 1500.7300 1500.7300 [209] + X_POSIX 35 read 29 136 544 1500.7317 1500.7318 [209] + X_POSIX 35 read 30 680 512 1500.7326 1500.7326 [209] + X_POSIX 35 read 31 1504 328 1500.7550 1500.7551 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 36, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 36 read 0 0 342 1.3059 1.3059 [ 33] + X_POSIX 36 read 1 342 0 1.3061 1.3062 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 36, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 36 read 0 0 8 722.4099 722.5128 [ 40] + X_POSIX 36 read 1 0 9 722.5165 722.5165 [ 40] + X_POSIX 36 read 2 9 87 722.5168 722.5168 [ 40] + X_POSIX 36 read 3 96 512 722.5225 722.5225 [ 40] + X_POSIX 36 read 4 2064 632 722.5249 722.5249 [ 40] + X_POSIX 36 read 5 136 544 722.5267 722.5267 [ 40] + X_POSIX 36 read 6 680 512 722.5275 722.5276 [ 40] + X_POSIX 36 read 7 1504 328 722.5638 722.5638 [ 40] + X_POSIX 36 read 8 0 8 723.3787 723.4004 [ 40] + X_POSIX 36 read 9 0 9 723.4028 723.4029 [ 40] + X_POSIX 36 read 10 9 87 723.4031 723.4032 [ 40] + X_POSIX 36 read 11 96 512 723.4085 723.4085 [ 40] + X_POSIX 36 read 12 2064 632 723.4107 723.4108 [ 40] + X_POSIX 36 read 13 136 544 723.4124 723.4125 [ 40] + X_POSIX 36 read 14 680 512 723.4133 723.4133 [ 40] + X_POSIX 36 read 15 1504 328 723.4599 723.4599 [ 40] + X_POSIX 36 read 16 0 8 724.2776 724.3701 [ 40] + X_POSIX 36 read 17 0 9 724.3701 724.3701 [ 40] + X_POSIX 36 read 18 9 87 724.3701 724.3702 [ 40] + X_POSIX 36 read 19 96 512 724.3702 724.3702 [ 40] + X_POSIX 36 read 20 2064 632 724.3702 724.3702 [ 40] + X_POSIX 36 read 21 136 544 724.3702 724.3703 [ 40] + X_POSIX 36 read 22 680 512 724.3703 724.3703 [ 40] + X_POSIX 36 read 23 1504 328 724.3800 724.3803 [ 40] + X_POSIX 36 read 24 0 8 726.4814 726.6268 [ 40] + X_POSIX 36 read 25 0 9 726.6282 726.6283 [ 40] + X_POSIX 36 read 26 9 87 726.6286 726.6286 [ 40] + X_POSIX 36 read 27 96 512 726.6341 726.6342 [ 40] + X_POSIX 36 read 28 2064 632 726.6365 726.6365 [ 40] + X_POSIX 36 read 29 136 544 726.6383 726.6384 [ 40] + X_POSIX 36 read 30 680 512 726.6392 726.6392 [ 40] + X_POSIX 36 read 31 1504 328 726.6638 726.6638 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 36, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 36 read 0 0 8 1497.1511 1497.2692 [209] + X_POSIX 36 read 1 0 9 1497.2692 1497.2693 [209] + X_POSIX 36 read 2 9 87 1497.2693 1497.2693 [209] + X_POSIX 36 read 3 96 512 1497.2694 1497.2694 [209] + X_POSIX 36 read 4 2064 632 1497.2694 1497.2695 [209] + X_POSIX 36 read 5 136 544 1497.2695 1497.2695 [209] + X_POSIX 36 read 6 680 512 1497.2695 1497.2695 [209] + X_POSIX 36 read 7 1504 328 1497.2881 1497.2884 [209] + X_POSIX 36 read 8 0 8 1497.9773 1497.9967 [209] + X_POSIX 36 read 9 0 9 1497.9994 1497.9995 [209] + X_POSIX 36 read 10 9 87 1497.9997 1497.9998 [209] + X_POSIX 36 read 11 96 512 1498.0051 1498.0051 [209] + X_POSIX 36 read 12 2064 632 1498.0073 1498.0074 [209] + X_POSIX 36 read 13 136 544 1498.0090 1498.0091 [209] + X_POSIX 36 read 14 680 512 1498.0099 1498.0099 [209] + X_POSIX 36 read 15 1504 328 1498.0347 1498.0347 [209] + X_POSIX 36 read 16 0 8 1498.7312 1498.8169 [209] + X_POSIX 36 read 17 0 9 1498.8169 1498.8169 [209] + X_POSIX 36 read 18 9 87 1498.8169 1498.8170 [209] + X_POSIX 36 read 19 96 512 1498.8170 1498.8170 [209] + X_POSIX 36 read 20 2064 632 1498.8170 1498.8170 [209] + X_POSIX 36 read 21 136 544 1498.8170 1498.8170 [209] + X_POSIX 36 read 22 680 512 1498.8171 1498.8171 [209] + X_POSIX 36 read 23 1504 328 1498.8410 1498.8414 [209] + X_POSIX 36 read 24 0 8 1500.6207 1500.7182 [209] + X_POSIX 36 read 25 0 9 1500.7214 1500.7214 [209] + X_POSIX 36 read 26 9 87 1500.7217 1500.7217 [209] + X_POSIX 36 read 27 96 512 1500.7273 1500.7273 [209] + X_POSIX 36 read 28 2064 632 1500.7296 1500.7296 [209] + X_POSIX 36 read 29 136 544 1500.7314 1500.7314 [209] + X_POSIX 36 read 30 680 512 1500.7322 1500.7323 [209] + X_POSIX 36 read 31 1504 328 1500.7549 1500.7549 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 37, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 37 read 0 0 342 1.3022 1.3022 [ 33] + X_POSIX 37 read 1 342 0 1.3024 1.3024 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 37, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 37 read 0 0 8 722.4097 722.5128 [ 40] + X_POSIX 37 read 1 0 9 722.5165 722.5165 [ 40] + X_POSIX 37 read 2 9 87 722.5168 722.5169 [ 40] + X_POSIX 37 read 3 96 512 722.5226 722.5227 [ 40] + X_POSIX 37 read 4 2064 632 722.5250 722.5250 [ 40] + X_POSIX 37 read 5 136 544 722.5268 722.5268 [ 40] + X_POSIX 37 read 6 680 512 722.5277 722.5277 [ 40] + X_POSIX 37 read 7 1504 328 722.5637 722.5637 [ 40] + X_POSIX 37 read 8 0 8 723.3784 723.4007 [ 40] + X_POSIX 37 read 9 0 9 723.4038 723.4039 [ 40] + X_POSIX 37 read 10 9 87 723.4041 723.4042 [ 40] + X_POSIX 37 read 11 96 512 723.4095 723.4096 [ 40] + X_POSIX 37 read 12 2064 632 723.4118 723.4118 [ 40] + X_POSIX 37 read 13 136 544 723.4135 723.4135 [ 40] + X_POSIX 37 read 14 680 512 723.4144 723.4144 [ 40] + X_POSIX 37 read 15 1504 328 723.4598 723.4598 [ 40] + X_POSIX 37 read 16 0 8 724.2774 724.3705 [ 40] + X_POSIX 37 read 17 0 9 724.3705 724.3706 [ 40] + X_POSIX 37 read 18 9 87 724.3706 724.3706 [ 40] + X_POSIX 37 read 19 96 512 724.3706 724.3706 [ 40] + X_POSIX 37 read 20 2064 632 724.3706 724.3707 [ 40] + X_POSIX 37 read 21 136 544 724.3707 724.3707 [ 40] + X_POSIX 37 read 22 680 512 724.3707 724.3707 [ 40] + X_POSIX 37 read 23 1504 328 724.3798 724.3802 [ 40] + X_POSIX 37 read 24 0 8 726.4813 726.6269 [ 40] + X_POSIX 37 read 25 0 9 726.6300 726.6300 [ 40] + X_POSIX 37 read 26 9 87 726.6303 726.6303 [ 40] + X_POSIX 37 read 27 96 512 726.6360 726.6360 [ 40] + X_POSIX 37 read 28 2064 632 726.6383 726.6384 [ 40] + X_POSIX 37 read 29 136 544 726.6401 726.6401 [ 40] + X_POSIX 37 read 30 680 512 726.6409 726.6410 [ 40] + X_POSIX 37 read 31 1504 328 726.6637 726.6637 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 37, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 37 read 0 0 8 1497.1510 1497.2624 [209] + X_POSIX 37 read 1 0 9 1497.2625 1497.2625 [209] + X_POSIX 37 read 2 9 87 1497.2625 1497.2625 [209] + X_POSIX 37 read 3 96 512 1497.2625 1497.2626 [209] + X_POSIX 37 read 4 2064 632 1497.2626 1497.2626 [209] + X_POSIX 37 read 5 136 544 1497.2626 1497.2626 [209] + X_POSIX 37 read 6 680 512 1497.2626 1497.2627 [209] + X_POSIX 37 read 7 1504 328 1497.2879 1497.2882 [209] + X_POSIX 37 read 8 0 8 1497.9772 1497.9966 [209] + X_POSIX 37 read 9 0 9 1497.9995 1497.9995 [209] + X_POSIX 37 read 10 9 87 1497.9998 1497.9999 [209] + X_POSIX 37 read 11 96 512 1498.0052 1498.0052 [209] + X_POSIX 37 read 12 2064 632 1498.0075 1498.0075 [209] + X_POSIX 37 read 13 136 544 1498.0092 1498.0092 [209] + X_POSIX 37 read 14 680 512 1498.0100 1498.0101 [209] + X_POSIX 37 read 15 1504 328 1498.0343 1498.0343 [209] + X_POSIX 37 read 16 0 8 1498.7311 1498.8178 [209] + X_POSIX 37 read 17 0 9 1498.8178 1498.8178 [209] + X_POSIX 37 read 18 9 87 1498.8178 1498.8178 [209] + X_POSIX 37 read 19 96 512 1498.8179 1498.8179 [209] + X_POSIX 37 read 20 2064 632 1498.8179 1498.8179 [209] + X_POSIX 37 read 21 136 544 1498.8179 1498.8179 [209] + X_POSIX 37 read 22 680 512 1498.8179 1498.8180 [209] + X_POSIX 37 read 23 1504 328 1498.8409 1498.8412 [209] + X_POSIX 37 read 24 0 8 1500.6205 1500.7181 [209] + X_POSIX 37 read 25 0 9 1500.7213 1500.7213 [209] + X_POSIX 37 read 26 9 87 1500.7216 1500.7216 [209] + X_POSIX 37 read 27 96 512 1500.7272 1500.7272 [209] + X_POSIX 37 read 28 2064 632 1500.7295 1500.7295 [209] + X_POSIX 37 read 29 136 544 1500.7312 1500.7312 [209] + X_POSIX 37 read 30 680 512 1500.7321 1500.7321 [209] + X_POSIX 37 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 38, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 38 read 0 0 342 1.3049 1.3050 [ 33] + X_POSIX 38 read 1 342 0 1.3058 1.3058 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 38, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 38 read 0 0 8 722.4096 722.5132 [ 40] + X_POSIX 38 read 1 0 9 722.5171 722.5171 [ 40] + X_POSIX 38 read 2 9 87 722.5174 722.5174 [ 40] + X_POSIX 38 read 3 96 512 722.5232 722.5232 [ 40] + X_POSIX 38 read 4 2064 632 722.5255 722.5255 [ 40] + X_POSIX 38 read 5 136 544 722.5273 722.5273 [ 40] + X_POSIX 38 read 6 680 512 722.5281 722.5282 [ 40] + X_POSIX 38 read 7 1504 328 722.5639 722.5640 [ 40] + X_POSIX 38 read 8 0 8 723.3786 723.4005 [ 40] + X_POSIX 38 read 9 0 9 723.4034 723.4035 [ 40] + X_POSIX 38 read 10 9 87 723.4037 723.4038 [ 40] + X_POSIX 38 read 11 96 512 723.4091 723.4092 [ 40] + X_POSIX 38 read 12 2064 632 723.4114 723.4114 [ 40] + X_POSIX 38 read 13 136 544 723.4131 723.4131 [ 40] + X_POSIX 38 read 14 680 512 723.4139 723.4139 [ 40] + X_POSIX 38 read 15 1504 328 723.4598 723.4599 [ 40] + X_POSIX 38 read 16 0 8 724.2774 724.3723 [ 40] + X_POSIX 38 read 17 0 9 724.3723 724.3723 [ 40] + X_POSIX 38 read 18 9 87 724.3723 724.3724 [ 40] + X_POSIX 38 read 19 96 512 724.3724 724.3724 [ 40] + X_POSIX 38 read 20 2064 632 724.3724 724.3724 [ 40] + X_POSIX 38 read 21 136 544 724.3724 724.3724 [ 40] + X_POSIX 38 read 22 680 512 724.3724 724.3725 [ 40] + X_POSIX 38 read 23 1504 328 724.3798 724.3802 [ 40] + X_POSIX 38 read 24 0 8 726.4814 726.6271 [ 40] + X_POSIX 38 read 25 0 9 726.6304 726.6304 [ 40] + X_POSIX 38 read 26 9 87 726.6307 726.6307 [ 40] + X_POSIX 38 read 27 96 512 726.6363 726.6363 [ 40] + X_POSIX 38 read 28 2064 632 726.6387 726.6387 [ 40] + X_POSIX 38 read 29 136 544 726.6404 726.6404 [ 40] + X_POSIX 38 read 30 680 512 726.6413 726.6413 [ 40] + X_POSIX 38 read 31 1504 328 726.6636 726.6637 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 38, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 38 read 0 0 8 1497.1510 1497.2655 [209] + X_POSIX 38 read 1 0 9 1497.2656 1497.2656 [209] + X_POSIX 38 read 2 9 87 1497.2656 1497.2657 [209] + X_POSIX 38 read 3 96 512 1497.2657 1497.2657 [209] + X_POSIX 38 read 4 2064 632 1497.2657 1497.2658 [209] + X_POSIX 38 read 5 136 544 1497.2658 1497.2658 [209] + X_POSIX 38 read 6 680 512 1497.2658 1497.2658 [209] + X_POSIX 38 read 7 1504 328 1497.2879 1497.2883 [209] + X_POSIX 38 read 8 0 8 1497.9770 1497.9965 [209] + X_POSIX 38 read 9 0 9 1497.9984 1497.9984 [209] + X_POSIX 38 read 10 9 87 1497.9987 1497.9987 [209] + X_POSIX 38 read 11 96 512 1498.0040 1498.0041 [209] + X_POSIX 38 read 12 2064 632 1498.0063 1498.0063 [209] + X_POSIX 38 read 13 136 544 1498.0080 1498.0080 [209] + X_POSIX 38 read 14 680 512 1498.0089 1498.0089 [209] + X_POSIX 38 read 15 1504 328 1498.0343 1498.0343 [209] + X_POSIX 38 read 16 0 8 1498.7311 1498.8159 [209] + X_POSIX 38 read 17 0 9 1498.8159 1498.8159 [209] + X_POSIX 38 read 18 9 87 1498.8159 1498.8160 [209] + X_POSIX 38 read 19 96 512 1498.8160 1498.8160 [209] + X_POSIX 38 read 20 2064 632 1498.8160 1498.8161 [209] + X_POSIX 38 read 21 136 544 1498.8161 1498.8161 [209] + X_POSIX 38 read 22 680 512 1498.8161 1498.8162 [209] + X_POSIX 38 read 23 1504 328 1498.8409 1498.8412 [209] + X_POSIX 38 read 24 0 8 1500.6205 1500.7179 [209] + X_POSIX 38 read 25 0 9 1500.7214 1500.7214 [209] + X_POSIX 38 read 26 9 87 1500.7217 1500.7217 [209] + X_POSIX 38 read 27 96 512 1500.7273 1500.7273 [209] + X_POSIX 38 read 28 2064 632 1500.7296 1500.7296 [209] + X_POSIX 38 read 29 136 544 1500.7313 1500.7313 [209] + X_POSIX 38 read 30 680 512 1500.7321 1500.7322 [209] + X_POSIX 38 read 31 1504 328 1500.7545 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 39, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 39 read 0 0 342 1.2944 1.2944 [ 33] + X_POSIX 39 read 1 342 0 1.3015 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 39, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 39 read 0 0 8 722.4096 722.5130 [ 40] + X_POSIX 39 read 1 0 9 722.5169 722.5169 [ 40] + X_POSIX 39 read 2 9 87 722.5172 722.5172 [ 40] + X_POSIX 39 read 3 96 512 722.5230 722.5230 [ 40] + X_POSIX 39 read 4 2064 632 722.5253 722.5253 [ 40] + X_POSIX 39 read 5 136 544 722.5271 722.5271 [ 40] + X_POSIX 39 read 6 680 512 722.5279 722.5280 [ 40] + X_POSIX 39 read 7 1504 328 722.5635 722.5635 [ 40] + X_POSIX 39 read 8 0 8 723.3786 723.4007 [ 40] + X_POSIX 39 read 9 0 9 723.4038 723.4039 [ 40] + X_POSIX 39 read 10 9 87 723.4041 723.4042 [ 40] + X_POSIX 39 read 11 96 512 723.4095 723.4096 [ 40] + X_POSIX 39 read 12 2064 632 723.4118 723.4119 [ 40] + X_POSIX 39 read 13 136 544 723.4135 723.4136 [ 40] + X_POSIX 39 read 14 680 512 723.4144 723.4144 [ 40] + X_POSIX 39 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 39 read 16 0 8 724.2773 724.3729 [ 40] + X_POSIX 39 read 17 0 9 724.3729 724.3730 [ 40] + X_POSIX 39 read 18 9 87 724.3730 724.3730 [ 40] + X_POSIX 39 read 19 96 512 724.3730 724.3730 [ 40] + X_POSIX 39 read 20 2064 632 724.3730 724.3731 [ 40] + X_POSIX 39 read 21 136 544 724.3731 724.3731 [ 40] + X_POSIX 39 read 22 680 512 724.3731 724.3731 [ 40] + X_POSIX 39 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 39 read 24 0 8 726.4810 726.6266 [ 40] + X_POSIX 39 read 25 0 9 726.6293 726.6293 [ 40] + X_POSIX 39 read 26 9 87 726.6296 726.6296 [ 40] + X_POSIX 39 read 27 96 512 726.6353 726.6353 [ 40] + X_POSIX 39 read 28 2064 632 726.6376 726.6376 [ 40] + X_POSIX 39 read 29 136 544 726.6394 726.6394 [ 40] + X_POSIX 39 read 30 680 512 726.6403 726.6403 [ 40] + X_POSIX 39 read 31 1504 328 726.6638 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 39, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 39 read 0 0 8 1497.1509 1497.2663 [209] + X_POSIX 39 read 1 0 9 1497.2663 1497.2664 [209] + X_POSIX 39 read 2 9 87 1497.2664 1497.2664 [209] + X_POSIX 39 read 3 96 512 1497.2664 1497.2664 [209] + X_POSIX 39 read 4 2064 632 1497.2664 1497.2665 [209] + X_POSIX 39 read 5 136 544 1497.2665 1497.2665 [209] + X_POSIX 39 read 6 680 512 1497.2665 1497.2666 [209] + X_POSIX 39 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 39 read 8 0 8 1497.9771 1497.9965 [209] + X_POSIX 39 read 9 0 9 1497.9996 1497.9996 [209] + X_POSIX 39 read 10 9 87 1497.9999 1497.9999 [209] + X_POSIX 39 read 11 96 512 1498.0053 1498.0053 [209] + X_POSIX 39 read 12 2064 632 1498.0076 1498.0076 [209] + X_POSIX 39 read 13 136 544 1498.0093 1498.0093 [209] + X_POSIX 39 read 14 680 512 1498.0101 1498.0102 [209] + X_POSIX 39 read 15 1504 328 1498.0345 1498.0346 [209] + X_POSIX 39 read 16 0 8 1498.7310 1498.8156 [209] + X_POSIX 39 read 17 0 9 1498.8156 1498.8157 [209] + X_POSIX 39 read 18 9 87 1498.8157 1498.8158 [209] + X_POSIX 39 read 19 96 512 1498.8158 1498.8158 [209] + X_POSIX 39 read 20 2064 632 1498.8158 1498.8159 [209] + X_POSIX 39 read 21 136 544 1498.8159 1498.8159 [209] + X_POSIX 39 read 22 680 512 1498.8159 1498.8160 [209] + X_POSIX 39 read 23 1504 328 1498.8408 1498.8411 [209] + X_POSIX 39 read 24 0 8 1500.6203 1500.7173 [209] + X_POSIX 39 read 25 0 9 1500.7180 1500.7181 [209] + X_POSIX 39 read 26 9 87 1500.7184 1500.7184 [209] + X_POSIX 39 read 27 96 512 1500.7239 1500.7239 [209] + X_POSIX 39 read 28 2064 632 1500.7263 1500.7263 [209] + X_POSIX 39 read 29 136 544 1500.7280 1500.7281 [209] + X_POSIX 39 read 30 680 512 1500.7289 1500.7290 [209] + X_POSIX 39 read 31 1504 328 1500.7545 1500.7545 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 40, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 40 read 0 0 342 1.3030 1.3030 [ 33] + X_POSIX 40 read 1 342 0 1.3031 1.3031 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 40, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 40 read 0 0 8 722.4097 722.5133 [ 40] + X_POSIX 40 read 1 0 9 722.5171 722.5172 [ 40] + X_POSIX 40 read 2 9 87 722.5175 722.5175 [ 40] + X_POSIX 40 read 3 96 512 722.5232 722.5232 [ 40] + X_POSIX 40 read 4 2064 632 722.5255 722.5256 [ 40] + X_POSIX 40 read 5 136 544 722.5273 722.5273 [ 40] + X_POSIX 40 read 6 680 512 722.5282 722.5282 [ 40] + X_POSIX 40 read 7 1504 328 722.5636 722.5636 [ 40] + X_POSIX 40 read 8 0 8 723.3783 723.4005 [ 40] + X_POSIX 40 read 9 0 9 723.4035 723.4035 [ 40] + X_POSIX 40 read 10 9 87 723.4038 723.4039 [ 40] + X_POSIX 40 read 11 96 512 723.4092 723.4092 [ 40] + X_POSIX 40 read 12 2064 632 723.4115 723.4115 [ 40] + X_POSIX 40 read 13 136 544 723.4131 723.4132 [ 40] + X_POSIX 40 read 14 680 512 723.4140 723.4140 [ 40] + X_POSIX 40 read 15 1504 328 723.4598 723.4598 [ 40] + X_POSIX 40 read 16 0 8 724.2775 724.3696 [ 40] + X_POSIX 40 read 17 0 9 724.3696 724.3697 [ 40] + X_POSIX 40 read 18 9 87 724.3697 724.3697 [ 40] + X_POSIX 40 read 19 96 512 724.3697 724.3697 [ 40] + X_POSIX 40 read 20 2064 632 724.3697 724.3698 [ 40] + X_POSIX 40 read 21 136 544 724.3698 724.3698 [ 40] + X_POSIX 40 read 22 680 512 724.3698 724.3698 [ 40] + X_POSIX 40 read 23 1504 328 724.3799 724.3802 [ 40] + X_POSIX 40 read 24 0 8 726.4813 726.6266 [ 40] + X_POSIX 40 read 25 0 9 726.6270 726.6270 [ 40] + X_POSIX 40 read 26 9 87 726.6272 726.6272 [ 40] + X_POSIX 40 read 27 96 512 726.6328 726.6328 [ 40] + X_POSIX 40 read 28 2064 632 726.6352 726.6352 [ 40] + X_POSIX 40 read 29 136 544 726.6369 726.6369 [ 40] + X_POSIX 40 read 30 680 512 726.6378 726.6379 [ 40] + X_POSIX 40 read 31 1504 328 726.6637 726.6638 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 40, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 40 read 0 0 8 1497.1510 1497.2664 [209] + X_POSIX 40 read 1 0 9 1497.2665 1497.2665 [209] + X_POSIX 40 read 2 9 87 1497.2665 1497.2665 [209] + X_POSIX 40 read 3 96 512 1497.2666 1497.2666 [209] + X_POSIX 40 read 4 2064 632 1497.2666 1497.2666 [209] + X_POSIX 40 read 5 136 544 1497.2666 1497.2667 [209] + X_POSIX 40 read 6 680 512 1497.2667 1497.2667 [209] + X_POSIX 40 read 7 1504 328 1497.2880 1497.2883 [209] + X_POSIX 40 read 8 0 8 1497.9772 1497.9966 [209] + X_POSIX 40 read 9 0 9 1497.9993 1497.9993 [209] + X_POSIX 40 read 10 9 87 1497.9996 1497.9996 [209] + X_POSIX 40 read 11 96 512 1498.0049 1498.0050 [209] + X_POSIX 40 read 12 2064 632 1498.0072 1498.0072 [209] + X_POSIX 40 read 13 136 544 1498.0089 1498.0089 [209] + X_POSIX 40 read 14 680 512 1498.0098 1498.0098 [209] + X_POSIX 40 read 15 1504 328 1498.0343 1498.0343 [209] + X_POSIX 40 read 16 0 8 1498.7311 1498.8172 [209] + X_POSIX 40 read 17 0 9 1498.8172 1498.8173 [209] + X_POSIX 40 read 18 9 87 1498.8173 1498.8173 [209] + X_POSIX 40 read 19 96 512 1498.8173 1498.8173 [209] + X_POSIX 40 read 20 2064 632 1498.8173 1498.8174 [209] + X_POSIX 40 read 21 136 544 1498.8174 1498.8174 [209] + X_POSIX 40 read 22 680 512 1498.8174 1498.8174 [209] + X_POSIX 40 read 23 1504 328 1498.8409 1498.8413 [209] + X_POSIX 40 read 24 0 8 1500.6206 1500.7179 [209] + X_POSIX 40 read 25 0 9 1500.7210 1500.7210 [209] + X_POSIX 40 read 26 9 87 1500.7213 1500.7214 [209] + X_POSIX 40 read 27 96 512 1500.7269 1500.7269 [209] + X_POSIX 40 read 28 2064 632 1500.7292 1500.7292 [209] + X_POSIX 40 read 29 136 544 1500.7309 1500.7310 [209] + X_POSIX 40 read 30 680 512 1500.7318 1500.7318 [209] + X_POSIX 40 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 41, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 41 read 0 0 342 1.2869 1.2899 [ 33] + X_POSIX 41 read 1 342 0 1.3017 1.3018 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 41, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 41 read 0 0 8 722.4098 722.5131 [ 40] + X_POSIX 41 read 1 0 9 722.5170 722.5170 [ 40] + X_POSIX 41 read 2 9 87 722.5173 722.5173 [ 40] + X_POSIX 41 read 3 96 512 722.5231 722.5231 [ 40] + X_POSIX 41 read 4 2064 632 722.5254 722.5255 [ 40] + X_POSIX 41 read 5 136 544 722.5272 722.5272 [ 40] + X_POSIX 41 read 6 680 512 722.5281 722.5281 [ 40] + X_POSIX 41 read 7 1504 328 722.5637 722.5638 [ 40] + X_POSIX 41 read 8 0 8 723.3787 723.4010 [ 40] + X_POSIX 41 read 9 0 9 723.4044 723.4044 [ 40] + X_POSIX 41 read 10 9 87 723.4047 723.4047 [ 40] + X_POSIX 41 read 11 96 512 723.4100 723.4101 [ 40] + X_POSIX 41 read 12 2064 632 723.4123 723.4123 [ 40] + X_POSIX 41 read 13 136 544 723.4140 723.4140 [ 40] + X_POSIX 41 read 14 680 512 723.4149 723.4149 [ 40] + X_POSIX 41 read 15 1504 328 723.4602 723.4602 [ 40] + X_POSIX 41 read 16 0 8 724.2775 724.3728 [ 40] + X_POSIX 41 read 17 0 9 724.3728 724.3729 [ 40] + X_POSIX 41 read 18 9 87 724.3729 724.3729 [ 40] + X_POSIX 41 read 19 96 512 724.3729 724.3729 [ 40] + X_POSIX 41 read 20 2064 632 724.3729 724.3729 [ 40] + X_POSIX 41 read 21 136 544 724.3730 724.3730 [ 40] + X_POSIX 41 read 22 680 512 724.3730 724.3730 [ 40] + X_POSIX 41 read 23 1504 328 724.3799 724.3803 [ 40] + X_POSIX 41 read 24 0 8 726.4815 726.6273 [ 40] + X_POSIX 41 read 25 0 9 726.6306 726.6306 [ 40] + X_POSIX 41 read 26 9 87 726.6309 726.6309 [ 40] + X_POSIX 41 read 27 96 512 726.6365 726.6365 [ 40] + X_POSIX 41 read 28 2064 632 726.6388 726.6389 [ 40] + X_POSIX 41 read 29 136 544 726.6406 726.6406 [ 40] + X_POSIX 41 read 30 680 512 726.6415 726.6415 [ 40] + X_POSIX 41 read 31 1504 328 726.6640 726.6642 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 41, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 41 read 0 0 8 1497.1511 1497.2665 [209] + X_POSIX 41 read 1 0 9 1497.2665 1497.2666 [209] + X_POSIX 41 read 2 9 87 1497.2666 1497.2666 [209] + X_POSIX 41 read 3 96 512 1497.2666 1497.2666 [209] + X_POSIX 41 read 4 2064 632 1497.2666 1497.2667 [209] + X_POSIX 41 read 5 136 544 1497.2667 1497.2667 [209] + X_POSIX 41 read 6 680 512 1497.2667 1497.2667 [209] + X_POSIX 41 read 7 1504 328 1497.2880 1497.2884 [209] + X_POSIX 41 read 8 0 8 1497.9772 1497.9969 [209] + X_POSIX 41 read 9 0 9 1498.0000 1498.0001 [209] + X_POSIX 41 read 10 9 87 1498.0003 1498.0004 [209] + X_POSIX 41 read 11 96 512 1498.0057 1498.0058 [209] + X_POSIX 41 read 12 2064 632 1498.0080 1498.0080 [209] + X_POSIX 41 read 13 136 544 1498.0097 1498.0097 [209] + X_POSIX 41 read 14 680 512 1498.0106 1498.0106 [209] + X_POSIX 41 read 15 1504 328 1498.0347 1498.0348 [209] + X_POSIX 41 read 16 0 8 1498.7312 1498.8159 [209] + X_POSIX 41 read 17 0 9 1498.8159 1498.8160 [209] + X_POSIX 41 read 18 9 87 1498.8160 1498.8160 [209] + X_POSIX 41 read 19 96 512 1498.8160 1498.8161 [209] + X_POSIX 41 read 20 2064 632 1498.8161 1498.8161 [209] + X_POSIX 41 read 21 136 544 1498.8161 1498.8162 [209] + X_POSIX 41 read 22 680 512 1498.8162 1498.8162 [209] + X_POSIX 41 read 23 1504 328 1498.8410 1498.8413 [209] + X_POSIX 41 read 24 0 8 1500.6205 1500.7177 [209] + X_POSIX 41 read 25 0 9 1500.7206 1500.7207 [209] + X_POSIX 41 read 26 9 87 1500.7209 1500.7210 [209] + X_POSIX 41 read 27 96 512 1500.7265 1500.7265 [209] + X_POSIX 41 read 28 2064 632 1500.7288 1500.7288 [209] + X_POSIX 41 read 29 136 544 1500.7305 1500.7306 [209] + X_POSIX 41 read 30 680 512 1500.7314 1500.7314 [209] + X_POSIX 41 read 31 1504 328 1500.7547 1500.7547 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 42, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 42 read 0 0 342 1.2940 1.2941 [ 33] + X_POSIX 42 read 1 342 0 1.3015 1.3015 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 42, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 42 read 0 0 8 722.4097 722.5131 [ 40] + X_POSIX 42 read 1 0 9 722.5170 722.5171 [ 40] + X_POSIX 42 read 2 9 87 722.5174 722.5174 [ 40] + X_POSIX 42 read 3 96 512 722.5231 722.5231 [ 40] + X_POSIX 42 read 4 2064 632 722.5254 722.5255 [ 40] + X_POSIX 42 read 5 136 544 722.5272 722.5272 [ 40] + X_POSIX 42 read 6 680 512 722.5281 722.5282 [ 40] + X_POSIX 42 read 7 1504 328 722.5637 722.5638 [ 40] + X_POSIX 42 read 8 0 8 723.3782 723.4003 [ 40] + X_POSIX 42 read 9 0 9 723.4029 723.4029 [ 40] + X_POSIX 42 read 10 9 87 723.4032 723.4032 [ 40] + X_POSIX 42 read 11 96 512 723.4085 723.4086 [ 40] + X_POSIX 42 read 12 2064 632 723.4108 723.4108 [ 40] + X_POSIX 42 read 13 136 544 723.4125 723.4125 [ 40] + X_POSIX 42 read 14 680 512 723.4133 723.4134 [ 40] + X_POSIX 42 read 15 1504 328 723.4597 723.4598 [ 40] + X_POSIX 42 read 16 0 8 724.2773 724.3698 [ 40] + X_POSIX 42 read 17 0 9 724.3698 724.3699 [ 40] + X_POSIX 42 read 18 9 87 724.3699 724.3699 [ 40] + X_POSIX 42 read 19 96 512 724.3699 724.3699 [ 40] + X_POSIX 42 read 20 2064 632 724.3699 724.3700 [ 40] + X_POSIX 42 read 21 136 544 724.3700 724.3700 [ 40] + X_POSIX 42 read 22 680 512 724.3700 724.3700 [ 40] + X_POSIX 42 read 23 1504 328 724.3798 724.3801 [ 40] + X_POSIX 42 read 24 0 8 726.4811 726.6267 [ 40] + X_POSIX 42 read 25 0 9 726.6292 726.6293 [ 40] + X_POSIX 42 read 26 9 87 726.6296 726.6296 [ 40] + X_POSIX 42 read 27 96 512 726.6351 726.6351 [ 40] + X_POSIX 42 read 28 2064 632 726.6375 726.6375 [ 40] + X_POSIX 42 read 29 136 544 726.6392 726.6393 [ 40] + X_POSIX 42 read 30 680 512 726.6401 726.6401 [ 40] + X_POSIX 42 read 31 1504 328 726.6636 726.6636 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 42, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 42 read 0 0 8 1497.1507 1497.2689 [209] + X_POSIX 42 read 1 0 9 1497.2690 1497.2690 [209] + X_POSIX 42 read 2 9 87 1497.2690 1497.2691 [209] + X_POSIX 42 read 3 96 512 1497.2691 1497.2691 [209] + X_POSIX 42 read 4 2064 632 1497.2691 1497.2692 [209] + X_POSIX 42 read 5 136 544 1497.2692 1497.2692 [209] + X_POSIX 42 read 6 680 512 1497.2692 1497.2693 [209] + X_POSIX 42 read 7 1504 328 1497.2879 1497.2881 [209] + X_POSIX 42 read 8 0 8 1497.9772 1497.9967 [209] + X_POSIX 42 read 9 0 9 1497.9998 1497.9998 [209] + X_POSIX 42 read 10 9 87 1498.0000 1498.0001 [209] + X_POSIX 42 read 11 96 512 1498.0054 1498.0054 [209] + X_POSIX 42 read 12 2064 632 1498.0077 1498.0077 [209] + X_POSIX 42 read 13 136 544 1498.0094 1498.0094 [209] + X_POSIX 42 read 14 680 512 1498.0103 1498.0103 [209] + X_POSIX 42 read 15 1504 328 1498.0346 1498.0346 [209] + X_POSIX 42 read 16 0 8 1498.7310 1498.8167 [209] + X_POSIX 42 read 17 0 9 1498.8167 1498.8167 [209] + X_POSIX 42 read 18 9 87 1498.8167 1498.8168 [209] + X_POSIX 42 read 19 96 512 1498.8168 1498.8168 [209] + X_POSIX 42 read 20 2064 632 1498.8168 1498.8168 [209] + X_POSIX 42 read 21 136 544 1498.8168 1498.8169 [209] + X_POSIX 42 read 22 680 512 1498.8169 1498.8169 [209] + X_POSIX 42 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 42 read 24 0 8 1500.6205 1500.7179 [209] + X_POSIX 42 read 25 0 9 1500.7211 1500.7212 [209] + X_POSIX 42 read 26 9 87 1500.7214 1500.7215 [209] + X_POSIX 42 read 27 96 512 1500.7270 1500.7271 [209] + X_POSIX 42 read 28 2064 632 1500.7293 1500.7293 [209] + X_POSIX 42 read 29 136 544 1500.7310 1500.7311 [209] + X_POSIX 42 read 30 680 512 1500.7319 1500.7319 [209] + X_POSIX 42 read 31 1504 328 1500.7545 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 43, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 43 read 0 0 342 1.2992 1.2992 [ 33] + X_POSIX 43 read 1 342 0 1.3017 1.3018 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 43, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 43 read 0 0 8 722.4098 722.5127 [ 40] + X_POSIX 43 read 1 0 9 722.5163 722.5163 [ 40] + X_POSIX 43 read 2 9 87 722.5166 722.5166 [ 40] + X_POSIX 43 read 3 96 512 722.5223 722.5224 [ 40] + X_POSIX 43 read 4 2064 632 722.5247 722.5247 [ 40] + X_POSIX 43 read 5 136 544 722.5265 722.5265 [ 40] + X_POSIX 43 read 6 680 512 722.5274 722.5274 [ 40] + X_POSIX 43 read 7 1504 328 722.5640 722.5641 [ 40] + X_POSIX 43 read 8 0 8 723.3789 723.4010 [ 40] + X_POSIX 43 read 9 0 9 723.4041 723.4042 [ 40] + X_POSIX 43 read 10 9 87 723.4044 723.4045 [ 40] + X_POSIX 43 read 11 96 512 723.4098 723.4099 [ 40] + X_POSIX 43 read 12 2064 632 723.4121 723.4121 [ 40] + X_POSIX 43 read 13 136 544 723.4138 723.4138 [ 40] + X_POSIX 43 read 14 680 512 723.4147 723.4147 [ 40] + X_POSIX 43 read 15 1504 328 723.4605 723.4606 [ 40] + X_POSIX 43 read 16 0 8 724.2775 724.3673 [ 40] + X_POSIX 43 read 17 0 9 724.3673 724.3673 [ 40] + X_POSIX 43 read 18 9 87 724.3673 724.3673 [ 40] + X_POSIX 43 read 19 96 512 724.3673 724.3674 [ 40] + X_POSIX 43 read 20 2064 632 724.3674 724.3674 [ 40] + X_POSIX 43 read 21 136 544 724.3674 724.3674 [ 40] + X_POSIX 43 read 22 680 512 724.3674 724.3674 [ 40] + X_POSIX 43 read 23 1504 328 724.3799 724.3803 [ 40] + X_POSIX 43 read 24 0 8 726.4815 726.6272 [ 40] + X_POSIX 43 read 25 0 9 726.6305 726.6306 [ 40] + X_POSIX 43 read 26 9 87 726.6309 726.6309 [ 40] + X_POSIX 43 read 27 96 512 726.6364 726.6365 [ 40] + X_POSIX 43 read 28 2064 632 726.6388 726.6389 [ 40] + X_POSIX 43 read 29 136 544 726.6406 726.6406 [ 40] + X_POSIX 43 read 30 680 512 726.6415 726.6415 [ 40] + X_POSIX 43 read 31 1504 328 726.6640 726.6642 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 43, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 43 read 0 0 8 1497.1510 1497.2665 [209] + X_POSIX 43 read 1 0 9 1497.2665 1497.2666 [209] + X_POSIX 43 read 2 9 87 1497.2666 1497.2666 [209] + X_POSIX 43 read 3 96 512 1497.2666 1497.2666 [209] + X_POSIX 43 read 4 2064 632 1497.2666 1497.2667 [209] + X_POSIX 43 read 5 136 544 1497.2667 1497.2667 [209] + X_POSIX 43 read 6 680 512 1497.2667 1497.2667 [209] + X_POSIX 43 read 7 1504 328 1497.2880 1497.2883 [209] + X_POSIX 43 read 8 0 8 1497.9772 1497.9970 [209] + X_POSIX 43 read 9 0 9 1498.0001 1498.0002 [209] + X_POSIX 43 read 10 9 87 1498.0004 1498.0005 [209] + X_POSIX 43 read 11 96 512 1498.0058 1498.0058 [209] + X_POSIX 43 read 12 2064 632 1498.0081 1498.0081 [209] + X_POSIX 43 read 13 136 544 1498.0098 1498.0098 [209] + X_POSIX 43 read 14 680 512 1498.0107 1498.0107 [209] + X_POSIX 43 read 15 1504 328 1498.0344 1498.0344 [209] + X_POSIX 43 read 16 0 8 1498.7312 1498.8159 [209] + X_POSIX 43 read 17 0 9 1498.8159 1498.8159 [209] + X_POSIX 43 read 18 9 87 1498.8159 1498.8160 [209] + X_POSIX 43 read 19 96 512 1498.8160 1498.8160 [209] + X_POSIX 43 read 20 2064 632 1498.8160 1498.8161 [209] + X_POSIX 43 read 21 136 544 1498.8161 1498.8161 [209] + X_POSIX 43 read 22 680 512 1498.8161 1498.8162 [209] + X_POSIX 43 read 23 1504 328 1498.8410 1498.8413 [209] + X_POSIX 43 read 24 0 8 1500.6205 1500.7176 [209] + X_POSIX 43 read 25 0 9 1500.7200 1500.7200 [209] + X_POSIX 43 read 26 9 87 1500.7203 1500.7204 [209] + X_POSIX 43 read 27 96 512 1500.7259 1500.7259 [209] + X_POSIX 43 read 28 2064 632 1500.7282 1500.7283 [209] + X_POSIX 43 read 29 136 544 1500.7300 1500.7300 [209] + X_POSIX 43 read 30 680 512 1500.7309 1500.7309 [209] + X_POSIX 43 read 31 1504 328 1500.7547 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 44, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 44 read 0 0 342 1.2939 1.2939 [ 33] + X_POSIX 44 read 1 342 0 1.3016 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 44, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 44 read 0 0 8 722.4097 722.5131 [ 40] + X_POSIX 44 read 1 0 9 722.5170 722.5170 [ 40] + X_POSIX 44 read 2 9 87 722.5173 722.5174 [ 40] + X_POSIX 44 read 3 96 512 722.5231 722.5231 [ 40] + X_POSIX 44 read 4 2064 632 722.5254 722.5255 [ 40] + X_POSIX 44 read 5 136 544 722.5272 722.5272 [ 40] + X_POSIX 44 read 6 680 512 722.5281 722.5281 [ 40] + X_POSIX 44 read 7 1504 328 722.5639 722.5639 [ 40] + X_POSIX 44 read 8 0 8 723.3782 723.4004 [ 40] + X_POSIX 44 read 9 0 9 723.4032 723.4033 [ 40] + X_POSIX 44 read 10 9 87 723.4035 723.4036 [ 40] + X_POSIX 44 read 11 96 512 723.4089 723.4090 [ 40] + X_POSIX 44 read 12 2064 632 723.4112 723.4112 [ 40] + X_POSIX 44 read 13 136 544 723.4129 723.4129 [ 40] + X_POSIX 44 read 14 680 512 723.4138 723.4138 [ 40] + X_POSIX 44 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 44 read 16 0 8 724.2774 724.3667 [ 40] + X_POSIX 44 read 17 0 9 724.3667 724.3667 [ 40] + X_POSIX 44 read 18 9 87 724.3668 724.3668 [ 40] + X_POSIX 44 read 19 96 512 724.3668 724.3668 [ 40] + X_POSIX 44 read 20 2064 632 724.3668 724.3669 [ 40] + X_POSIX 44 read 21 136 544 724.3669 724.3669 [ 40] + X_POSIX 44 read 22 680 512 724.3669 724.3670 [ 40] + X_POSIX 44 read 23 1504 328 724.3798 724.3802 [ 40] + X_POSIX 44 read 24 0 8 726.4811 726.6268 [ 40] + X_POSIX 44 read 25 0 9 726.6296 726.6297 [ 40] + X_POSIX 44 read 26 9 87 726.6300 726.6300 [ 40] + X_POSIX 44 read 27 96 512 726.6356 726.6356 [ 40] + X_POSIX 44 read 28 2064 632 726.6379 726.6380 [ 40] + X_POSIX 44 read 29 136 544 726.6397 726.6397 [ 40] + X_POSIX 44 read 30 680 512 726.6406 726.6406 [ 40] + X_POSIX 44 read 31 1504 328 726.6638 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 44, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 44 read 0 0 8 1497.1507 1497.2690 [209] + X_POSIX 44 read 1 0 9 1497.2691 1497.2691 [209] + X_POSIX 44 read 2 9 87 1497.2691 1497.2691 [209] + X_POSIX 44 read 3 96 512 1497.2692 1497.2692 [209] + X_POSIX 44 read 4 2064 632 1497.2692 1497.2693 [209] + X_POSIX 44 read 5 136 544 1497.2693 1497.2693 [209] + X_POSIX 44 read 6 680 512 1497.2693 1497.2693 [209] + X_POSIX 44 read 7 1504 328 1497.2879 1497.2880 [209] + X_POSIX 44 read 8 0 8 1497.9771 1497.9964 [209] + X_POSIX 44 read 9 0 9 1497.9991 1497.9991 [209] + X_POSIX 44 read 10 9 87 1497.9994 1497.9994 [209] + X_POSIX 44 read 11 96 512 1498.0047 1498.0047 [209] + X_POSIX 44 read 12 2064 632 1498.0070 1498.0070 [209] + X_POSIX 44 read 13 136 544 1498.0087 1498.0087 [209] + X_POSIX 44 read 14 680 512 1498.0095 1498.0096 [209] + X_POSIX 44 read 15 1504 328 1498.0343 1498.0344 [209] + X_POSIX 44 read 16 0 8 1498.7310 1498.8206 [209] + X_POSIX 44 read 17 0 9 1498.8206 1498.8207 [209] + X_POSIX 44 read 18 9 87 1498.8207 1498.8207 [209] + X_POSIX 44 read 19 96 512 1498.8207 1498.8207 [209] + X_POSIX 44 read 20 2064 632 1498.8207 1498.8207 [209] + X_POSIX 44 read 21 136 544 1498.8208 1498.8208 [209] + X_POSIX 44 read 22 680 512 1498.8208 1498.8208 [209] + X_POSIX 44 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 44 read 24 0 8 1500.6203 1500.7174 [209] + X_POSIX 44 read 25 0 9 1500.7191 1500.7191 [209] + X_POSIX 44 read 26 9 87 1500.7194 1500.7194 [209] + X_POSIX 44 read 27 96 512 1500.7250 1500.7250 [209] + X_POSIX 44 read 28 2064 632 1500.7273 1500.7273 [209] + X_POSIX 44 read 29 136 544 1500.7290 1500.7291 [209] + X_POSIX 44 read 30 680 512 1500.7299 1500.7299 [209] + X_POSIX 44 read 31 1504 328 1500.7545 1500.7545 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 45, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 45 read 0 0 342 1.3024 1.3025 [ 33] + X_POSIX 45 read 1 342 0 1.3026 1.3026 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 45, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 45 read 0 0 8 722.4097 722.5131 [ 40] + X_POSIX 45 read 1 0 9 722.5170 722.5171 [ 40] + X_POSIX 45 read 2 9 87 722.5174 722.5174 [ 40] + X_POSIX 45 read 3 96 512 722.5231 722.5231 [ 40] + X_POSIX 45 read 4 2064 632 722.5254 722.5255 [ 40] + X_POSIX 45 read 5 136 544 722.5273 722.5273 [ 40] + X_POSIX 45 read 6 680 512 722.5282 722.5282 [ 40] + X_POSIX 45 read 7 1504 328 722.5636 722.5636 [ 40] + X_POSIX 45 read 8 0 8 723.3783 723.4005 [ 40] + X_POSIX 45 read 9 0 9 723.4036 723.4036 [ 40] + X_POSIX 45 read 10 9 87 723.4039 723.4040 [ 40] + X_POSIX 45 read 11 96 512 723.4093 723.4093 [ 40] + X_POSIX 45 read 12 2064 632 723.4116 723.4116 [ 40] + X_POSIX 45 read 13 136 544 723.4132 723.4133 [ 40] + X_POSIX 45 read 14 680 512 723.4141 723.4142 [ 40] + X_POSIX 45 read 15 1504 328 723.4601 723.4601 [ 40] + X_POSIX 45 read 16 0 8 724.2774 724.3735 [ 40] + X_POSIX 45 read 17 0 9 724.3735 724.3735 [ 40] + X_POSIX 45 read 18 9 87 724.3735 724.3735 [ 40] + X_POSIX 45 read 19 96 512 724.3735 724.3736 [ 40] + X_POSIX 45 read 20 2064 632 724.3736 724.3736 [ 40] + X_POSIX 45 read 21 136 544 724.3736 724.3736 [ 40] + X_POSIX 45 read 22 680 512 724.3736 724.3736 [ 40] + X_POSIX 45 read 23 1504 328 724.3798 724.3801 [ 40] + X_POSIX 45 read 24 0 8 726.4811 726.6268 [ 40] + X_POSIX 45 read 25 0 9 726.6295 726.6296 [ 40] + X_POSIX 45 read 26 9 87 726.6299 726.6299 [ 40] + X_POSIX 45 read 27 96 512 726.6355 726.6355 [ 40] + X_POSIX 45 read 28 2064 632 726.6378 726.6379 [ 40] + X_POSIX 45 read 29 136 544 726.6396 726.6396 [ 40] + X_POSIX 45 read 30 680 512 726.6405 726.6405 [ 40] + X_POSIX 45 read 31 1504 328 726.6637 726.6638 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 45, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 45 read 0 0 8 1497.1510 1497.2680 [209] + X_POSIX 45 read 1 0 9 1497.2680 1497.2680 [209] + X_POSIX 45 read 2 9 87 1497.2680 1497.2680 [209] + X_POSIX 45 read 3 96 512 1497.2681 1497.2681 [209] + X_POSIX 45 read 4 2064 632 1497.2681 1497.2681 [209] + X_POSIX 45 read 5 136 544 1497.2681 1497.2681 [209] + X_POSIX 45 read 6 680 512 1497.2681 1497.2682 [209] + X_POSIX 45 read 7 1504 328 1497.2879 1497.2883 [209] + X_POSIX 45 read 8 0 8 1497.9771 1497.9965 [209] + X_POSIX 45 read 9 0 9 1497.9994 1497.9994 [209] + X_POSIX 45 read 10 9 87 1497.9997 1497.9997 [209] + X_POSIX 45 read 11 96 512 1498.0051 1498.0051 [209] + X_POSIX 45 read 12 2064 632 1498.0074 1498.0074 [209] + X_POSIX 45 read 13 136 544 1498.0090 1498.0091 [209] + X_POSIX 45 read 14 680 512 1498.0099 1498.0099 [209] + X_POSIX 45 read 15 1504 328 1498.0344 1498.0344 [209] + X_POSIX 45 read 16 0 8 1498.7310 1498.8191 [209] + X_POSIX 45 read 17 0 9 1498.8192 1498.8192 [209] + X_POSIX 45 read 18 9 87 1498.8192 1498.8192 [209] + X_POSIX 45 read 19 96 512 1498.8192 1498.8192 [209] + X_POSIX 45 read 20 2064 632 1498.8193 1498.8193 [209] + X_POSIX 45 read 21 136 544 1498.8193 1498.8193 [209] + X_POSIX 45 read 22 680 512 1498.8193 1498.8193 [209] + X_POSIX 45 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 45 read 24 0 8 1500.6204 1500.7175 [209] + X_POSIX 45 read 25 0 9 1500.7201 1500.7202 [209] + X_POSIX 45 read 26 9 87 1500.7205 1500.7205 [209] + X_POSIX 45 read 27 96 512 1500.7260 1500.7260 [209] + X_POSIX 45 read 28 2064 632 1500.7284 1500.7284 [209] + X_POSIX 45 read 29 136 544 1500.7301 1500.7301 [209] + X_POSIX 45 read 30 680 512 1500.7309 1500.7310 [209] + X_POSIX 45 read 31 1504 328 1500.7547 1500.7547 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 46, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 46 read 0 0 342 1.3036 1.3036 [ 33] + X_POSIX 46 read 1 342 0 1.3037 1.3037 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 46, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 46 read 0 0 8 722.4096 722.5129 [ 40] + X_POSIX 46 read 1 0 9 722.5170 722.5171 [ 40] + X_POSIX 46 read 2 9 87 722.5174 722.5174 [ 40] + X_POSIX 46 read 3 96 512 722.5231 722.5231 [ 40] + X_POSIX 46 read 4 2064 632 722.5254 722.5254 [ 40] + X_POSIX 46 read 5 136 544 722.5272 722.5272 [ 40] + X_POSIX 46 read 6 680 512 722.5281 722.5281 [ 40] + X_POSIX 46 read 7 1504 328 722.5634 722.5634 [ 40] + X_POSIX 46 read 8 0 8 723.3781 723.4000 [ 40] + X_POSIX 46 read 9 0 9 723.4002 723.4002 [ 40] + X_POSIX 46 read 10 9 87 723.4003 723.4004 [ 40] + X_POSIX 46 read 11 96 512 723.4056 723.4056 [ 40] + X_POSIX 46 read 12 2064 632 723.4079 723.4079 [ 40] + X_POSIX 46 read 13 136 544 723.4096 723.4096 [ 40] + X_POSIX 46 read 14 680 512 723.4105 723.4105 [ 40] + X_POSIX 46 read 15 1504 328 723.4599 723.4599 [ 40] + X_POSIX 46 read 16 0 8 724.2773 724.3665 [ 40] + X_POSIX 46 read 17 0 9 724.3665 724.3666 [ 40] + X_POSIX 46 read 18 9 87 724.3666 724.3666 [ 40] + X_POSIX 46 read 19 96 512 724.3666 724.3667 [ 40] + X_POSIX 46 read 20 2064 632 724.3667 724.3667 [ 40] + X_POSIX 46 read 21 136 544 724.3667 724.3668 [ 40] + X_POSIX 46 read 22 680 512 724.3668 724.3668 [ 40] + X_POSIX 46 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 46 read 24 0 8 726.4813 726.6271 [ 40] + X_POSIX 46 read 25 0 9 726.6304 726.6305 [ 40] + X_POSIX 46 read 26 9 87 726.6308 726.6308 [ 40] + X_POSIX 46 read 27 96 512 726.6363 726.6364 [ 40] + X_POSIX 46 read 28 2064 632 726.6387 726.6387 [ 40] + X_POSIX 46 read 29 136 544 726.6405 726.6405 [ 40] + X_POSIX 46 read 30 680 512 726.6413 726.6414 [ 40] + X_POSIX 46 read 31 1504 328 726.6635 726.6635 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 46, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 46 read 0 0 8 1497.1508 1497.2688 [209] + X_POSIX 46 read 1 0 9 1497.2689 1497.2689 [209] + X_POSIX 46 read 2 9 87 1497.2689 1497.2690 [209] + X_POSIX 46 read 3 96 512 1497.2690 1497.2690 [209] + X_POSIX 46 read 4 2064 632 1497.2690 1497.2691 [209] + X_POSIX 46 read 5 136 544 1497.2691 1497.2691 [209] + X_POSIX 46 read 6 680 512 1497.2691 1497.2692 [209] + X_POSIX 46 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 46 read 8 0 8 1497.9768 1497.9964 [209] + X_POSIX 46 read 9 0 9 1497.9988 1497.9988 [209] + X_POSIX 46 read 10 9 87 1497.9991 1497.9991 [209] + X_POSIX 46 read 11 96 512 1498.0044 1498.0044 [209] + X_POSIX 46 read 12 2064 632 1498.0067 1498.0067 [209] + X_POSIX 46 read 13 136 544 1498.0083 1498.0084 [209] + X_POSIX 46 read 14 680 512 1498.0092 1498.0092 [209] + X_POSIX 46 read 15 1504 328 1498.0342 1498.0342 [209] + X_POSIX 46 read 16 0 8 1498.7310 1498.8186 [209] + X_POSIX 46 read 17 0 9 1498.8186 1498.8186 [209] + X_POSIX 46 read 18 9 87 1498.8186 1498.8187 [209] + X_POSIX 46 read 19 96 512 1498.8187 1498.8187 [209] + X_POSIX 46 read 20 2064 632 1498.8187 1498.8187 [209] + X_POSIX 46 read 21 136 544 1498.8187 1498.8187 [209] + X_POSIX 46 read 22 680 512 1498.8187 1498.8188 [209] + X_POSIX 46 read 23 1504 328 1498.8408 1498.8411 [209] + X_POSIX 46 read 24 0 8 1500.6204 1500.7178 [209] + X_POSIX 46 read 25 0 9 1500.7209 1500.7209 [209] + X_POSIX 46 read 26 9 87 1500.7212 1500.7212 [209] + X_POSIX 46 read 27 96 512 1500.7268 1500.7268 [209] + X_POSIX 46 read 28 2064 632 1500.7291 1500.7291 [209] + X_POSIX 46 read 29 136 544 1500.7311 1500.7311 [209] + X_POSIX 46 read 30 680 512 1500.7319 1500.7320 [209] + X_POSIX 46 read 31 1504 328 1500.7544 1500.7544 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 47, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 47 read 0 0 342 1.2867 1.2897 [ 33] + X_POSIX 47 read 1 342 0 1.3015 1.3016 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 47, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 47 read 0 0 8 722.4096 722.5129 [ 40] + X_POSIX 47 read 1 0 9 722.5167 722.5168 [ 40] + X_POSIX 47 read 2 9 87 722.5171 722.5171 [ 40] + X_POSIX 47 read 3 96 512 722.5228 722.5229 [ 40] + X_POSIX 47 read 4 2064 632 722.5252 722.5252 [ 40] + X_POSIX 47 read 5 136 544 722.5270 722.5270 [ 40] + X_POSIX 47 read 6 680 512 722.5279 722.5279 [ 40] + X_POSIX 47 read 7 1504 328 722.5636 722.5636 [ 40] + X_POSIX 47 read 8 0 8 723.3783 723.4005 [ 40] + X_POSIX 47 read 9 0 9 723.4037 723.4037 [ 40] + X_POSIX 47 read 10 9 87 723.4040 723.4040 [ 40] + X_POSIX 47 read 11 96 512 723.4093 723.4094 [ 40] + X_POSIX 47 read 12 2064 632 723.4116 723.4117 [ 40] + X_POSIX 47 read 13 136 544 723.4133 723.4134 [ 40] + X_POSIX 47 read 14 680 512 723.4142 723.4142 [ 40] + X_POSIX 47 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 47 read 16 0 8 724.2773 724.3728 [ 40] + X_POSIX 47 read 17 0 9 724.3729 724.3729 [ 40] + X_POSIX 47 read 18 9 87 724.3729 724.3729 [ 40] + X_POSIX 47 read 19 96 512 724.3729 724.3730 [ 40] + X_POSIX 47 read 20 2064 632 724.3730 724.3730 [ 40] + X_POSIX 47 read 21 136 544 724.3730 724.3730 [ 40] + X_POSIX 47 read 22 680 512 724.3730 724.3730 [ 40] + X_POSIX 47 read 23 1504 328 724.3797 724.3799 [ 40] + X_POSIX 47 read 24 0 8 726.4812 726.6268 [ 40] + X_POSIX 47 read 25 0 9 726.6299 726.6300 [ 40] + X_POSIX 47 read 26 9 87 726.6303 726.6303 [ 40] + X_POSIX 47 read 27 96 512 726.6359 726.6359 [ 40] + X_POSIX 47 read 28 2064 632 726.6383 726.6383 [ 40] + X_POSIX 47 read 29 136 544 726.6400 726.6400 [ 40] + X_POSIX 47 read 30 680 512 726.6409 726.6409 [ 40] + X_POSIX 47 read 31 1504 328 726.6636 726.6638 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 47, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 47 read 0 0 8 1497.1508 1497.2688 [209] + X_POSIX 47 read 1 0 9 1497.2689 1497.2689 [209] + X_POSIX 47 read 2 9 87 1497.2689 1497.2690 [209] + X_POSIX 47 read 3 96 512 1497.2690 1497.2690 [209] + X_POSIX 47 read 4 2064 632 1497.2690 1497.2691 [209] + X_POSIX 47 read 5 136 544 1497.2691 1497.2691 [209] + X_POSIX 47 read 6 680 512 1497.2691 1497.2692 [209] + X_POSIX 47 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 47 read 8 0 8 1497.9769 1497.9968 [209] + X_POSIX 47 read 9 0 9 1497.9999 1497.9999 [209] + X_POSIX 47 read 10 9 87 1498.0002 1498.0002 [209] + X_POSIX 47 read 11 96 512 1498.0056 1498.0056 [209] + X_POSIX 47 read 12 2064 632 1498.0079 1498.0079 [209] + X_POSIX 47 read 13 136 544 1498.0095 1498.0095 [209] + X_POSIX 47 read 14 680 512 1498.0104 1498.0104 [209] + X_POSIX 47 read 15 1504 328 1498.0342 1498.0342 [209] + X_POSIX 47 read 16 0 8 1498.7310 1498.8196 [209] + X_POSIX 47 read 17 0 9 1498.8196 1498.8197 [209] + X_POSIX 47 read 18 9 87 1498.8197 1498.8197 [209] + X_POSIX 47 read 19 96 512 1498.8197 1498.8197 [209] + X_POSIX 47 read 20 2064 632 1498.8197 1498.8197 [209] + X_POSIX 47 read 21 136 544 1498.8198 1498.8198 [209] + X_POSIX 47 read 22 680 512 1498.8198 1498.8198 [209] + X_POSIX 47 read 23 1504 328 1498.8408 1498.8411 [209] + X_POSIX 47 read 24 0 8 1500.6202 1500.7174 [209] + X_POSIX 47 read 25 0 9 1500.7193 1500.7194 [209] + X_POSIX 47 read 26 9 87 1500.7196 1500.7197 [209] + X_POSIX 47 read 27 96 512 1500.7252 1500.7252 [209] + X_POSIX 47 read 28 2064 632 1500.7275 1500.7276 [209] + X_POSIX 47 read 29 136 544 1500.7293 1500.7293 [209] + X_POSIX 47 read 30 680 512 1500.7302 1500.7302 [209] + X_POSIX 47 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 48, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 48 read 0 0 342 1.2910 1.2911 [ 33] + X_POSIX 48 read 1 342 0 1.3017 1.3018 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 48, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 48 read 0 0 8 722.4098 722.5128 [ 40] + X_POSIX 48 read 1 0 9 722.5165 722.5165 [ 40] + X_POSIX 48 read 2 9 87 722.5168 722.5168 [ 40] + X_POSIX 48 read 3 96 512 722.5225 722.5226 [ 40] + X_POSIX 48 read 4 2064 632 722.5249 722.5249 [ 40] + X_POSIX 48 read 5 136 544 722.5266 722.5267 [ 40] + X_POSIX 48 read 6 680 512 722.5275 722.5275 [ 40] + X_POSIX 48 read 7 1504 328 722.5637 722.5637 [ 40] + X_POSIX 48 read 8 0 8 723.3786 723.4003 [ 40] + X_POSIX 48 read 9 0 9 723.4024 723.4025 [ 40] + X_POSIX 48 read 10 9 87 723.4027 723.4028 [ 40] + X_POSIX 48 read 11 96 512 723.4081 723.4081 [ 40] + X_POSIX 48 read 12 2064 632 723.4103 723.4104 [ 40] + X_POSIX 48 read 13 136 544 723.4120 723.4121 [ 40] + X_POSIX 48 read 14 680 512 723.4129 723.4129 [ 40] + X_POSIX 48 read 15 1504 328 723.4601 723.4601 [ 40] + X_POSIX 48 read 16 0 8 724.2775 724.3746 [ 40] + X_POSIX 48 read 17 0 9 724.3746 724.3746 [ 40] + X_POSIX 48 read 18 9 87 724.3746 724.3747 [ 40] + X_POSIX 48 read 19 96 512 724.3747 724.3747 [ 40] + X_POSIX 48 read 20 2064 632 724.3747 724.3747 [ 40] + X_POSIX 48 read 21 136 544 724.3747 724.3748 [ 40] + X_POSIX 48 read 22 680 512 724.3748 724.3748 [ 40] + X_POSIX 48 read 23 1504 328 724.3799 724.3802 [ 40] + X_POSIX 48 read 24 0 8 726.4814 726.6273 [ 40] + X_POSIX 48 read 25 0 9 726.6306 726.6306 [ 40] + X_POSIX 48 read 26 9 87 726.6309 726.6309 [ 40] + X_POSIX 48 read 27 96 512 726.6365 726.6365 [ 40] + X_POSIX 48 read 28 2064 632 726.6389 726.6389 [ 40] + X_POSIX 48 read 29 136 544 726.6406 726.6407 [ 40] + X_POSIX 48 read 30 680 512 726.6415 726.6415 [ 40] + X_POSIX 48 read 31 1504 328 726.6637 726.6637 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 48, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 48 read 0 0 8 1497.1509 1497.2690 [209] + X_POSIX 48 read 1 0 9 1497.2691 1497.2691 [209] + X_POSIX 48 read 2 9 87 1497.2691 1497.2692 [209] + X_POSIX 48 read 3 96 512 1497.2692 1497.2693 [209] + X_POSIX 48 read 4 2064 632 1497.2693 1497.2693 [209] + X_POSIX 48 read 5 136 544 1497.2693 1497.2693 [209] + X_POSIX 48 read 6 680 512 1497.2693 1497.2694 [209] + X_POSIX 48 read 7 1504 328 1497.2880 1497.2883 [209] + X_POSIX 48 read 8 0 8 1497.9772 1497.9966 [209] + X_POSIX 48 read 9 0 9 1497.9993 1497.9994 [209] + X_POSIX 48 read 10 9 87 1497.9996 1497.9997 [209] + X_POSIX 48 read 11 96 512 1498.0050 1498.0050 [209] + X_POSIX 48 read 12 2064 632 1498.0072 1498.0073 [209] + X_POSIX 48 read 13 136 544 1498.0090 1498.0090 [209] + X_POSIX 48 read 14 680 512 1498.0098 1498.0098 [209] + X_POSIX 48 read 15 1504 328 1498.0346 1498.0346 [209] + X_POSIX 48 read 16 0 8 1498.7311 1498.8195 [209] + X_POSIX 48 read 17 0 9 1498.8195 1498.8195 [209] + X_POSIX 48 read 18 9 87 1498.8195 1498.8195 [209] + X_POSIX 48 read 19 96 512 1498.8195 1498.8196 [209] + X_POSIX 48 read 20 2064 632 1498.8196 1498.8196 [209] + X_POSIX 48 read 21 136 544 1498.8196 1498.8196 [209] + X_POSIX 48 read 22 680 512 1498.8196 1498.8197 [209] + X_POSIX 48 read 23 1504 328 1498.8409 1498.8413 [209] + X_POSIX 48 read 24 0 8 1500.6205 1500.7177 [209] + X_POSIX 48 read 25 0 9 1500.7207 1500.7207 [209] + X_POSIX 48 read 26 9 87 1500.7210 1500.7210 [209] + X_POSIX 48 read 27 96 512 1500.7265 1500.7265 [209] + X_POSIX 48 read 28 2064 632 1500.7288 1500.7289 [209] + X_POSIX 48 read 29 136 544 1500.7306 1500.7306 [209] + X_POSIX 48 read 30 680 512 1500.7314 1500.7314 [209] + X_POSIX 48 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 49, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 49 read 0 0 342 1.2985 1.2985 [ 33] + X_POSIX 49 read 1 342 0 1.3014 1.3014 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 49, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 49 read 0 0 8 722.4096 722.5128 [ 40] + X_POSIX 49 read 1 0 9 722.5167 722.5167 [ 40] + X_POSIX 49 read 2 9 87 722.5170 722.5170 [ 40] + X_POSIX 49 read 3 96 512 722.5228 722.5228 [ 40] + X_POSIX 49 read 4 2064 632 722.5251 722.5252 [ 40] + X_POSIX 49 read 5 136 544 722.5269 722.5270 [ 40] + X_POSIX 49 read 6 680 512 722.5278 722.5279 [ 40] + X_POSIX 49 read 7 1504 328 722.5635 722.5636 [ 40] + X_POSIX 49 read 8 0 8 723.3787 723.4005 [ 40] + X_POSIX 49 read 9 0 9 723.4037 723.4037 [ 40] + X_POSIX 49 read 10 9 87 723.4040 723.4040 [ 40] + X_POSIX 49 read 11 96 512 723.4094 723.4094 [ 40] + X_POSIX 49 read 12 2064 632 723.4117 723.4117 [ 40] + X_POSIX 49 read 13 136 544 723.4134 723.4134 [ 40] + X_POSIX 49 read 14 680 512 723.4142 723.4143 [ 40] + X_POSIX 49 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 49 read 16 0 8 724.2772 724.3696 [ 40] + X_POSIX 49 read 17 0 9 724.3696 724.3696 [ 40] + X_POSIX 49 read 18 9 87 724.3696 724.3696 [ 40] + X_POSIX 49 read 19 96 512 724.3696 724.3697 [ 40] + X_POSIX 49 read 20 2064 632 724.3697 724.3697 [ 40] + X_POSIX 49 read 21 136 544 724.3697 724.3697 [ 40] + X_POSIX 49 read 22 680 512 724.3697 724.3697 [ 40] + X_POSIX 49 read 23 1504 328 724.3797 724.3800 [ 40] + X_POSIX 49 read 24 0 8 726.4812 726.6272 [ 40] + X_POSIX 49 read 25 0 9 726.6305 726.6305 [ 40] + X_POSIX 49 read 26 9 87 726.6308 726.6309 [ 40] + X_POSIX 49 read 27 96 512 726.6364 726.6365 [ 40] + X_POSIX 49 read 28 2064 632 726.6388 726.6389 [ 40] + X_POSIX 49 read 29 136 544 726.6406 726.6406 [ 40] + X_POSIX 49 read 30 680 512 726.6415 726.6415 [ 40] + X_POSIX 49 read 31 1504 328 726.6636 726.6637 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 49, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 49 read 0 0 8 1497.1509 1497.2651 [209] + X_POSIX 49 read 1 0 9 1497.2651 1497.2651 [209] + X_POSIX 49 read 2 9 87 1497.2652 1497.2652 [209] + X_POSIX 49 read 3 96 512 1497.2652 1497.2652 [209] + X_POSIX 49 read 4 2064 632 1497.2652 1497.2652 [209] + X_POSIX 49 read 5 136 544 1497.2653 1497.2653 [209] + X_POSIX 49 read 6 680 512 1497.2653 1497.2653 [209] + X_POSIX 49 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 49 read 8 0 8 1497.9771 1497.9968 [209] + X_POSIX 49 read 9 0 9 1497.9999 1497.9999 [209] + X_POSIX 49 read 10 9 87 1498.0002 1498.0002 [209] + X_POSIX 49 read 11 96 512 1498.0056 1498.0056 [209] + X_POSIX 49 read 12 2064 632 1498.0078 1498.0079 [209] + X_POSIX 49 read 13 136 544 1498.0096 1498.0096 [209] + X_POSIX 49 read 14 680 512 1498.0104 1498.0105 [209] + X_POSIX 49 read 15 1504 328 1498.0342 1498.0343 [209] + X_POSIX 49 read 16 0 8 1498.7309 1498.8155 [209] + X_POSIX 49 read 17 0 9 1498.8155 1498.8155 [209] + X_POSIX 49 read 18 9 87 1498.8155 1498.8156 [209] + X_POSIX 49 read 19 96 512 1498.8156 1498.8157 [209] + X_POSIX 49 read 20 2064 632 1498.8157 1498.8157 [209] + X_POSIX 49 read 21 136 544 1498.8157 1498.8158 [209] + X_POSIX 49 read 22 680 512 1498.8158 1498.8158 [209] + X_POSIX 49 read 23 1504 328 1498.8407 1498.8411 [209] + X_POSIX 49 read 24 0 8 1500.6203 1500.7177 [209] + X_POSIX 49 read 25 0 9 1500.7209 1500.7209 [209] + X_POSIX 49 read 26 9 87 1500.7212 1500.7212 [209] + X_POSIX 49 read 27 96 512 1500.7267 1500.7268 [209] + X_POSIX 49 read 28 2064 632 1500.7291 1500.7291 [209] + X_POSIX 49 read 29 136 544 1500.7308 1500.7308 [209] + X_POSIX 49 read 30 680 512 1500.7317 1500.7317 [209] + X_POSIX 49 read 31 1504 328 1500.7547 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 50, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 50 read 0 0 342 1.3047 1.3047 [ 33] + X_POSIX 50 read 1 342 0 1.3048 1.3048 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 50, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 50 read 0 0 8 722.4098 722.5129 [ 40] + X_POSIX 50 read 1 0 9 722.5167 722.5168 [ 40] + X_POSIX 50 read 2 9 87 722.5171 722.5171 [ 40] + X_POSIX 50 read 3 96 512 722.5228 722.5228 [ 40] + X_POSIX 50 read 4 2064 632 722.5251 722.5252 [ 40] + X_POSIX 50 read 5 136 544 722.5269 722.5270 [ 40] + X_POSIX 50 read 6 680 512 722.5278 722.5278 [ 40] + X_POSIX 50 read 7 1504 328 722.5641 722.5641 [ 40] + X_POSIX 50 read 8 0 8 723.3788 723.4006 [ 40] + X_POSIX 50 read 9 0 9 723.4037 723.4037 [ 40] + X_POSIX 50 read 10 9 87 723.4040 723.4040 [ 40] + X_POSIX 50 read 11 96 512 723.4094 723.4094 [ 40] + X_POSIX 50 read 12 2064 632 723.4116 723.4117 [ 40] + X_POSIX 50 read 13 136 544 723.4133 723.4134 [ 40] + X_POSIX 50 read 14 680 512 723.4142 723.4142 [ 40] + X_POSIX 50 read 15 1504 328 723.4601 723.4601 [ 40] + X_POSIX 50 read 16 0 8 724.2775 724.3669 [ 40] + X_POSIX 50 read 17 0 9 724.3669 724.3670 [ 40] + X_POSIX 50 read 18 9 87 724.3670 724.3670 [ 40] + X_POSIX 50 read 19 96 512 724.3670 724.3670 [ 40] + X_POSIX 50 read 20 2064 632 724.3670 724.3671 [ 40] + X_POSIX 50 read 21 136 544 724.3671 724.3671 [ 40] + X_POSIX 50 read 22 680 512 724.3671 724.3671 [ 40] + X_POSIX 50 read 23 1504 328 724.3799 724.3802 [ 40] + X_POSIX 50 read 24 0 8 726.4814 726.6273 [ 40] + X_POSIX 50 read 25 0 9 726.6306 726.6306 [ 40] + X_POSIX 50 read 26 9 87 726.6309 726.6309 [ 40] + X_POSIX 50 read 27 96 512 726.6365 726.6365 [ 40] + X_POSIX 50 read 28 2064 632 726.6389 726.6389 [ 40] + X_POSIX 50 read 29 136 544 726.6406 726.6407 [ 40] + X_POSIX 50 read 30 680 512 726.6415 726.6415 [ 40] + X_POSIX 50 read 31 1504 328 726.6638 726.6639 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 50, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 50 read 0 0 8 1497.1510 1497.2671 [209] + X_POSIX 50 read 1 0 9 1497.2671 1497.2672 [209] + X_POSIX 50 read 2 9 87 1497.2672 1497.2672 [209] + X_POSIX 50 read 3 96 512 1497.2672 1497.2672 [209] + X_POSIX 50 read 4 2064 632 1497.2673 1497.2673 [209] + X_POSIX 50 read 5 136 544 1497.2673 1497.2673 [209] + X_POSIX 50 read 6 680 512 1497.2673 1497.2673 [209] + X_POSIX 50 read 7 1504 328 1497.2880 1497.2882 [209] + X_POSIX 50 read 8 0 8 1497.9770 1497.9965 [209] + X_POSIX 50 read 9 0 9 1497.9971 1497.9971 [209] + X_POSIX 50 read 10 9 87 1497.9974 1497.9974 [209] + X_POSIX 50 read 11 96 512 1498.0027 1498.0027 [209] + X_POSIX 50 read 12 2064 632 1498.0050 1498.0050 [209] + X_POSIX 50 read 13 136 544 1498.0067 1498.0067 [209] + X_POSIX 50 read 14 680 512 1498.0075 1498.0076 [209] + X_POSIX 50 read 15 1504 328 1498.0349 1498.0349 [209] + X_POSIX 50 read 16 0 8 1498.7311 1498.8160 [209] + X_POSIX 50 read 17 0 9 1498.8160 1498.8160 [209] + X_POSIX 50 read 18 9 87 1498.8160 1498.8160 [209] + X_POSIX 50 read 19 96 512 1498.8161 1498.8161 [209] + X_POSIX 50 read 20 2064 632 1498.8161 1498.8162 [209] + X_POSIX 50 read 21 136 544 1498.8162 1498.8162 [209] + X_POSIX 50 read 22 680 512 1498.8162 1498.8162 [209] + X_POSIX 50 read 23 1504 328 1498.8409 1498.8411 [209] + X_POSIX 50 read 24 0 8 1500.6204 1500.7176 [209] + X_POSIX 50 read 25 0 9 1500.7203 1500.7203 [209] + X_POSIX 50 read 26 9 87 1500.7206 1500.7206 [209] + X_POSIX 50 read 27 96 512 1500.7261 1500.7262 [209] + X_POSIX 50 read 28 2064 632 1500.7285 1500.7285 [209] + X_POSIX 50 read 29 136 544 1500.7302 1500.7302 [209] + X_POSIX 50 read 30 680 512 1500.7311 1500.7311 [209] + X_POSIX 50 read 31 1504 328 1500.7547 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 51, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 51 read 0 0 342 1.2966 1.2967 [ 33] + X_POSIX 51 read 1 342 0 1.3017 1.3018 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 51, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 51 read 0 0 8 722.4098 722.5130 [ 40] + X_POSIX 51 read 1 0 9 722.5169 722.5169 [ 40] + X_POSIX 51 read 2 9 87 722.5172 722.5172 [ 40] + X_POSIX 51 read 3 96 512 722.5229 722.5230 [ 40] + X_POSIX 51 read 4 2064 632 722.5253 722.5253 [ 40] + X_POSIX 51 read 5 136 544 722.5271 722.5271 [ 40] + X_POSIX 51 read 6 680 512 722.5280 722.5280 [ 40] + X_POSIX 51 read 7 1504 328 722.5636 722.5637 [ 40] + X_POSIX 51 read 8 0 8 723.3789 723.4008 [ 40] + X_POSIX 51 read 9 0 9 723.4040 723.4040 [ 40] + X_POSIX 51 read 10 9 87 723.4043 723.4043 [ 40] + X_POSIX 51 read 11 96 512 723.4096 723.4097 [ 40] + X_POSIX 51 read 12 2064 632 723.4119 723.4120 [ 40] + X_POSIX 51 read 13 136 544 723.4136 723.4137 [ 40] + X_POSIX 51 read 14 680 512 723.4145 723.4145 [ 40] + X_POSIX 51 read 15 1504 328 723.4599 723.4599 [ 40] + X_POSIX 51 read 16 0 8 724.2775 724.3731 [ 40] + X_POSIX 51 read 17 0 9 724.3731 724.3732 [ 40] + X_POSIX 51 read 18 9 87 724.3732 724.3732 [ 40] + X_POSIX 51 read 19 96 512 724.3732 724.3732 [ 40] + X_POSIX 51 read 20 2064 632 724.3732 724.3733 [ 40] + X_POSIX 51 read 21 136 544 724.3733 724.3733 [ 40] + X_POSIX 51 read 22 680 512 724.3733 724.3733 [ 40] + X_POSIX 51 read 23 1504 328 724.3799 724.3801 [ 40] + X_POSIX 51 read 24 0 8 726.4814 726.6270 [ 40] + X_POSIX 51 read 25 0 9 726.6302 726.6303 [ 40] + X_POSIX 51 read 26 9 87 726.6306 726.6306 [ 40] + X_POSIX 51 read 27 96 512 726.6362 726.6362 [ 40] + X_POSIX 51 read 28 2064 632 726.6385 726.6386 [ 40] + X_POSIX 51 read 29 136 544 726.6403 726.6403 [ 40] + X_POSIX 51 read 30 680 512 726.6412 726.6412 [ 40] + X_POSIX 51 read 31 1504 328 726.6639 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 51, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 51 read 0 0 8 1497.1510 1497.2690 [209] + X_POSIX 51 read 1 0 9 1497.2690 1497.2691 [209] + X_POSIX 51 read 2 9 87 1497.2691 1497.2691 [209] + X_POSIX 51 read 3 96 512 1497.2692 1497.2692 [209] + X_POSIX 51 read 4 2064 632 1497.2692 1497.2692 [209] + X_POSIX 51 read 5 136 544 1497.2692 1497.2693 [209] + X_POSIX 51 read 6 680 512 1497.2693 1497.2693 [209] + X_POSIX 51 read 7 1504 328 1497.2880 1497.2883 [209] + X_POSIX 51 read 8 0 8 1497.9773 1497.9969 [209] + X_POSIX 51 read 9 0 9 1498.0000 1498.0000 [209] + X_POSIX 51 read 10 9 87 1498.0003 1498.0003 [209] + X_POSIX 51 read 11 96 512 1498.0057 1498.0057 [209] + X_POSIX 51 read 12 2064 632 1498.0080 1498.0080 [209] + X_POSIX 51 read 13 136 544 1498.0096 1498.0097 [209] + X_POSIX 51 read 14 680 512 1498.0105 1498.0105 [209] + X_POSIX 51 read 15 1504 328 1498.0347 1498.0348 [209] + X_POSIX 51 read 16 0 8 1498.7312 1498.8158 [209] + X_POSIX 51 read 17 0 9 1498.8158 1498.8159 [209] + X_POSIX 51 read 18 9 87 1498.8159 1498.8159 [209] + X_POSIX 51 read 19 96 512 1498.8159 1498.8160 [209] + X_POSIX 51 read 20 2064 632 1498.8160 1498.8160 [209] + X_POSIX 51 read 21 136 544 1498.8160 1498.8161 [209] + X_POSIX 51 read 22 680 512 1498.8161 1498.8161 [209] + X_POSIX 51 read 23 1504 328 1498.8409 1498.8413 [209] + X_POSIX 51 read 24 0 8 1500.6206 1500.7180 [209] + X_POSIX 51 read 25 0 9 1500.7212 1500.7213 [209] + X_POSIX 51 read 26 9 87 1500.7216 1500.7216 [209] + X_POSIX 51 read 27 96 512 1500.7272 1500.7272 [209] + X_POSIX 51 read 28 2064 632 1500.7295 1500.7295 [209] + X_POSIX 51 read 29 136 544 1500.7313 1500.7313 [209] + X_POSIX 51 read 30 680 512 1500.7321 1500.7322 [209] + X_POSIX 51 read 31 1504 328 1500.7547 1500.7547 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 52, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 52 read 0 0 342 1.3018 1.3019 [ 33] + X_POSIX 52 read 1 342 0 1.3021 1.3021 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 52, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 52 read 0 0 8 722.4097 722.5125 [ 40] + X_POSIX 52 read 1 0 9 722.5156 722.5157 [ 40] + X_POSIX 52 read 2 9 87 722.5160 722.5160 [ 40] + X_POSIX 52 read 3 96 512 722.5217 722.5217 [ 40] + X_POSIX 52 read 4 2064 632 722.5241 722.5241 [ 40] + X_POSIX 52 read 5 136 544 722.5258 722.5258 [ 40] + X_POSIX 52 read 6 680 512 722.5267 722.5268 [ 40] + X_POSIX 52 read 7 1504 328 722.5639 722.5639 [ 40] + X_POSIX 52 read 8 0 8 723.3785 723.4004 [ 40] + X_POSIX 52 read 9 0 9 723.4033 723.4033 [ 40] + X_POSIX 52 read 10 9 87 723.4036 723.4036 [ 40] + X_POSIX 52 read 11 96 512 723.4090 723.4090 [ 40] + X_POSIX 52 read 12 2064 632 723.4112 723.4112 [ 40] + X_POSIX 52 read 13 136 544 723.4129 723.4129 [ 40] + X_POSIX 52 read 14 680 512 723.4138 723.4138 [ 40] + X_POSIX 52 read 15 1504 328 723.4600 723.4601 [ 40] + X_POSIX 52 read 16 0 8 724.2773 724.3666 [ 40] + X_POSIX 52 read 17 0 9 724.3666 724.3667 [ 40] + X_POSIX 52 read 18 9 87 724.3667 724.3667 [ 40] + X_POSIX 52 read 19 96 512 724.3667 724.3667 [ 40] + X_POSIX 52 read 20 2064 632 724.3667 724.3668 [ 40] + X_POSIX 52 read 21 136 544 724.3668 724.3668 [ 40] + X_POSIX 52 read 22 680 512 724.3668 724.3669 [ 40] + X_POSIX 52 read 23 1504 328 724.3798 724.3801 [ 40] + X_POSIX 52 read 24 0 8 726.4813 726.6272 [ 40] + X_POSIX 52 read 25 0 9 726.6305 726.6306 [ 40] + X_POSIX 52 read 26 9 87 726.6309 726.6309 [ 40] + X_POSIX 52 read 27 96 512 726.6364 726.6364 [ 40] + X_POSIX 52 read 28 2064 632 726.6388 726.6388 [ 40] + X_POSIX 52 read 29 136 544 726.6405 726.6405 [ 40] + X_POSIX 52 read 30 680 512 726.6414 726.6414 [ 40] + X_POSIX 52 read 31 1504 328 726.6637 726.6638 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 52, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 52 read 0 0 8 1497.1509 1497.2690 [209] + X_POSIX 52 read 1 0 9 1497.2691 1497.2691 [209] + X_POSIX 52 read 2 9 87 1497.2691 1497.2691 [209] + X_POSIX 52 read 3 96 512 1497.2692 1497.2692 [209] + X_POSIX 52 read 4 2064 632 1497.2692 1497.2692 [209] + X_POSIX 52 read 5 136 544 1497.2693 1497.2693 [209] + X_POSIX 52 read 6 680 512 1497.2693 1497.2693 [209] + X_POSIX 52 read 7 1504 328 1497.2879 1497.2882 [209] + X_POSIX 52 read 8 0 8 1497.9772 1497.9967 [209] + X_POSIX 52 read 9 0 9 1497.9998 1497.9998 [209] + X_POSIX 52 read 10 9 87 1498.0001 1498.0001 [209] + X_POSIX 52 read 11 96 512 1498.0057 1498.0058 [209] + X_POSIX 52 read 12 2064 632 1498.0080 1498.0081 [209] + X_POSIX 52 read 13 136 544 1498.0097 1498.0097 [209] + X_POSIX 52 read 14 680 512 1498.0106 1498.0106 [209] + X_POSIX 52 read 15 1504 328 1498.0342 1498.0342 [209] + X_POSIX 52 read 16 0 8 1498.7310 1498.8198 [209] + X_POSIX 52 read 17 0 9 1498.8198 1498.8199 [209] + X_POSIX 52 read 18 9 87 1498.8199 1498.8199 [209] + X_POSIX 52 read 19 96 512 1498.8199 1498.8199 [209] + X_POSIX 52 read 20 2064 632 1498.8199 1498.8200 [209] + X_POSIX 52 read 21 136 544 1498.8200 1498.8200 [209] + X_POSIX 52 read 22 680 512 1498.8200 1498.8200 [209] + X_POSIX 52 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 52 read 24 0 8 1500.6203 1500.7175 [209] + X_POSIX 52 read 25 0 9 1500.7203 1500.7203 [209] + X_POSIX 52 read 26 9 87 1500.7206 1500.7207 [209] + X_POSIX 52 read 27 96 512 1500.7262 1500.7262 [209] + X_POSIX 52 read 28 2064 632 1500.7285 1500.7286 [209] + X_POSIX 52 read 29 136 544 1500.7303 1500.7303 [209] + X_POSIX 52 read 30 680 512 1500.7311 1500.7311 [209] + X_POSIX 52 read 31 1504 328 1500.7545 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 53, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 53 read 0 0 342 1.2867 1.2898 [ 33] + X_POSIX 53 read 1 342 0 1.3015 1.3016 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 53, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 53 read 0 0 8 722.4096 722.5125 [ 40] + X_POSIX 53 read 1 0 9 722.5158 722.5158 [ 40] + X_POSIX 53 read 2 9 87 722.5162 722.5162 [ 40] + X_POSIX 53 read 3 96 512 722.5219 722.5220 [ 40] + X_POSIX 53 read 4 2064 632 722.5243 722.5243 [ 40] + X_POSIX 53 read 5 136 544 722.5261 722.5261 [ 40] + X_POSIX 53 read 6 680 512 722.5270 722.5270 [ 40] + X_POSIX 53 read 7 1504 328 722.5635 722.5635 [ 40] + X_POSIX 53 read 8 0 8 723.3787 723.4007 [ 40] + X_POSIX 53 read 9 0 9 723.4039 723.4039 [ 40] + X_POSIX 53 read 10 9 87 723.4042 723.4042 [ 40] + X_POSIX 53 read 11 96 512 723.4095 723.4096 [ 40] + X_POSIX 53 read 12 2064 632 723.4118 723.4119 [ 40] + X_POSIX 53 read 13 136 544 723.4135 723.4136 [ 40] + X_POSIX 53 read 14 680 512 723.4144 723.4144 [ 40] + X_POSIX 53 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 53 read 16 0 8 724.2773 724.3729 [ 40] + X_POSIX 53 read 17 0 9 724.3729 724.3730 [ 40] + X_POSIX 53 read 18 9 87 724.3730 724.3730 [ 40] + X_POSIX 53 read 19 96 512 724.3730 724.3730 [ 40] + X_POSIX 53 read 20 2064 632 724.3730 724.3731 [ 40] + X_POSIX 53 read 21 136 544 724.3731 724.3731 [ 40] + X_POSIX 53 read 22 680 512 724.3731 724.3731 [ 40] + X_POSIX 53 read 23 1504 328 724.3797 724.3799 [ 40] + X_POSIX 53 read 24 0 8 726.4812 726.6269 [ 40] + X_POSIX 53 read 25 0 9 726.6302 726.6302 [ 40] + X_POSIX 53 read 26 9 87 726.6305 726.6305 [ 40] + X_POSIX 53 read 27 96 512 726.6361 726.6361 [ 40] + X_POSIX 53 read 28 2064 632 726.6385 726.6385 [ 40] + X_POSIX 53 read 29 136 544 726.6402 726.6403 [ 40] + X_POSIX 53 read 30 680 512 726.6411 726.6411 [ 40] + X_POSIX 53 read 31 1504 328 726.6636 726.6636 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 53, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 53 read 0 0 8 1497.1509 1497.2623 [209] + X_POSIX 53 read 1 0 9 1497.2623 1497.2624 [209] + X_POSIX 53 read 2 9 87 1497.2624 1497.2624 [209] + X_POSIX 53 read 3 96 512 1497.2624 1497.2625 [209] + X_POSIX 53 read 4 2064 632 1497.2625 1497.2625 [209] + X_POSIX 53 read 5 136 544 1497.2625 1497.2625 [209] + X_POSIX 53 read 6 680 512 1497.2625 1497.2626 [209] + X_POSIX 53 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 53 read 8 0 8 1497.9771 1497.9967 [209] + X_POSIX 53 read 9 0 9 1497.9998 1497.9998 [209] + X_POSIX 53 read 10 9 87 1498.0001 1498.0001 [209] + X_POSIX 53 read 11 96 512 1498.0055 1498.0055 [209] + X_POSIX 53 read 12 2064 632 1498.0078 1498.0078 [209] + X_POSIX 53 read 13 136 544 1498.0095 1498.0095 [209] + X_POSIX 53 read 14 680 512 1498.0103 1498.0104 [209] + X_POSIX 53 read 15 1504 328 1498.0343 1498.0343 [209] + X_POSIX 53 read 16 0 8 1498.7310 1498.8157 [209] + X_POSIX 53 read 17 0 9 1498.8157 1498.8158 [209] + X_POSIX 53 read 18 9 87 1498.8158 1498.8159 [209] + X_POSIX 53 read 19 96 512 1498.8159 1498.8159 [209] + X_POSIX 53 read 20 2064 632 1498.8159 1498.8160 [209] + X_POSIX 53 read 21 136 544 1498.8160 1498.8160 [209] + X_POSIX 53 read 22 680 512 1498.8160 1498.8161 [209] + X_POSIX 53 read 23 1504 328 1498.8408 1498.8411 [209] + X_POSIX 53 read 24 0 8 1500.6204 1500.7176 [209] + X_POSIX 53 read 25 0 9 1500.7207 1500.7208 [209] + X_POSIX 53 read 26 9 87 1500.7210 1500.7211 [209] + X_POSIX 53 read 27 96 512 1500.7266 1500.7266 [209] + X_POSIX 53 read 28 2064 632 1500.7290 1500.7290 [209] + X_POSIX 53 read 29 136 544 1500.7307 1500.7307 [209] + X_POSIX 53 read 30 680 512 1500.7315 1500.7316 [209] + X_POSIX 53 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 54, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 54 read 0 0 342 1.2868 1.2900 [ 33] + X_POSIX 54 read 1 342 0 1.3016 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 54, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 54 read 0 0 8 722.4098 722.5129 [ 40] + X_POSIX 54 read 1 0 9 722.5167 722.5167 [ 40] + X_POSIX 54 read 2 9 87 722.5170 722.5170 [ 40] + X_POSIX 54 read 3 96 512 722.5228 722.5228 [ 40] + X_POSIX 54 read 4 2064 632 722.5251 722.5252 [ 40] + X_POSIX 54 read 5 136 544 722.5269 722.5269 [ 40] + X_POSIX 54 read 6 680 512 722.5278 722.5278 [ 40] + X_POSIX 54 read 7 1504 328 722.5636 722.5637 [ 40] + X_POSIX 54 read 8 0 8 723.3788 723.4005 [ 40] + X_POSIX 54 read 9 0 9 723.4036 723.4037 [ 40] + X_POSIX 54 read 10 9 87 723.4039 723.4040 [ 40] + X_POSIX 54 read 11 96 512 723.4093 723.4093 [ 40] + X_POSIX 54 read 12 2064 632 723.4116 723.4116 [ 40] + X_POSIX 54 read 13 136 544 723.4133 723.4133 [ 40] + X_POSIX 54 read 14 680 512 723.4141 723.4142 [ 40] + X_POSIX 54 read 15 1504 328 723.4598 723.4599 [ 40] + X_POSIX 54 read 16 0 8 724.2774 724.3710 [ 40] + X_POSIX 54 read 17 0 9 724.3710 724.3710 [ 40] + X_POSIX 54 read 18 9 87 724.3710 724.3710 [ 40] + X_POSIX 54 read 19 96 512 724.3710 724.3710 [ 40] + X_POSIX 54 read 20 2064 632 724.3711 724.3711 [ 40] + X_POSIX 54 read 21 136 544 724.3711 724.3711 [ 40] + X_POSIX 54 read 22 680 512 724.3711 724.3711 [ 40] + X_POSIX 54 read 23 1504 328 724.3798 724.3802 [ 40] + X_POSIX 54 read 24 0 8 726.4812 726.6266 [ 40] + X_POSIX 54 read 25 0 9 726.6268 726.6268 [ 40] + X_POSIX 54 read 26 9 87 726.6269 726.6269 [ 40] + X_POSIX 54 read 27 96 512 726.6322 726.6322 [ 40] + X_POSIX 54 read 28 2064 632 726.6346 726.6346 [ 40] + X_POSIX 54 read 29 136 544 726.6363 726.6364 [ 40] + X_POSIX 54 read 30 680 512 726.6372 726.6373 [ 40] + X_POSIX 54 read 31 1504 328 726.6640 726.6642 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 54, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 54 read 0 0 8 1497.1510 1497.2655 [209] + X_POSIX 54 read 1 0 9 1497.2656 1497.2656 [209] + X_POSIX 54 read 2 9 87 1497.2656 1497.2657 [209] + X_POSIX 54 read 3 96 512 1497.2657 1497.2657 [209] + X_POSIX 54 read 4 2064 632 1497.2657 1497.2658 [209] + X_POSIX 54 read 5 136 544 1497.2658 1497.2658 [209] + X_POSIX 54 read 6 680 512 1497.2658 1497.2658 [209] + X_POSIX 54 read 7 1504 328 1497.2880 1497.2883 [209] + X_POSIX 54 read 8 0 8 1497.9772 1497.9968 [209] + X_POSIX 54 read 9 0 9 1497.9998 1497.9999 [209] + X_POSIX 54 read 10 9 87 1498.0001 1498.0001 [209] + X_POSIX 54 read 11 96 512 1498.0055 1498.0055 [209] + X_POSIX 54 read 12 2064 632 1498.0078 1498.0078 [209] + X_POSIX 54 read 13 136 544 1498.0095 1498.0095 [209] + X_POSIX 54 read 14 680 512 1498.0103 1498.0103 [209] + X_POSIX 54 read 15 1504 328 1498.0344 1498.0344 [209] + X_POSIX 54 read 16 0 8 1498.7311 1498.8206 [209] + X_POSIX 54 read 17 0 9 1498.8206 1498.8207 [209] + X_POSIX 54 read 18 9 87 1498.8207 1498.8207 [209] + X_POSIX 54 read 19 96 512 1498.8207 1498.8207 [209] + X_POSIX 54 read 20 2064 632 1498.8207 1498.8208 [209] + X_POSIX 54 read 21 136 544 1498.8208 1498.8208 [209] + X_POSIX 54 read 22 680 512 1498.8208 1498.8208 [209] + X_POSIX 54 read 23 1504 328 1498.8409 1498.8411 [209] + X_POSIX 54 read 24 0 8 1500.6206 1500.7181 [209] + X_POSIX 54 read 25 0 9 1500.7213 1500.7213 [209] + X_POSIX 54 read 26 9 87 1500.7216 1500.7216 [209] + X_POSIX 54 read 27 96 512 1500.7272 1500.7272 [209] + X_POSIX 54 read 28 2064 632 1500.7295 1500.7295 [209] + X_POSIX 54 read 29 136 544 1500.7312 1500.7312 [209] + X_POSIX 54 read 30 680 512 1500.7320 1500.7321 [209] + X_POSIX 54 read 31 1504 328 1500.7548 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 55, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 55 read 0 0 342 1.2962 1.2962 [ 33] + X_POSIX 55 read 1 342 0 1.3015 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 55, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 55 read 0 0 8 722.4096 722.5124 [ 40] + X_POSIX 55 read 1 0 9 722.5147 722.5147 [ 40] + X_POSIX 55 read 2 9 87 722.5150 722.5150 [ 40] + X_POSIX 55 read 3 96 512 722.5208 722.5208 [ 40] + X_POSIX 55 read 4 2064 632 722.5232 722.5232 [ 40] + X_POSIX 55 read 5 136 544 722.5250 722.5250 [ 40] + X_POSIX 55 read 6 680 512 722.5259 722.5259 [ 40] + X_POSIX 55 read 7 1504 328 722.5635 722.5635 [ 40] + X_POSIX 55 read 8 0 8 723.3781 723.4001 [ 40] + X_POSIX 55 read 9 0 9 723.4022 723.4022 [ 40] + X_POSIX 55 read 10 9 87 723.4025 723.4026 [ 40] + X_POSIX 55 read 11 96 512 723.4079 723.4080 [ 40] + X_POSIX 55 read 12 2064 632 723.4102 723.4102 [ 40] + X_POSIX 55 read 13 136 544 723.4119 723.4120 [ 40] + X_POSIX 55 read 14 680 512 723.4128 723.4128 [ 40] + X_POSIX 55 read 15 1504 328 723.4598 723.4598 [ 40] + X_POSIX 55 read 16 0 8 724.2773 724.3666 [ 40] + X_POSIX 55 read 17 0 9 724.3666 724.3667 [ 40] + X_POSIX 55 read 18 9 87 724.3667 724.3668 [ 40] + X_POSIX 55 read 19 96 512 724.3668 724.3669 [ 40] + X_POSIX 55 read 20 2064 632 724.3669 724.3670 [ 40] + X_POSIX 55 read 21 136 544 724.3670 724.3670 [ 40] + X_POSIX 55 read 22 680 512 724.3670 724.3670 [ 40] + X_POSIX 55 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 55 read 24 0 8 726.4812 726.6269 [ 40] + X_POSIX 55 read 25 0 9 726.6302 726.6302 [ 40] + X_POSIX 55 read 26 9 87 726.6305 726.6305 [ 40] + X_POSIX 55 read 27 96 512 726.6361 726.6361 [ 40] + X_POSIX 55 read 28 2064 632 726.6385 726.6385 [ 40] + X_POSIX 55 read 29 136 544 726.6402 726.6402 [ 40] + X_POSIX 55 read 30 680 512 726.6411 726.6411 [ 40] + X_POSIX 55 read 31 1504 328 726.6637 726.6639 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 55, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 55 read 0 0 8 1497.1509 1497.2652 [209] + X_POSIX 55 read 1 0 9 1497.2652 1497.2652 [209] + X_POSIX 55 read 2 9 87 1497.2652 1497.2653 [209] + X_POSIX 55 read 3 96 512 1497.2653 1497.2653 [209] + X_POSIX 55 read 4 2064 632 1497.2653 1497.2653 [209] + X_POSIX 55 read 5 136 544 1497.2653 1497.2654 [209] + X_POSIX 55 read 6 680 512 1497.2654 1497.2654 [209] + X_POSIX 55 read 7 1504 328 1497.2878 1497.2882 [209] + X_POSIX 55 read 8 0 8 1497.9769 1497.9968 [209] + X_POSIX 55 read 9 0 9 1497.9999 1497.9999 [209] + X_POSIX 55 read 10 9 87 1498.0002 1498.0002 [209] + X_POSIX 55 read 11 96 512 1498.0056 1498.0056 [209] + X_POSIX 55 read 12 2064 632 1498.0079 1498.0079 [209] + X_POSIX 55 read 13 136 544 1498.0096 1498.0096 [209] + X_POSIX 55 read 14 680 512 1498.0105 1498.0105 [209] + X_POSIX 55 read 15 1504 328 1498.0343 1498.0343 [209] + X_POSIX 55 read 16 0 8 1498.7310 1498.8175 [209] + X_POSIX 55 read 17 0 9 1498.8176 1498.8176 [209] + X_POSIX 55 read 18 9 87 1498.8176 1498.8176 [209] + X_POSIX 55 read 19 96 512 1498.8176 1498.8176 [209] + X_POSIX 55 read 20 2064 632 1498.8177 1498.8177 [209] + X_POSIX 55 read 21 136 544 1498.8177 1498.8177 [209] + X_POSIX 55 read 22 680 512 1498.8177 1498.8177 [209] + X_POSIX 55 read 23 1504 328 1498.8408 1498.8411 [209] + X_POSIX 55 read 24 0 8 1500.6203 1500.7176 [209] + X_POSIX 55 read 25 0 9 1500.7206 1500.7206 [209] + X_POSIX 55 read 26 9 87 1500.7209 1500.7210 [209] + X_POSIX 55 read 27 96 512 1500.7265 1500.7265 [209] + X_POSIX 55 read 28 2064 632 1500.7288 1500.7289 [209] + X_POSIX 55 read 29 136 544 1500.7306 1500.7306 [209] + X_POSIX 55 read 30 680 512 1500.7314 1500.7314 [209] + X_POSIX 55 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 56, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 56 read 0 0 342 1.2950 1.2951 [ 33] + X_POSIX 56 read 1 342 0 1.3016 1.3018 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 56, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 56 read 0 0 8 722.4097 722.5127 [ 40] + X_POSIX 56 read 1 0 9 722.5164 722.5164 [ 40] + X_POSIX 56 read 2 9 87 722.5167 722.5167 [ 40] + X_POSIX 56 read 3 96 512 722.5225 722.5225 [ 40] + X_POSIX 56 read 4 2064 632 722.5248 722.5248 [ 40] + X_POSIX 56 read 5 136 544 722.5265 722.5266 [ 40] + X_POSIX 56 read 6 680 512 722.5274 722.5275 [ 40] + X_POSIX 56 read 7 1504 328 722.5640 722.5640 [ 40] + X_POSIX 56 read 8 0 8 723.3784 723.4001 [ 40] + X_POSIX 56 read 9 0 9 723.4005 723.4005 [ 40] + X_POSIX 56 read 10 9 87 723.4007 723.4008 [ 40] + X_POSIX 56 read 11 96 512 723.4061 723.4061 [ 40] + X_POSIX 56 read 12 2064 632 723.4084 723.4084 [ 40] + X_POSIX 56 read 13 136 544 723.4101 723.4101 [ 40] + X_POSIX 56 read 14 680 512 723.4109 723.4110 [ 40] + X_POSIX 56 read 15 1504 328 723.4598 723.4598 [ 40] + X_POSIX 56 read 16 0 8 724.2774 724.3667 [ 40] + X_POSIX 56 read 17 0 9 724.3667 724.3668 [ 40] + X_POSIX 56 read 18 9 87 724.3668 724.3668 [ 40] + X_POSIX 56 read 19 96 512 724.3668 724.3668 [ 40] + X_POSIX 56 read 20 2064 632 724.3669 724.3669 [ 40] + X_POSIX 56 read 21 136 544 724.3669 724.3670 [ 40] + X_POSIX 56 read 22 680 512 724.3670 724.3670 [ 40] + X_POSIX 56 read 23 1504 328 724.3798 724.3802 [ 40] + X_POSIX 56 read 24 0 8 726.4813 726.6271 [ 40] + X_POSIX 56 read 25 0 9 726.6306 726.6307 [ 40] + X_POSIX 56 read 26 9 87 726.6310 726.6310 [ 40] + X_POSIX 56 read 27 96 512 726.6366 726.6366 [ 40] + X_POSIX 56 read 28 2064 632 726.6389 726.6390 [ 40] + X_POSIX 56 read 29 136 544 726.6407 726.6407 [ 40] + X_POSIX 56 read 30 680 512 726.6416 726.6416 [ 40] + X_POSIX 56 read 31 1504 328 726.6641 726.6643 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 56, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 56 read 0 0 8 1497.1508 1497.2690 [209] + X_POSIX 56 read 1 0 9 1497.2691 1497.2692 [209] + X_POSIX 56 read 2 9 87 1497.2692 1497.2692 [209] + X_POSIX 56 read 3 96 512 1497.2693 1497.2693 [209] + X_POSIX 56 read 4 2064 632 1497.2693 1497.2693 [209] + X_POSIX 56 read 5 136 544 1497.2693 1497.2694 [209] + X_POSIX 56 read 6 680 512 1497.2694 1497.2694 [209] + X_POSIX 56 read 7 1504 328 1497.2879 1497.2883 [209] + X_POSIX 56 read 8 0 8 1497.9770 1497.9964 [209] + X_POSIX 56 read 9 0 9 1497.9981 1497.9981 [209] + X_POSIX 56 read 10 9 87 1497.9984 1497.9984 [209] + X_POSIX 56 read 11 96 512 1498.0037 1498.0037 [209] + X_POSIX 56 read 12 2064 632 1498.0059 1498.0060 [209] + X_POSIX 56 read 13 136 544 1498.0076 1498.0077 [209] + X_POSIX 56 read 14 680 512 1498.0085 1498.0085 [209] + X_POSIX 56 read 15 1504 328 1498.0346 1498.0347 [209] + X_POSIX 56 read 16 0 8 1498.7311 1498.8173 [209] + X_POSIX 56 read 17 0 9 1498.8173 1498.8174 [209] + X_POSIX 56 read 18 9 87 1498.8174 1498.8174 [209] + X_POSIX 56 read 19 96 512 1498.8174 1498.8174 [209] + X_POSIX 56 read 20 2064 632 1498.8174 1498.8175 [209] + X_POSIX 56 read 21 136 544 1498.8175 1498.8175 [209] + X_POSIX 56 read 22 680 512 1498.8175 1498.8175 [209] + X_POSIX 56 read 23 1504 328 1498.8409 1498.8413 [209] + X_POSIX 56 read 24 0 8 1500.6205 1500.7180 [209] + X_POSIX 56 read 25 0 9 1500.7212 1500.7212 [209] + X_POSIX 56 read 26 9 87 1500.7215 1500.7216 [209] + X_POSIX 56 read 27 96 512 1500.7271 1500.7271 [209] + X_POSIX 56 read 28 2064 632 1500.7294 1500.7295 [209] + X_POSIX 56 read 29 136 544 1500.7314 1500.7315 [209] + X_POSIX 56 read 30 680 512 1500.7323 1500.7323 [209] + X_POSIX 56 read 31 1504 328 1500.7548 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 57, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 57 read 0 0 342 1.2984 1.2984 [ 33] + X_POSIX 57 read 1 342 0 1.3016 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 57, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 57 read 0 0 8 722.4097 722.5125 [ 40] + X_POSIX 57 read 1 0 9 722.5145 722.5145 [ 40] + X_POSIX 57 read 2 9 87 722.5148 722.5148 [ 40] + X_POSIX 57 read 3 96 512 722.5205 722.5205 [ 40] + X_POSIX 57 read 4 2064 632 722.5229 722.5230 [ 40] + X_POSIX 57 read 5 136 544 722.5247 722.5247 [ 40] + X_POSIX 57 read 6 680 512 722.5256 722.5256 [ 40] + X_POSIX 57 read 7 1504 328 722.5637 722.5637 [ 40] + X_POSIX 57 read 8 0 8 723.3781 723.4006 [ 40] + X_POSIX 57 read 9 0 9 723.4037 723.4037 [ 40] + X_POSIX 57 read 10 9 87 723.4040 723.4040 [ 40] + X_POSIX 57 read 11 96 512 723.4094 723.4094 [ 40] + X_POSIX 57 read 12 2064 632 723.4117 723.4117 [ 40] + X_POSIX 57 read 13 136 544 723.4134 723.4134 [ 40] + X_POSIX 57 read 14 680 512 723.4143 723.4143 [ 40] + X_POSIX 57 read 15 1504 328 723.4598 723.4598 [ 40] + X_POSIX 57 read 16 0 8 724.2774 724.3682 [ 40] + X_POSIX 57 read 17 0 9 724.3682 724.3683 [ 40] + X_POSIX 57 read 18 9 87 724.3683 724.3683 [ 40] + X_POSIX 57 read 19 96 512 724.3683 724.3683 [ 40] + X_POSIX 57 read 20 2064 632 724.3684 724.3684 [ 40] + X_POSIX 57 read 21 136 544 724.3684 724.3684 [ 40] + X_POSIX 57 read 22 680 512 724.3684 724.3684 [ 40] + X_POSIX 57 read 23 1504 328 724.3798 724.3802 [ 40] + X_POSIX 57 read 24 0 8 726.4813 726.6273 [ 40] + X_POSIX 57 read 25 0 9 726.6306 726.6306 [ 40] + X_POSIX 57 read 26 9 87 726.6309 726.6310 [ 40] + X_POSIX 57 read 27 96 512 726.6366 726.6366 [ 40] + X_POSIX 57 read 28 2064 632 726.6389 726.6390 [ 40] + X_POSIX 57 read 29 136 544 726.6407 726.6407 [ 40] + X_POSIX 57 read 30 680 512 726.6416 726.6416 [ 40] + X_POSIX 57 read 31 1504 328 726.6638 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 57, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 57 read 0 0 8 1497.1509 1497.2656 [209] + X_POSIX 57 read 1 0 9 1497.2656 1497.2656 [209] + X_POSIX 57 read 2 9 87 1497.2656 1497.2657 [209] + X_POSIX 57 read 3 96 512 1497.2657 1497.2657 [209] + X_POSIX 57 read 4 2064 632 1497.2657 1497.2658 [209] + X_POSIX 57 read 5 136 544 1497.2658 1497.2658 [209] + X_POSIX 57 read 6 680 512 1497.2658 1497.2658 [209] + X_POSIX 57 read 7 1504 328 1497.2879 1497.2882 [209] + X_POSIX 57 read 8 0 8 1497.9772 1497.9967 [209] + X_POSIX 57 read 9 0 9 1497.9997 1497.9998 [209] + X_POSIX 57 read 10 9 87 1498.0000 1498.0001 [209] + X_POSIX 57 read 11 96 512 1498.0054 1498.0054 [209] + X_POSIX 57 read 12 2064 632 1498.0077 1498.0077 [209] + X_POSIX 57 read 13 136 544 1498.0094 1498.0094 [209] + X_POSIX 57 read 14 680 512 1498.0103 1498.0103 [209] + X_POSIX 57 read 15 1504 328 1498.0343 1498.0344 [209] + X_POSIX 57 read 16 0 8 1498.7311 1498.8196 [209] + X_POSIX 57 read 17 0 9 1498.8196 1498.8197 [209] + X_POSIX 57 read 18 9 87 1498.8197 1498.8197 [209] + X_POSIX 57 read 19 96 512 1498.8197 1498.8197 [209] + X_POSIX 57 read 20 2064 632 1498.8197 1498.8198 [209] + X_POSIX 57 read 21 136 544 1498.8198 1498.8198 [209] + X_POSIX 57 read 22 680 512 1498.8198 1498.8198 [209] + X_POSIX 57 read 23 1504 328 1498.8409 1498.8412 [209] + X_POSIX 57 read 24 0 8 1500.6205 1500.7179 [209] + X_POSIX 57 read 25 0 9 1500.7211 1500.7211 [209] + X_POSIX 57 read 26 9 87 1500.7214 1500.7214 [209] + X_POSIX 57 read 27 96 512 1500.7270 1500.7270 [209] + X_POSIX 57 read 28 2064 632 1500.7293 1500.7293 [209] + X_POSIX 57 read 29 136 544 1500.7310 1500.7310 [209] + X_POSIX 57 read 30 680 512 1500.7319 1500.7319 [209] + X_POSIX 57 read 31 1504 328 1500.7547 1500.7547 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 58, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 58 read 0 0 342 1.2867 1.2898 [ 33] + X_POSIX 58 read 1 342 0 1.3015 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 58, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 58 read 0 0 8 722.4096 722.5124 [ 40] + X_POSIX 58 read 1 0 9 722.5153 722.5153 [ 40] + X_POSIX 58 read 2 9 87 722.5157 722.5157 [ 40] + X_POSIX 58 read 3 96 512 722.5214 722.5214 [ 40] + X_POSIX 58 read 4 2064 632 722.5237 722.5238 [ 40] + X_POSIX 58 read 5 136 544 722.5255 722.5255 [ 40] + X_POSIX 58 read 6 680 512 722.5264 722.5264 [ 40] + X_POSIX 58 read 7 1504 328 722.5640 722.5640 [ 40] + X_POSIX 58 read 8 0 8 723.3783 723.4001 [ 40] + X_POSIX 58 read 9 0 9 723.4011 723.4011 [ 40] + X_POSIX 58 read 10 9 87 723.4014 723.4015 [ 40] + X_POSIX 58 read 11 96 512 723.4068 723.4068 [ 40] + X_POSIX 58 read 12 2064 632 723.4091 723.4091 [ 40] + X_POSIX 58 read 13 136 544 723.4108 723.4108 [ 40] + X_POSIX 58 read 14 680 512 723.4116 723.4116 [ 40] + X_POSIX 58 read 15 1504 328 723.4599 723.4599 [ 40] + X_POSIX 58 read 16 0 8 724.2773 724.3680 [ 40] + X_POSIX 58 read 17 0 9 724.3680 724.3680 [ 40] + X_POSIX 58 read 18 9 87 724.3680 724.3681 [ 40] + X_POSIX 58 read 19 96 512 724.3681 724.3681 [ 40] + X_POSIX 58 read 20 2064 632 724.3681 724.3681 [ 40] + X_POSIX 58 read 21 136 544 724.3681 724.3682 [ 40] + X_POSIX 58 read 22 680 512 724.3682 724.3682 [ 40] + X_POSIX 58 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 58 read 24 0 8 726.4813 726.6271 [ 40] + X_POSIX 58 read 25 0 9 726.6304 726.6305 [ 40] + X_POSIX 58 read 26 9 87 726.6307 726.6308 [ 40] + X_POSIX 58 read 27 96 512 726.6364 726.6364 [ 40] + X_POSIX 58 read 28 2064 632 726.6387 726.6388 [ 40] + X_POSIX 58 read 29 136 544 726.6405 726.6405 [ 40] + X_POSIX 58 read 30 680 512 726.6414 726.6414 [ 40] + X_POSIX 58 read 31 1504 328 726.6636 726.6637 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 58, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 58 read 0 0 8 1497.1509 1497.2670 [209] + X_POSIX 58 read 1 0 9 1497.2670 1497.2670 [209] + X_POSIX 58 read 2 9 87 1497.2670 1497.2671 [209] + X_POSIX 58 read 3 96 512 1497.2671 1497.2671 [209] + X_POSIX 58 read 4 2064 632 1497.2671 1497.2672 [209] + X_POSIX 58 read 5 136 544 1497.2672 1497.2672 [209] + X_POSIX 58 read 6 680 512 1497.2672 1497.2672 [209] + X_POSIX 58 read 7 1504 328 1497.2878 1497.2882 [209] + X_POSIX 58 read 8 0 8 1497.9771 1497.9964 [209] + X_POSIX 58 read 9 0 9 1497.9990 1497.9991 [209] + X_POSIX 58 read 10 9 87 1497.9993 1497.9994 [209] + X_POSIX 58 read 11 96 512 1498.0047 1498.0047 [209] + X_POSIX 58 read 12 2064 632 1498.0070 1498.0070 [209] + X_POSIX 58 read 13 136 544 1498.0086 1498.0087 [209] + X_POSIX 58 read 14 680 512 1498.0095 1498.0095 [209] + X_POSIX 58 read 15 1504 328 1498.0342 1498.0342 [209] + X_POSIX 58 read 16 0 8 1498.7310 1498.8205 [209] + X_POSIX 58 read 17 0 9 1498.8205 1498.8205 [209] + X_POSIX 58 read 18 9 87 1498.8205 1498.8206 [209] + X_POSIX 58 read 19 96 512 1498.8206 1498.8206 [209] + X_POSIX 58 read 20 2064 632 1498.8206 1498.8206 [209] + X_POSIX 58 read 21 136 544 1498.8206 1498.8207 [209] + X_POSIX 58 read 22 680 512 1498.8207 1498.8207 [209] + X_POSIX 58 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 58 read 24 0 8 1500.6205 1500.7177 [209] + X_POSIX 58 read 25 0 9 1500.7208 1500.7208 [209] + X_POSIX 58 read 26 9 87 1500.7211 1500.7211 [209] + X_POSIX 58 read 27 96 512 1500.7267 1500.7267 [209] + X_POSIX 58 read 28 2064 632 1500.7290 1500.7290 [209] + X_POSIX 58 read 29 136 544 1500.7308 1500.7308 [209] + X_POSIX 58 read 30 680 512 1500.7316 1500.7316 [209] + X_POSIX 58 read 31 1504 328 1500.7548 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 59, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 59 read 0 0 342 1.3032 1.3032 [ 33] + X_POSIX 59 read 1 342 0 1.3034 1.3034 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 59, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 59 read 0 0 8 722.4096 722.5124 [ 40] + X_POSIX 59 read 1 0 9 722.5158 722.5158 [ 40] + X_POSIX 59 read 2 9 87 722.5161 722.5161 [ 40] + X_POSIX 59 read 3 96 512 722.5218 722.5219 [ 40] + X_POSIX 59 read 4 2064 632 722.5242 722.5242 [ 40] + X_POSIX 59 read 5 136 544 722.5260 722.5260 [ 40] + X_POSIX 59 read 6 680 512 722.5269 722.5269 [ 40] + X_POSIX 59 read 7 1504 328 722.5636 722.5636 [ 40] + X_POSIX 59 read 8 0 8 723.3787 723.4007 [ 40] + X_POSIX 59 read 9 0 9 723.4038 723.4038 [ 40] + X_POSIX 59 read 10 9 87 723.4041 723.4041 [ 40] + X_POSIX 59 read 11 96 512 723.4095 723.4095 [ 40] + X_POSIX 59 read 12 2064 632 723.4118 723.4118 [ 40] + X_POSIX 59 read 13 136 544 723.4135 723.4135 [ 40] + X_POSIX 59 read 14 680 512 723.4144 723.4144 [ 40] + X_POSIX 59 read 15 1504 328 723.4597 723.4597 [ 40] + X_POSIX 59 read 16 0 8 724.2773 724.3704 [ 40] + X_POSIX 59 read 17 0 9 724.3704 724.3705 [ 40] + X_POSIX 59 read 18 9 87 724.3705 724.3705 [ 40] + X_POSIX 59 read 19 96 512 724.3705 724.3705 [ 40] + X_POSIX 59 read 20 2064 632 724.3705 724.3705 [ 40] + X_POSIX 59 read 21 136 544 724.3706 724.3706 [ 40] + X_POSIX 59 read 22 680 512 724.3706 724.3706 [ 40] + X_POSIX 59 read 23 1504 328 724.3797 724.3800 [ 40] + X_POSIX 59 read 24 0 8 726.4811 726.6269 [ 40] + X_POSIX 59 read 25 0 9 726.6302 726.6302 [ 40] + X_POSIX 59 read 26 9 87 726.6305 726.6305 [ 40] + X_POSIX 59 read 27 96 512 726.6361 726.6362 [ 40] + X_POSIX 59 read 28 2064 632 726.6385 726.6386 [ 40] + X_POSIX 59 read 29 136 544 726.6403 726.6403 [ 40] + X_POSIX 59 read 30 680 512 726.6411 726.6412 [ 40] + X_POSIX 59 read 31 1504 328 726.6640 726.6642 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 59, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 59 read 0 0 8 1497.1508 1497.2665 [209] + X_POSIX 59 read 1 0 9 1497.2666 1497.2666 [209] + X_POSIX 59 read 2 9 87 1497.2666 1497.2666 [209] + X_POSIX 59 read 3 96 512 1497.2666 1497.2667 [209] + X_POSIX 59 read 4 2064 632 1497.2667 1497.2667 [209] + X_POSIX 59 read 5 136 544 1497.2667 1497.2667 [209] + X_POSIX 59 read 6 680 512 1497.2667 1497.2668 [209] + X_POSIX 59 read 7 1504 328 1497.2878 1497.2882 [209] + X_POSIX 59 read 8 0 8 1497.9769 1497.9968 [209] + X_POSIX 59 read 9 0 9 1497.9999 1498.0000 [209] + X_POSIX 59 read 10 9 87 1498.0002 1498.0003 [209] + X_POSIX 59 read 11 96 512 1498.0056 1498.0057 [209] + X_POSIX 59 read 12 2064 632 1498.0079 1498.0080 [209] + X_POSIX 59 read 13 136 544 1498.0096 1498.0097 [209] + X_POSIX 59 read 14 680 512 1498.0105 1498.0105 [209] + X_POSIX 59 read 15 1504 328 1498.0341 1498.0342 [209] + X_POSIX 59 read 16 0 8 1498.7310 1498.8172 [209] + X_POSIX 59 read 17 0 9 1498.8172 1498.8172 [209] + X_POSIX 59 read 18 9 87 1498.8172 1498.8173 [209] + X_POSIX 59 read 19 96 512 1498.8173 1498.8173 [209] + X_POSIX 59 read 20 2064 632 1498.8173 1498.8173 [209] + X_POSIX 59 read 21 136 544 1498.8173 1498.8174 [209] + X_POSIX 59 read 22 680 512 1498.8174 1498.8174 [209] + X_POSIX 59 read 23 1504 328 1498.8407 1498.8411 [209] + X_POSIX 59 read 24 0 8 1500.6204 1500.7176 [209] + X_POSIX 59 read 25 0 9 1500.7206 1500.7207 [209] + X_POSIX 59 read 26 9 87 1500.7209 1500.7209 [209] + X_POSIX 59 read 27 96 512 1500.7265 1500.7265 [209] + X_POSIX 59 read 28 2064 632 1500.7288 1500.7289 [209] + X_POSIX 59 read 29 136 544 1500.7306 1500.7306 [209] + X_POSIX 59 read 30 680 512 1500.7314 1500.7314 [209] + X_POSIX 59 read 31 1504 328 1500.7548 1500.7549 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 60, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 60 read 0 0 342 1.2868 1.2900 [ 33] + X_POSIX 60 read 1 342 0 1.3016 1.3017 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 60, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 60 read 0 0 8 722.4097 722.5127 [ 40] + X_POSIX 60 read 1 0 9 722.5164 722.5165 [ 40] + X_POSIX 60 read 2 9 87 722.5168 722.5168 [ 40] + X_POSIX 60 read 3 96 512 722.5225 722.5226 [ 40] + X_POSIX 60 read 4 2064 632 722.5249 722.5249 [ 40] + X_POSIX 60 read 5 136 544 722.5266 722.5267 [ 40] + X_POSIX 60 read 6 680 512 722.5275 722.5275 [ 40] + X_POSIX 60 read 7 1504 328 722.5635 722.5635 [ 40] + X_POSIX 60 read 8 0 8 723.3787 723.4003 [ 40] + X_POSIX 60 read 9 0 9 723.4029 723.4029 [ 40] + X_POSIX 60 read 10 9 87 723.4032 723.4032 [ 40] + X_POSIX 60 read 11 96 512 723.4085 723.4086 [ 40] + X_POSIX 60 read 12 2064 632 723.4108 723.4108 [ 40] + X_POSIX 60 read 13 136 544 723.4125 723.4125 [ 40] + X_POSIX 60 read 14 680 512 723.4133 723.4134 [ 40] + X_POSIX 60 read 15 1504 328 723.4598 723.4599 [ 40] + X_POSIX 60 read 16 0 8 724.2774 724.3728 [ 40] + X_POSIX 60 read 17 0 9 724.3728 724.3728 [ 40] + X_POSIX 60 read 18 9 87 724.3728 724.3728 [ 40] + X_POSIX 60 read 19 96 512 724.3728 724.3729 [ 40] + X_POSIX 60 read 20 2064 632 724.3729 724.3729 [ 40] + X_POSIX 60 read 21 136 544 724.3729 724.3729 [ 40] + X_POSIX 60 read 22 680 512 724.3729 724.3730 [ 40] + X_POSIX 60 read 23 1504 328 724.3798 724.3801 [ 40] + X_POSIX 60 read 24 0 8 726.4812 726.6266 [ 40] + X_POSIX 60 read 25 0 9 726.6271 726.6271 [ 40] + X_POSIX 60 read 26 9 87 726.6274 726.6274 [ 40] + X_POSIX 60 read 27 96 512 726.6330 726.6330 [ 40] + X_POSIX 60 read 28 2064 632 726.6354 726.6354 [ 40] + X_POSIX 60 read 29 136 544 726.6372 726.6372 [ 40] + X_POSIX 60 read 30 680 512 726.6381 726.6382 [ 40] + X_POSIX 60 read 31 1504 328 726.6638 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 60, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 60 read 0 0 8 1497.1510 1497.2623 [209] + X_POSIX 60 read 1 0 9 1497.2625 1497.2625 [209] + X_POSIX 60 read 2 9 87 1497.2625 1497.2625 [209] + X_POSIX 60 read 3 96 512 1497.2625 1497.2626 [209] + X_POSIX 60 read 4 2064 632 1497.2626 1497.2626 [209] + X_POSIX 60 read 5 136 544 1497.2626 1497.2626 [209] + X_POSIX 60 read 6 680 512 1497.2626 1497.2627 [209] + X_POSIX 60 read 7 1504 328 1497.2879 1497.2883 [209] + X_POSIX 60 read 8 0 8 1497.9771 1497.9965 [209] + X_POSIX 60 read 9 0 9 1497.9993 1497.9994 [209] + X_POSIX 60 read 10 9 87 1497.9997 1497.9997 [209] + X_POSIX 60 read 11 96 512 1498.0050 1498.0050 [209] + X_POSIX 60 read 12 2064 632 1498.0073 1498.0073 [209] + X_POSIX 60 read 13 136 544 1498.0090 1498.0090 [209] + X_POSIX 60 read 14 680 512 1498.0098 1498.0098 [209] + X_POSIX 60 read 15 1504 328 1498.0346 1498.0346 [209] + X_POSIX 60 read 16 0 8 1498.7311 1498.8156 [209] + X_POSIX 60 read 17 0 9 1498.8157 1498.8157 [209] + X_POSIX 60 read 18 9 87 1498.8157 1498.8158 [209] + X_POSIX 60 read 19 96 512 1498.8158 1498.8158 [209] + X_POSIX 60 read 20 2064 632 1498.8159 1498.8159 [209] + X_POSIX 60 read 21 136 544 1498.8159 1498.8160 [209] + X_POSIX 60 read 22 680 512 1498.8160 1498.8161 [209] + X_POSIX 60 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 60 read 24 0 8 1500.6204 1500.7176 [209] + X_POSIX 60 read 25 0 9 1500.7206 1500.7206 [209] + X_POSIX 60 read 26 9 87 1500.7209 1500.7209 [209] + X_POSIX 60 read 27 96 512 1500.7265 1500.7265 [209] + X_POSIX 60 read 28 2064 632 1500.7291 1500.7291 [209] + X_POSIX 60 read 29 136 544 1500.7308 1500.7308 [209] + X_POSIX 60 read 30 680 512 1500.7317 1500.7317 [209] + X_POSIX 60 read 31 1504 328 1500.7546 1500.7547 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 61, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 61 read 0 0 342 1.2867 1.2898 [ 33] + X_POSIX 61 read 1 342 0 1.3015 1.3016 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 61, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 61 read 0 0 8 722.4096 722.5123 [ 40] + X_POSIX 61 read 1 0 9 722.5144 722.5144 [ 40] + X_POSIX 61 read 2 9 87 722.5147 722.5147 [ 40] + X_POSIX 61 read 3 96 512 722.5204 722.5205 [ 40] + X_POSIX 61 read 4 2064 632 722.5229 722.5229 [ 40] + X_POSIX 61 read 5 136 544 722.5246 722.5247 [ 40] + X_POSIX 61 read 6 680 512 722.5255 722.5255 [ 40] + X_POSIX 61 read 7 1504 328 722.5638 722.5638 [ 40] + X_POSIX 61 read 8 0 8 723.3787 723.4005 [ 40] + X_POSIX 61 read 9 0 9 723.4036 723.4036 [ 40] + X_POSIX 61 read 10 9 87 723.4039 723.4039 [ 40] + X_POSIX 61 read 11 96 512 723.4093 723.4093 [ 40] + X_POSIX 61 read 12 2064 632 723.4116 723.4116 [ 40] + X_POSIX 61 read 13 136 544 723.4133 723.4133 [ 40] + X_POSIX 61 read 14 680 512 723.4142 723.4142 [ 40] + X_POSIX 61 read 15 1504 328 723.4597 723.4597 [ 40] + X_POSIX 61 read 16 0 8 724.2773 724.3677 [ 40] + X_POSIX 61 read 17 0 9 724.3677 724.3677 [ 40] + X_POSIX 61 read 18 9 87 724.3678 724.3678 [ 40] + X_POSIX 61 read 19 96 512 724.3678 724.3678 [ 40] + X_POSIX 61 read 20 2064 632 724.3678 724.3678 [ 40] + X_POSIX 61 read 21 136 544 724.3678 724.3679 [ 40] + X_POSIX 61 read 22 680 512 724.3679 724.3679 [ 40] + X_POSIX 61 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 61 read 24 0 8 726.4810 726.6267 [ 40] + X_POSIX 61 read 25 0 9 726.6297 726.6298 [ 40] + X_POSIX 61 read 26 9 87 726.6301 726.6301 [ 40] + X_POSIX 61 read 27 96 512 726.6357 726.6357 [ 40] + X_POSIX 61 read 28 2064 632 726.6380 726.6381 [ 40] + X_POSIX 61 read 29 136 544 726.6398 726.6398 [ 40] + X_POSIX 61 read 30 680 512 726.6407 726.6407 [ 40] + X_POSIX 61 read 31 1504 328 726.6637 726.6638 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 61, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 61 read 0 0 8 1497.1508 1497.2655 [209] + X_POSIX 61 read 1 0 9 1497.2655 1497.2656 [209] + X_POSIX 61 read 2 9 87 1497.2656 1497.2656 [209] + X_POSIX 61 read 3 96 512 1497.2656 1497.2656 [209] + X_POSIX 61 read 4 2064 632 1497.2656 1497.2657 [209] + X_POSIX 61 read 5 136 544 1497.2657 1497.2657 [209] + X_POSIX 61 read 6 680 512 1497.2657 1497.2658 [209] + X_POSIX 61 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 61 read 8 0 8 1497.9769 1497.9967 [209] + X_POSIX 61 read 9 0 9 1497.9998 1497.9999 [209] + X_POSIX 61 read 10 9 87 1498.0001 1498.0001 [209] + X_POSIX 61 read 11 96 512 1498.0055 1498.0055 [209] + X_POSIX 61 read 12 2064 632 1498.0078 1498.0078 [209] + X_POSIX 61 read 13 136 544 1498.0095 1498.0095 [209] + X_POSIX 61 read 14 680 512 1498.0103 1498.0104 [209] + X_POSIX 61 read 15 1504 328 1498.0342 1498.0342 [209] + X_POSIX 61 read 16 0 8 1498.7310 1498.8194 [209] + X_POSIX 61 read 17 0 9 1498.8195 1498.8195 [209] + X_POSIX 61 read 18 9 87 1498.8195 1498.8195 [209] + X_POSIX 61 read 19 96 512 1498.8195 1498.8195 [209] + X_POSIX 61 read 20 2064 632 1498.8196 1498.8196 [209] + X_POSIX 61 read 21 136 544 1498.8196 1498.8196 [209] + X_POSIX 61 read 22 680 512 1498.8196 1498.8196 [209] + X_POSIX 61 read 23 1504 328 1498.8407 1498.8411 [209] + X_POSIX 61 read 24 0 8 1500.6202 1500.7175 [209] + X_POSIX 61 read 25 0 9 1500.7204 1500.7204 [209] + X_POSIX 61 read 26 9 87 1500.7207 1500.7207 [209] + X_POSIX 61 read 27 96 512 1500.7262 1500.7262 [209] + X_POSIX 61 read 28 2064 632 1500.7286 1500.7286 [209] + X_POSIX 61 read 29 136 544 1500.7303 1500.7303 [209] + X_POSIX 61 read 30 680 512 1500.7312 1500.7312 [209] + X_POSIX 61 read 31 1504 328 1500.7548 1500.7548 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 62, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 62 read 0 0 342 1.3058 1.3058 [ 33] + X_POSIX 62 read 1 342 0 1.3060 1.3060 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 62, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 62 read 0 0 8 722.4097 722.5125 [ 40] + X_POSIX 62 read 1 0 9 722.5160 722.5160 [ 40] + X_POSIX 62 read 2 9 87 722.5163 722.5163 [ 40] + X_POSIX 62 read 3 96 512 722.5220 722.5220 [ 40] + X_POSIX 62 read 4 2064 632 722.5244 722.5244 [ 40] + X_POSIX 62 read 5 136 544 722.5261 722.5262 [ 40] + X_POSIX 62 read 6 680 512 722.5270 722.5271 [ 40] + X_POSIX 62 read 7 1504 328 722.5638 722.5638 [ 40] + X_POSIX 62 read 8 0 8 723.3783 723.4001 [ 40] + X_POSIX 62 read 9 0 9 723.4008 723.4009 [ 40] + X_POSIX 62 read 10 9 87 723.4012 723.4012 [ 40] + X_POSIX 62 read 11 96 512 723.4065 723.4066 [ 40] + X_POSIX 62 read 12 2064 632 723.4088 723.4089 [ 40] + X_POSIX 62 read 13 136 544 723.4105 723.4106 [ 40] + X_POSIX 62 read 14 680 512 723.4114 723.4114 [ 40] + X_POSIX 62 read 15 1504 328 723.4600 723.4600 [ 40] + X_POSIX 62 read 16 0 8 724.2773 724.3701 [ 40] + X_POSIX 62 read 17 0 9 724.3701 724.3702 [ 40] + X_POSIX 62 read 18 9 87 724.3702 724.3702 [ 40] + X_POSIX 62 read 19 96 512 724.3702 724.3702 [ 40] + X_POSIX 62 read 20 2064 632 724.3702 724.3703 [ 40] + X_POSIX 62 read 21 136 544 724.3703 724.3703 [ 40] + X_POSIX 62 read 22 680 512 724.3703 724.3703 [ 40] + X_POSIX 62 read 23 1504 328 724.3797 724.3802 [ 40] + X_POSIX 62 read 24 0 8 726.4812 726.6266 [ 40] + X_POSIX 62 read 25 0 9 726.6276 726.6276 [ 40] + X_POSIX 62 read 26 9 87 726.6279 726.6280 [ 40] + X_POSIX 62 read 27 96 512 726.6336 726.6336 [ 40] + X_POSIX 62 read 28 2064 632 726.6360 726.6360 [ 40] + X_POSIX 62 read 29 136 544 726.6377 726.6378 [ 40] + X_POSIX 62 read 30 680 512 726.6387 726.6387 [ 40] + X_POSIX 62 read 31 1504 328 726.6638 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 62, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 62 read 0 0 8 1497.1509 1497.2658 [209] + X_POSIX 62 read 1 0 9 1497.2659 1497.2659 [209] + X_POSIX 62 read 2 9 87 1497.2659 1497.2659 [209] + X_POSIX 62 read 3 96 512 1497.2659 1497.2660 [209] + X_POSIX 62 read 4 2064 632 1497.2660 1497.2660 [209] + X_POSIX 62 read 5 136 544 1497.2660 1497.2660 [209] + X_POSIX 62 read 6 680 512 1497.2661 1497.2661 [209] + X_POSIX 62 read 7 1504 328 1497.2879 1497.2882 [209] + X_POSIX 62 read 8 0 8 1497.9771 1497.9966 [209] + X_POSIX 62 read 9 0 9 1497.9997 1497.9997 [209] + X_POSIX 62 read 10 9 87 1498.0000 1498.0000 [209] + X_POSIX 62 read 11 96 512 1498.0057 1498.0057 [209] + X_POSIX 62 read 12 2064 632 1498.0080 1498.0080 [209] + X_POSIX 62 read 13 136 544 1498.0097 1498.0097 [209] + X_POSIX 62 read 14 680 512 1498.0106 1498.0106 [209] + X_POSIX 62 read 15 1504 328 1498.0348 1498.0348 [209] + X_POSIX 62 read 16 0 8 1498.7310 1498.8156 [209] + X_POSIX 62 read 17 0 9 1498.8156 1498.8157 [209] + X_POSIX 62 read 18 9 87 1498.8157 1498.8158 [209] + X_POSIX 62 read 19 96 512 1498.8158 1498.8158 [209] + X_POSIX 62 read 20 2064 632 1498.8159 1498.8159 [209] + X_POSIX 62 read 21 136 544 1498.8159 1498.8159 [209] + X_POSIX 62 read 22 680 512 1498.8159 1498.8160 [209] + X_POSIX 62 read 23 1504 328 1498.8408 1498.8412 [209] + X_POSIX 62 read 24 0 8 1500.6205 1500.7178 [209] + X_POSIX 62 read 25 0 9 1500.7209 1500.7209 [209] + X_POSIX 62 read 26 9 87 1500.7212 1500.7212 [209] + X_POSIX 62 read 27 96 512 1500.7268 1500.7268 [209] + X_POSIX 62 read 28 2064 632 1500.7291 1500.7291 [209] + X_POSIX 62 read 29 136 544 1500.7308 1500.7308 [209] + X_POSIX 62 read 30 680 512 1500.7317 1500.7317 [209] + X_POSIX 62 read 31 1504 328 1500.7547 1500.7547 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 63, hostname: nid00536 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 63 read 0 0 342 1.2883 1.2899 [ 33] + X_POSIX 63 read 1 342 0 1.3015 1.3016 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 63, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 63 read 0 0 8 722.4096 722.5127 [ 40] + X_POSIX 63 read 1 0 9 722.5165 722.5165 [ 40] + X_POSIX 63 read 2 9 87 722.5168 722.5169 [ 40] + X_POSIX 63 read 3 96 512 722.5227 722.5227 [ 40] + X_POSIX 63 read 4 2064 632 722.5250 722.5250 [ 40] + X_POSIX 63 read 5 136 544 722.5268 722.5268 [ 40] + X_POSIX 63 read 6 680 512 722.5277 722.5277 [ 40] + X_POSIX 63 read 7 1504 328 722.5639 722.5639 [ 40] + X_POSIX 63 read 8 0 8 723.3781 723.4002 [ 40] + X_POSIX 63 read 9 0 9 723.4030 723.4030 [ 40] + X_POSIX 63 read 10 9 87 723.4033 723.4033 [ 40] + X_POSIX 63 read 11 96 512 723.4087 723.4087 [ 40] + X_POSIX 63 read 12 2064 632 723.4109 723.4110 [ 40] + X_POSIX 63 read 13 136 544 723.4126 723.4127 [ 40] + X_POSIX 63 read 14 680 512 723.4135 723.4135 [ 40] + X_POSIX 63 read 15 1504 328 723.4597 723.4598 [ 40] + X_POSIX 63 read 16 0 8 724.2773 724.3702 [ 40] + X_POSIX 63 read 17 0 9 724.3702 724.3703 [ 40] + X_POSIX 63 read 18 9 87 724.3703 724.3703 [ 40] + X_POSIX 63 read 19 96 512 724.3703 724.3703 [ 40] + X_POSIX 63 read 20 2064 632 724.3703 724.3703 [ 40] + X_POSIX 63 read 21 136 544 724.3704 724.3704 [ 40] + X_POSIX 63 read 22 680 512 724.3704 724.3704 [ 40] + X_POSIX 63 read 23 1504 328 724.3797 724.3801 [ 40] + X_POSIX 63 read 24 0 8 726.4812 726.6269 [ 40] + X_POSIX 63 read 25 0 9 726.6302 726.6302 [ 40] + X_POSIX 63 read 26 9 87 726.6305 726.6306 [ 40] + X_POSIX 63 read 27 96 512 726.6361 726.6362 [ 40] + X_POSIX 63 read 28 2064 632 726.6385 726.6386 [ 40] + X_POSIX 63 read 29 136 544 726.6403 726.6403 [ 40] + X_POSIX 63 read 30 680 512 726.6411 726.6412 [ 40] + X_POSIX 63 read 31 1504 328 726.6638 726.6640 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 63, hostname: nid00536 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 63 read 0 0 8 1497.1508 1497.2669 [209] + X_POSIX 63 read 1 0 9 1497.2670 1497.2670 [209] + X_POSIX 63 read 2 9 87 1497.2670 1497.2671 [209] + X_POSIX 63 read 3 96 512 1497.2671 1497.2671 [209] + X_POSIX 63 read 4 2064 632 1497.2671 1497.2671 [209] + X_POSIX 63 read 5 136 544 1497.2672 1497.2672 [209] + X_POSIX 63 read 6 680 512 1497.2672 1497.2672 [209] + X_POSIX 63 read 7 1504 328 1497.2878 1497.2881 [209] + X_POSIX 63 read 8 0 8 1497.9770 1497.9964 [209] + X_POSIX 63 read 9 0 9 1497.9993 1497.9994 [209] + X_POSIX 63 read 10 9 87 1497.9996 1497.9997 [209] + X_POSIX 63 read 11 96 512 1498.0050 1498.0051 [209] + X_POSIX 63 read 12 2064 632 1498.0073 1498.0073 [209] + X_POSIX 63 read 13 136 544 1498.0090 1498.0090 [209] + X_POSIX 63 read 14 680 512 1498.0098 1498.0099 [209] + X_POSIX 63 read 15 1504 328 1498.0345 1498.0346 [209] + X_POSIX 63 read 16 0 8 1498.7310 1498.8192 [209] + X_POSIX 63 read 17 0 9 1498.8192 1498.8192 [209] + X_POSIX 63 read 18 9 87 1498.8192 1498.8192 [209] + X_POSIX 63 read 19 96 512 1498.8192 1498.8193 [209] + X_POSIX 63 read 20 2064 632 1498.8193 1498.8193 [209] + X_POSIX 63 read 21 136 544 1498.8193 1498.8194 [209] + X_POSIX 63 read 22 680 512 1498.8194 1498.8194 [209] + X_POSIX 63 read 23 1504 328 1498.8407 1498.8411 [209] + X_POSIX 63 read 24 0 8 1500.6204 1500.7176 [209] + X_POSIX 63 read 25 0 9 1500.7207 1500.7207 [209] + X_POSIX 63 read 26 9 87 1500.7210 1500.7210 [209] + X_POSIX 63 read 27 96 512 1500.7266 1500.7266 [209] + X_POSIX 63 read 28 2064 632 1500.7289 1500.7289 [209] + X_POSIX 63 read 29 136 544 1500.7307 1500.7307 [209] + X_POSIX 63 read 30 680 512 1500.7315 1500.7315 [209] + X_POSIX 63 read 31 1504 328 1500.7546 1500.7546 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 64, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 64 read 0 0 342 1.4764 1.4801 [ 33] + X_POSIX 64 read 1 342 0 1.4966 1.4966 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 64, hostname: nid00537 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 64 write 0 134217728 67108864 721.8714 722.0525 [184] + X_POSIX 64 write 1 8724152320 67108864 724.7172 724.8864 [184] + X_POSIX 64 write 2 17314086912 67108864 724.9144 725.0783 [184] + X_POSIX 64 write 3 25904021504 67108864 725.1600 725.3130 [184] + X_POSIX 64 write 4 34493956096 67108864 727.5196 727.6704 [184] + X_POSIX 64 write 5 43083890688 67108864 728.2785 728.4331 [184] + X_POSIX 64 write 6 51673825280 67108864 728.4546 728.7077 [184] + X_POSIX 64 write 7 60263759872 67108864 728.7495 728.9323 [184] + X_POSIX 64 write 8 68853694464 67108864 728.9908 729.1261 [184] + X_POSIX 64 write 9 77443629056 67108864 729.1460 729.3530 [184] + X_POSIX 64 write 10 86033563648 67108864 729.3758 729.5545 [184] + X_POSIX 64 write 11 94623498240 67108864 729.5662 729.7387 [184] + X_POSIX 64 write 12 103213432832 67108864 729.7513 730.0093 [184] + X_POSIX 64 write 13 111803367424 67108864 730.0268 730.2179 [184] + X_POSIX 64 write 14 120393302016 67108864 730.2341 730.4526 [184] + X_POSIX 64 write 15 128983236608 67108864 730.4659 730.6784 [184] + X_POSIX 64 write 16 137573171200 67108864 730.6937 730.9184 [184] + X_POSIX 64 write 17 146163105792 67108864 730.9322 731.0953 [184] + X_POSIX 64 write 18 154753040384 67108864 731.1104 731.3054 [184] + X_POSIX 64 write 19 163342974976 67108864 731.3206 731.5289 [184] + X_POSIX 64 write 20 171932909568 67108864 731.5414 731.6988 [184] + X_POSIX 64 write 21 180522844160 67108864 731.7120 731.8605 [184] + X_POSIX 64 write 22 189112778752 67108864 731.8724 732.1013 [184] + X_POSIX 64 write 23 197702713344 67108864 732.1205 732.3146 [184] + X_POSIX 64 write 24 206292647936 67108864 732.3288 732.5191 [184] + X_POSIX 64 write 25 214882582528 67108864 735.0613 735.2271 [184] + X_POSIX 64 write 26 223472517120 67108864 735.2448 735.4564 [184] + X_POSIX 64 write 27 232062451712 67108864 735.4735 735.6427 [184] + X_POSIX 64 write 28 240652386304 67108864 735.6548 735.8714 [184] + X_POSIX 64 read 0 0 8 722.3866 722.4806 [ 40] + X_POSIX 64 read 1 0 9 722.4833 722.4835 [ 40] + X_POSIX 64 read 2 9 87 722.4837 722.4838 [ 40] + X_POSIX 64 read 3 96 512 722.4920 722.4920 [ 40] + X_POSIX 64 read 4 2064 632 722.4942 722.4943 [ 40] + X_POSIX 64 read 5 136 544 722.4961 722.4961 [ 40] + X_POSIX 64 read 6 680 512 722.4970 722.4971 [ 40] + X_POSIX 64 read 7 1504 328 722.5389 722.5389 [ 40] + X_POSIX 64 read 8 0 8 723.3533 723.3735 [ 40] + X_POSIX 64 read 9 0 9 723.3736 723.3736 [ 40] + X_POSIX 64 read 10 9 87 723.3736 723.3737 [ 40] + X_POSIX 64 read 11 96 512 723.3785 723.3785 [ 40] + X_POSIX 64 read 12 2064 632 723.3810 723.3810 [ 40] + X_POSIX 64 read 13 136 544 723.3829 723.3829 [ 40] + X_POSIX 64 read 14 680 512 723.3838 723.3839 [ 40] + X_POSIX 64 read 15 1504 328 723.4351 723.4351 [ 40] + X_POSIX 64 read 16 0 8 724.2520 724.3440 [ 40] + X_POSIX 64 read 17 0 9 724.3440 724.3440 [ 40] + X_POSIX 64 read 18 9 87 724.3440 724.3441 [ 40] + X_POSIX 64 read 19 96 512 724.3441 724.3441 [ 40] + X_POSIX 64 read 20 2064 632 724.3441 724.3442 [ 40] + X_POSIX 64 read 21 136 544 724.3442 724.3442 [ 40] + X_POSIX 64 read 22 680 512 724.3442 724.3442 [ 40] + X_POSIX 64 read 23 1504 328 724.3544 724.3547 [ 40] + X_POSIX 64 read 24 0 8 726.4577 726.5986 [ 40] + X_POSIX 64 read 25 0 9 726.6017 726.6017 [ 40] + X_POSIX 64 read 26 9 87 726.6020 726.6020 [ 40] + X_POSIX 64 read 27 96 512 726.6079 726.6080 [ 40] + X_POSIX 64 read 28 2064 632 726.6104 726.6104 [ 40] + X_POSIX 64 read 29 136 544 726.6123 726.6123 [ 40] + X_POSIX 64 read 30 680 512 726.6132 726.6133 [ 40] + X_POSIX 64 read 31 1504 328 726.6391 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 64, hostname: nid00537 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 64 write 0 134217728 67108864 1496.7586 1496.9613 [155] + X_POSIX 64 write 1 8724152320 67108864 1499.1459 1499.3033 [155] + X_POSIX 64 write 2 17314086912 67108864 1499.3313 1499.5004 [155] + X_POSIX 64 write 3 25904021504 67108864 1499.5110 1499.7395 [155] + X_POSIX 64 write 4 34493956096 67108864 1501.7758 1501.9113 [155] + X_POSIX 64 write 5 43083890688 67108864 1502.6200 1502.7904 [155] + X_POSIX 64 write 6 51673825280 67108864 1502.8943 1503.0802 [155] + X_POSIX 64 write 7 60263759872 67108864 1503.1094 1503.4111 [155] + X_POSIX 64 write 8 68853694464 67108864 1503.4455 1503.6386 [155] + X_POSIX 64 write 9 77443629056 67108864 1503.6596 1503.9474 [155] + X_POSIX 64 write 10 86033563648 67108864 1503.9727 1504.2525 [155] + X_POSIX 64 write 11 94623498240 67108864 1504.6760 1504.8901 [155] + X_POSIX 64 write 12 103213432832 67108864 1504.9769 1505.2510 [155] + X_POSIX 64 write 13 111803367424 67108864 1505.3000 1505.5090 [155] + X_POSIX 64 write 14 120393302016 67108864 1505.5584 1505.8028 [155] + X_POSIX 64 write 15 128983236608 67108864 1505.8340 1506.0767 [155] + X_POSIX 64 write 16 137573171200 67108864 1506.1855 1506.3356 [155] + X_POSIX 64 write 17 146163105792 67108864 1506.4819 1506.6353 [155] + X_POSIX 64 write 18 154753040384 67108864 1506.7906 1506.9348 [155] + X_POSIX 64 write 19 163342974976 67108864 1507.0947 1507.2387 [155] + X_POSIX 64 write 20 171932909568 67108864 1507.2722 1507.4867 [155] + X_POSIX 64 write 21 180522844160 67108864 1507.5470 1507.7519 [155] + X_POSIX 64 write 22 189112778752 67108864 1508.1023 1508.2543 [155] + X_POSIX 64 write 23 197702713344 67108864 1508.2697 1508.4591 [155] + X_POSIX 64 read 0 0 8 1497.1122 1497.2266 [209] + X_POSIX 64 read 1 0 9 1497.2267 1497.2267 [209] + X_POSIX 64 read 2 9 87 1497.2268 1497.2268 [209] + X_POSIX 64 read 3 96 512 1497.2268 1497.2269 [209] + X_POSIX 64 read 4 2064 632 1497.2269 1497.2270 [209] + X_POSIX 64 read 5 136 544 1497.2270 1497.2271 [209] + X_POSIX 64 read 6 680 512 1497.2271 1497.2271 [209] + X_POSIX 64 read 7 1504 328 1497.2491 1497.2495 [209] + X_POSIX 64 read 8 0 8 1497.9399 1497.9578 [209] + X_POSIX 64 read 9 0 9 1497.9610 1497.9610 [209] + X_POSIX 64 read 10 9 87 1497.9613 1497.9613 [209] + X_POSIX 64 read 11 96 512 1497.9672 1497.9672 [209] + X_POSIX 64 read 12 2064 632 1497.9697 1497.9698 [209] + X_POSIX 64 read 13 136 544 1497.9716 1497.9716 [209] + X_POSIX 64 read 14 680 512 1497.9725 1497.9725 [209] + X_POSIX 64 read 15 1504 328 1497.9961 1497.9962 [209] + X_POSIX 64 read 16 0 8 1498.6922 1498.7804 [209] + X_POSIX 64 read 17 0 9 1498.7804 1498.7805 [209] + X_POSIX 64 read 18 9 87 1498.7805 1498.7805 [209] + X_POSIX 64 read 19 96 512 1498.7805 1498.7805 [209] + X_POSIX 64 read 20 2064 632 1498.7805 1498.7806 [209] + X_POSIX 64 read 21 136 544 1498.7806 1498.7806 [209] + X_POSIX 64 read 22 680 512 1498.7806 1498.7806 [209] + X_POSIX 64 read 23 1504 328 1498.8020 1498.8024 [209] + X_POSIX 64 read 24 0 8 1500.5675 1500.6817 [209] + X_POSIX 64 read 25 0 9 1500.6830 1500.6830 [209] + X_POSIX 64 read 26 9 87 1500.6833 1500.6834 [209] + X_POSIX 64 read 27 96 512 1500.6853 1500.6853 [209] + X_POSIX 64 read 28 2064 632 1500.6865 1500.6866 [209] + X_POSIX 64 read 29 136 544 1500.6869 1500.6869 [209] + X_POSIX 64 read 30 680 512 1500.6872 1500.6872 [209] + X_POSIX 64 read 31 1504 328 1500.7122 1500.7122 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 65, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 65 read 0 0 342 1.4762 1.4801 [ 33] + X_POSIX 65 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 65, hostname: nid00537 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 65 write 0 2281701376 67108864 722.7337 722.8851 [215] + X_POSIX 65 write 1 10871635968 67108864 724.7166 724.8875 [215] + X_POSIX 65 write 2 19461570560 67108864 724.9939 725.1490 [215] + X_POSIX 65 write 3 28051505152 67108864 728.0382 728.2039 [215] + X_POSIX 65 write 4 36641439744 67108864 728.5946 728.7456 [215] + X_POSIX 65 write 5 45231374336 67108864 728.7789 728.9734 [215] + X_POSIX 65 write 6 53821308928 67108864 729.0561 729.1781 [215] + X_POSIX 65 write 7 62411243520 67108864 729.2960 729.4289 [215] + X_POSIX 65 write 8 71001178112 67108864 729.4753 729.6643 [215] + X_POSIX 65 write 9 79591112704 67108864 729.7199 729.9065 [215] + X_POSIX 65 write 10 88181047296 67108864 729.9231 730.1254 [215] + X_POSIX 65 write 11 96770981888 67108864 730.5078 730.6564 [215] + X_POSIX 65 write 12 105360916480 67108864 730.6871 730.8757 [215] + X_POSIX 65 write 13 113950851072 67108864 730.8969 731.1506 [215] + X_POSIX 65 write 14 122540785664 67108864 731.1732 731.4249 [215] + X_POSIX 65 write 15 131130720256 67108864 731.4402 731.7081 [215] + X_POSIX 65 write 16 139720654848 67108864 731.7338 731.9118 [215] + X_POSIX 65 write 17 148310589440 67108864 731.9232 732.1134 [215] + X_POSIX 65 write 18 156900524032 67108864 732.1308 732.3262 [215] + X_POSIX 65 write 19 165490458624 67108864 732.3398 732.5974 [215] + X_POSIX 65 write 20 174080393216 67108864 732.6084 732.8336 [215] + X_POSIX 65 write 21 182670327808 67108864 732.8447 733.0246 [215] + X_POSIX 65 write 22 191260262400 67108864 733.0435 733.3017 [215] + X_POSIX 65 write 23 199850196992 67108864 733.3155 733.4966 [215] + X_POSIX 65 write 24 208440131584 67108864 733.5095 733.7390 [215] + X_POSIX 65 write 25 217030066176 67108864 733.7506 733.9751 [215] + X_POSIX 65 write 26 225620000768 67108864 733.9865 734.2202 [215] + X_POSIX 65 write 27 234209935360 67108864 734.2322 734.4641 [215] + X_POSIX 65 write 28 242799869952 67108864 734.4779 734.7861 [215] + X_POSIX 65 read 0 0 8 722.3863 722.4784 [ 40] + X_POSIX 65 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 65 read 2 9 87 722.4834 722.4836 [ 40] + X_POSIX 65 read 3 96 512 722.4921 722.4923 [ 40] + X_POSIX 65 read 4 2064 632 722.4947 722.4947 [ 40] + X_POSIX 65 read 5 136 544 722.4966 722.4966 [ 40] + X_POSIX 65 read 6 680 512 722.4975 722.4975 [ 40] + X_POSIX 65 read 7 1504 328 722.5394 722.5394 [ 40] + X_POSIX 65 read 8 0 8 723.3562 723.3736 [ 40] + X_POSIX 65 read 9 0 9 723.3768 723.3768 [ 40] + X_POSIX 65 read 10 9 87 723.3771 723.3771 [ 40] + X_POSIX 65 read 11 96 512 723.3830 723.3830 [ 40] + X_POSIX 65 read 12 2064 632 723.3854 723.3855 [ 40] + X_POSIX 65 read 13 136 544 723.3873 723.3873 [ 40] + X_POSIX 65 read 14 680 512 723.3882 723.3882 [ 40] + X_POSIX 65 read 15 1504 328 723.4355 723.4356 [ 40] + X_POSIX 65 read 16 0 8 724.2517 724.3479 [ 40] + X_POSIX 65 read 17 0 9 724.3479 724.3479 [ 40] + X_POSIX 65 read 18 9 87 724.3479 724.3479 [ 40] + X_POSIX 65 read 19 96 512 724.3480 724.3480 [ 40] + X_POSIX 65 read 20 2064 632 724.3480 724.3480 [ 40] + X_POSIX 65 read 21 136 544 724.3480 724.3480 [ 40] + X_POSIX 65 read 22 680 512 724.3480 724.3481 [ 40] + X_POSIX 65 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 65 read 24 0 8 726.4573 726.5988 [ 40] + X_POSIX 65 read 25 0 9 726.6025 726.6025 [ 40] + X_POSIX 65 read 26 9 87 726.6028 726.6028 [ 40] + X_POSIX 65 read 27 96 512 726.6087 726.6087 [ 40] + X_POSIX 65 read 28 2064 632 726.6112 726.6112 [ 40] + X_POSIX 65 read 29 136 544 726.6131 726.6131 [ 40] + X_POSIX 65 read 30 680 512 726.6140 726.6140 [ 40] + X_POSIX 65 read 31 1504 328 726.6394 726.6395 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 65, hostname: nid00537 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 65 write 0 2281701376 67108864 1497.3804 1497.6027 [ 29] + X_POSIX 65 write 1 10871635968 67108864 1499.1478 1499.3046 [ 29] + X_POSIX 65 write 2 19461570560 67108864 1499.4345 1499.5633 [ 29] + X_POSIX 65 write 3 28051505152 67108864 1501.9273 1502.0771 [ 29] + X_POSIX 65 write 4 36641439744 67108864 1502.6082 1502.7638 [ 29] + X_POSIX 65 write 5 45231374336 67108864 1503.0023 1503.1525 [ 29] + X_POSIX 65 write 6 53821308928 67108864 1503.1662 1503.3580 [ 29] + X_POSIX 65 write 7 62411243520 67108864 1503.3692 1503.5860 [ 29] + X_POSIX 65 write 8 71001178112 67108864 1503.6177 1503.8126 [ 29] + X_POSIX 65 write 9 79591112704 67108864 1503.8400 1504.0109 [ 29] + X_POSIX 65 write 10 88181047296 67108864 1504.0485 1504.2087 [ 29] + X_POSIX 65 write 11 96770981888 67108864 1504.2419 1504.4327 [ 29] + X_POSIX 65 write 12 105360916480 67108864 1504.4546 1504.9262 [ 29] + X_POSIX 65 write 13 113950851072 67108864 1504.9596 1505.3554 [ 29] + X_POSIX 65 write 14 122540785664 67108864 1505.4107 1505.6268 [ 29] + X_POSIX 65 write 15 131130720256 67108864 1505.6645 1505.8244 [ 29] + X_POSIX 65 write 16 139720654848 67108864 1505.9446 1506.0855 [ 29] + X_POSIX 65 write 17 148310589440 67108864 1506.0977 1506.2866 [ 29] + X_POSIX 65 write 18 156900524032 67108864 1506.3033 1506.4880 [ 29] + X_POSIX 65 write 19 165490458624 67108864 1506.5164 1506.7518 [ 29] + X_POSIX 65 write 20 174080393216 67108864 1506.7732 1507.0218 [ 29] + X_POSIX 65 write 21 182670327808 67108864 1507.0335 1507.2425 [ 29] + X_POSIX 65 write 22 191260262400 67108864 1507.2635 1507.5059 [ 29] + X_POSIX 65 write 23 199850196992 67108864 1508.3485 1508.5233 [ 29] + X_POSIX 65 read 0 0 8 1497.1120 1497.2232 [209] + X_POSIX 65 read 1 0 9 1497.2233 1497.2234 [209] + X_POSIX 65 read 2 9 87 1497.2234 1497.2235 [209] + X_POSIX 65 read 3 96 512 1497.2235 1497.2235 [209] + X_POSIX 65 read 4 2064 632 1497.2235 1497.2235 [209] + X_POSIX 65 read 5 136 544 1497.2236 1497.2236 [209] + X_POSIX 65 read 6 680 512 1497.2236 1497.2236 [209] + X_POSIX 65 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 65 read 8 0 8 1497.9397 1497.9576 [209] + X_POSIX 65 read 9 0 9 1497.9610 1497.9610 [209] + X_POSIX 65 read 10 9 87 1497.9613 1497.9613 [209] + X_POSIX 65 read 11 96 512 1497.9672 1497.9672 [209] + X_POSIX 65 read 12 2064 632 1497.9697 1497.9697 [209] + X_POSIX 65 read 13 136 544 1497.9715 1497.9716 [209] + X_POSIX 65 read 14 680 512 1497.9725 1497.9725 [209] + X_POSIX 65 read 15 1504 328 1497.9965 1497.9966 [209] + X_POSIX 65 read 16 0 8 1498.6920 1498.7769 [209] + X_POSIX 65 read 17 0 9 1498.7769 1498.7770 [209] + X_POSIX 65 read 18 9 87 1498.7770 1498.7770 [209] + X_POSIX 65 read 19 96 512 1498.7770 1498.7770 [209] + X_POSIX 65 read 20 2064 632 1498.7770 1498.7771 [209] + X_POSIX 65 read 21 136 544 1498.7771 1498.7771 [209] + X_POSIX 65 read 22 680 512 1498.7771 1498.7771 [209] + X_POSIX 65 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 65 read 24 0 8 1500.5675 1500.6817 [209] + X_POSIX 65 read 25 0 9 1500.6832 1500.6832 [209] + X_POSIX 65 read 26 9 87 1500.6835 1500.6836 [209] + X_POSIX 65 read 27 96 512 1500.6855 1500.6855 [209] + X_POSIX 65 read 28 2064 632 1500.6867 1500.6867 [209] + X_POSIX 65 read 29 136 544 1500.6870 1500.6870 [209] + X_POSIX 65 read 30 680 512 1500.6873 1500.6873 [209] + X_POSIX 65 read 31 1504 328 1500.7123 1500.7124 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 66, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 66 read 0 0 342 1.4760 1.4798 [ 33] + X_POSIX 66 read 1 342 0 1.4967 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 66, hostname: nid00537 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 66 write 0 4429185024 67108864 723.6340 723.8480 [143] + X_POSIX 66 write 1 13019119616 67108864 724.7211 724.8876 [143] + X_POSIX 66 write 2 21609054208 67108864 724.9839 725.1503 [143] + X_POSIX 66 write 3 30198988800 67108864 728.0059 728.1778 [143] + X_POSIX 66 write 4 38788923392 67108864 728.5149 728.7077 [143] + X_POSIX 66 write 5 47378857984 67108864 728.7396 728.9525 [143] + X_POSIX 66 write 6 55968792576 67108864 729.3530 729.5094 [143] + X_POSIX 66 write 7 64558727168 67108864 729.8571 729.9885 [143] + X_POSIX 66 write 8 73148661760 67108864 730.1769 730.3130 [143] + X_POSIX 66 write 9 81738596352 67108864 730.3271 730.5547 [143] + X_POSIX 66 write 10 90328530944 67108864 730.7973 730.9660 [143] + X_POSIX 66 write 11 98918465536 67108864 730.9939 731.1706 [143] + X_POSIX 66 write 12 107508400128 67108864 731.2180 731.4813 [143] + X_POSIX 66 write 13 116098334720 67108864 731.5178 731.7106 [143] + X_POSIX 66 write 14 124688269312 67108864 731.7462 731.9346 [143] + X_POSIX 66 write 15 133278203904 67108864 731.9593 732.2035 [143] + X_POSIX 66 write 16 141868138496 67108864 732.2232 732.4381 [143] + X_POSIX 66 write 17 150458073088 67108864 732.4613 732.6879 [143] + X_POSIX 66 write 18 159048007680 67108864 732.7542 732.9362 [143] + X_POSIX 66 write 19 167637942272 67108864 733.0013 733.1482 [143] + X_POSIX 66 write 20 176227876864 67108864 733.1760 733.3604 [143] + X_POSIX 66 write 21 184817811456 67108864 733.3939 733.5961 [143] + X_POSIX 66 write 22 193407746048 67108864 733.9318 734.0728 [143] + X_POSIX 66 write 23 201997680640 67108864 734.0890 734.3150 [143] + X_POSIX 66 write 24 210587615232 67108864 734.3320 734.6033 [143] + X_POSIX 66 write 25 219177549824 67108864 734.6207 734.8395 [143] + X_POSIX 66 write 26 227767484416 67108864 734.8556 735.1073 [143] + X_POSIX 66 write 27 236357419008 67108864 735.1246 735.4273 [143] + X_POSIX 66 write 28 244947353600 67108864 735.4409 735.6667 [143] + X_POSIX 66 read 0 0 8 722.3862 722.4822 [ 40] + X_POSIX 66 read 1 0 9 722.4839 722.4839 [ 40] + X_POSIX 66 read 2 9 87 722.4839 722.4839 [ 40] + X_POSIX 66 read 3 96 512 722.4916 722.4916 [ 40] + X_POSIX 66 read 4 2064 632 722.4938 722.4939 [ 40] + X_POSIX 66 read 5 136 544 722.4957 722.4957 [ 40] + X_POSIX 66 read 6 680 512 722.4966 722.4967 [ 40] + X_POSIX 66 read 7 1504 328 722.5389 722.5390 [ 40] + X_POSIX 66 read 8 0 8 723.3562 723.3736 [ 40] + X_POSIX 66 read 9 0 9 723.3769 723.3770 [ 40] + X_POSIX 66 read 10 9 87 723.3773 723.3773 [ 40] + X_POSIX 66 read 11 96 512 723.3832 723.3832 [ 40] + X_POSIX 66 read 12 2064 632 723.3857 723.3857 [ 40] + X_POSIX 66 read 13 136 544 723.3875 723.3876 [ 40] + X_POSIX 66 read 14 680 512 723.3885 723.3885 [ 40] + X_POSIX 66 read 15 1504 328 723.4350 723.4351 [ 40] + X_POSIX 66 read 16 0 8 724.2516 724.3488 [ 40] + X_POSIX 66 read 17 0 9 724.3489 724.3489 [ 40] + X_POSIX 66 read 18 9 87 724.3489 724.3489 [ 40] + X_POSIX 66 read 19 96 512 724.3489 724.3489 [ 40] + X_POSIX 66 read 20 2064 632 724.3490 724.3490 [ 40] + X_POSIX 66 read 21 136 544 724.3490 724.3490 [ 40] + X_POSIX 66 read 22 680 512 724.3490 724.3490 [ 40] + X_POSIX 66 read 23 1504 328 724.3540 724.3543 [ 40] + X_POSIX 66 read 24 0 8 726.4573 726.5984 [ 40] + X_POSIX 66 read 25 0 9 726.6017 726.6017 [ 40] + X_POSIX 66 read 26 9 87 726.6020 726.6020 [ 40] + X_POSIX 66 read 27 96 512 726.6080 726.6080 [ 40] + X_POSIX 66 read 28 2064 632 726.6105 726.6105 [ 40] + X_POSIX 66 read 29 136 544 726.6123 726.6124 [ 40] + X_POSIX 66 read 30 680 512 726.6133 726.6133 [ 40] + X_POSIX 66 read 31 1504 328 726.6390 726.6390 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 66, hostname: nid00537 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 66 write 0 4429185024 67108864 1498.2650 1498.4170 [ 95] + X_POSIX 66 write 1 13019119616 67108864 1499.1448 1499.2931 [ 95] + X_POSIX 66 write 2 21609054208 67108864 1499.4020 1499.5645 [ 95] + X_POSIX 66 write 3 30198988800 67108864 1502.1087 1502.2517 [ 95] + X_POSIX 66 write 4 38788923392 67108864 1502.6408 1502.8007 [ 95] + X_POSIX 66 write 5 47378857984 67108864 1503.0995 1503.2501 [ 95] + X_POSIX 66 write 6 55968792576 67108864 1503.5401 1503.6853 [ 95] + X_POSIX 66 write 7 64558727168 67108864 1503.7753 1503.9340 [ 95] + X_POSIX 66 write 8 73148661760 67108864 1504.0540 1504.2093 [ 95] + X_POSIX 66 write 9 81738596352 67108864 1504.2263 1504.4485 [ 95] + X_POSIX 66 write 10 90328530944 67108864 1504.7094 1504.8586 [ 95] + X_POSIX 66 write 11 98918465536 67108864 1504.9283 1505.1662 [ 95] + X_POSIX 66 write 12 107508400128 67108864 1505.2085 1505.3712 [ 95] + X_POSIX 66 write 13 116098334720 67108864 1505.3870 1505.5680 [ 95] + X_POSIX 66 write 14 124688269312 67108864 1505.6640 1505.8104 [ 95] + X_POSIX 66 write 15 133278203904 67108864 1505.9274 1506.0680 [ 95] + X_POSIX 66 write 16 141868138496 67108864 1506.1702 1506.3158 [ 95] + X_POSIX 66 write 17 150458073088 67108864 1506.3596 1506.5122 [ 95] + X_POSIX 66 write 18 159048007680 67108864 1506.5307 1506.6999 [ 95] + X_POSIX 66 write 19 167637942272 67108864 1506.7145 1506.9257 [ 95] + X_POSIX 66 write 20 176227876864 67108864 1506.9470 1507.1506 [ 95] + X_POSIX 66 write 21 184817811456 67108864 1507.1661 1507.3506 [ 95] + X_POSIX 66 write 22 193407746048 67108864 1507.3658 1507.5681 [ 95] + X_POSIX 66 write 23 201997680640 67108864 1507.5814 1507.7879 [ 95] + X_POSIX 66 read 0 0 8 1497.1118 1497.2275 [209] + X_POSIX 66 read 1 0 9 1497.2275 1497.2276 [209] + X_POSIX 66 read 2 9 87 1497.2276 1497.2276 [209] + X_POSIX 66 read 3 96 512 1497.2276 1497.2276 [209] + X_POSIX 66 read 4 2064 632 1497.2276 1497.2277 [209] + X_POSIX 66 read 5 136 544 1497.2277 1497.2277 [209] + X_POSIX 66 read 6 680 512 1497.2277 1497.2277 [209] + X_POSIX 66 read 7 1504 328 1497.2488 1497.2491 [209] + X_POSIX 66 read 8 0 8 1497.9394 1497.9567 [209] + X_POSIX 66 read 9 0 9 1497.9575 1497.9576 [209] + X_POSIX 66 read 10 9 87 1497.9579 1497.9579 [209] + X_POSIX 66 read 11 96 512 1497.9638 1497.9638 [209] + X_POSIX 66 read 12 2064 632 1497.9663 1497.9663 [209] + X_POSIX 66 read 13 136 544 1497.9682 1497.9682 [209] + X_POSIX 66 read 14 680 512 1497.9692 1497.9692 [209] + X_POSIX 66 read 15 1504 328 1497.9961 1497.9961 [209] + X_POSIX 66 read 16 0 8 1498.6919 1498.7809 [209] + X_POSIX 66 read 17 0 9 1498.7809 1498.7809 [209] + X_POSIX 66 read 18 9 87 1498.7809 1498.7810 [209] + X_POSIX 66 read 19 96 512 1498.7810 1498.7810 [209] + X_POSIX 66 read 20 2064 632 1498.7810 1498.7810 [209] + X_POSIX 66 read 21 136 544 1498.7810 1498.7811 [209] + X_POSIX 66 read 22 680 512 1498.7811 1498.7811 [209] + X_POSIX 66 read 23 1504 328 1498.8017 1498.8021 [209] + X_POSIX 66 read 24 0 8 1500.5674 1500.6816 [209] + X_POSIX 66 read 25 0 9 1500.6831 1500.6832 [209] + X_POSIX 66 read 26 9 87 1500.6835 1500.6835 [209] + X_POSIX 66 read 27 96 512 1500.6854 1500.6854 [209] + X_POSIX 66 read 28 2064 632 1500.6867 1500.6867 [209] + X_POSIX 66 read 29 136 544 1500.6869 1500.6870 [209] + X_POSIX 66 read 30 680 512 1500.6872 1500.6873 [209] + X_POSIX 66 read 31 1504 328 1500.7124 1500.7125 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 67, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 67 read 0 0 342 1.4761 1.4794 [ 33] + X_POSIX 67 read 1 342 0 1.4969 1.4972 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 67, hostname: nid00537 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 67 write 0 6576668672 67108864 723.6384 723.8392 [ 35] + X_POSIX 67 write 1 15166603264 67108864 724.7252 724.9279 [ 35] + X_POSIX 67 write 2 23756537856 67108864 724.9942 725.1772 [ 35] + X_POSIX 67 write 3 32346472448 67108864 727.9756 728.1168 [ 35] + X_POSIX 67 write 4 40936407040 67108864 728.4061 728.5397 [ 35] + X_POSIX 67 write 5 49526341632 67108864 728.5674 728.7807 [ 35] + X_POSIX 67 write 6 58116276224 67108864 728.8122 729.0025 [ 35] + X_POSIX 67 write 7 66706210816 67108864 729.0370 729.3423 [ 35] + X_POSIX 67 write 8 75296145408 67108864 729.3743 729.5755 [ 35] + X_POSIX 67 write 9 83886080000 67108864 729.5892 729.8242 [ 35] + X_POSIX 67 write 10 92476014592 67108864 729.8356 730.0525 [ 35] + X_POSIX 67 write 11 101065949184 67108864 730.0657 730.2994 [ 35] + X_POSIX 67 write 12 109655883776 67108864 730.3142 730.6022 [ 35] + X_POSIX 67 write 13 118245818368 67108864 730.6140 730.9365 [ 35] + X_POSIX 67 write 14 126835752960 67108864 730.9480 731.2518 [ 35] + X_POSIX 67 write 15 135425687552 67108864 731.2807 731.4951 [ 35] + X_POSIX 67 write 16 144015622144 67108864 731.5166 731.7879 [ 35] + X_POSIX 67 write 17 152605556736 67108864 732.5383 732.7039 [ 35] + X_POSIX 67 write 18 161195491328 67108864 732.8111 732.9661 [ 35] + X_POSIX 67 write 19 169785425920 67108864 733.0467 733.2015 [ 35] + X_POSIX 67 write 20 178375360512 67108864 733.2782 733.4665 [ 35] + X_POSIX 67 write 21 186965295104 67108864 734.1705 734.3689 [ 35] + X_POSIX 67 write 22 195555229696 67108864 734.4754 734.7243 [ 35] + X_POSIX 67 write 23 204145164288 67108864 734.9568 735.1579 [ 35] + X_POSIX 67 write 24 212735098880 67108864 735.2844 735.4631 [ 35] + X_POSIX 67 write 25 221325033472 67108864 735.5294 735.7332 [ 35] + X_POSIX 67 write 26 229914968064 67108864 735.7506 735.9905 [ 35] + X_POSIX 67 write 27 238504902656 67108864 736.0962 736.2680 [ 35] + X_POSIX 67 write 28 247094837248 67108864 736.2839 736.5516 [ 35] + X_POSIX 67 read 0 0 8 722.3863 722.4785 [ 40] + X_POSIX 67 read 1 0 9 722.4832 722.4833 [ 40] + X_POSIX 67 read 2 9 87 722.4835 722.4837 [ 40] + X_POSIX 67 read 3 96 512 722.4921 722.4922 [ 40] + X_POSIX 67 read 4 2064 632 722.4944 722.4944 [ 40] + X_POSIX 67 read 5 136 544 722.4962 722.4963 [ 40] + X_POSIX 67 read 6 680 512 722.4972 722.4972 [ 40] + X_POSIX 67 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 67 read 8 0 8 723.3563 723.3737 [ 40] + X_POSIX 67 read 9 0 9 723.3769 723.3769 [ 40] + X_POSIX 67 read 10 9 87 723.3772 723.3773 [ 40] + X_POSIX 67 read 11 96 512 723.3831 723.3831 [ 40] + X_POSIX 67 read 12 2064 632 723.3856 723.3856 [ 40] + X_POSIX 67 read 13 136 544 723.3874 723.3874 [ 40] + X_POSIX 67 read 14 680 512 723.3883 723.3884 [ 40] + X_POSIX 67 read 15 1504 328 723.4355 723.4356 [ 40] + X_POSIX 67 read 16 0 8 724.2517 724.3487 [ 40] + X_POSIX 67 read 17 0 9 724.3487 724.3487 [ 40] + X_POSIX 67 read 18 9 87 724.3487 724.3488 [ 40] + X_POSIX 67 read 19 96 512 724.3488 724.3488 [ 40] + X_POSIX 67 read 20 2064 632 724.3488 724.3488 [ 40] + X_POSIX 67 read 21 136 544 724.3488 724.3488 [ 40] + X_POSIX 67 read 22 680 512 724.3488 724.3489 [ 40] + X_POSIX 67 read 23 1504 328 724.3542 724.3545 [ 40] + X_POSIX 67 read 24 0 8 726.4575 726.5984 [ 40] + X_POSIX 67 read 25 0 9 726.6015 726.6016 [ 40] + X_POSIX 67 read 26 9 87 726.6019 726.6019 [ 40] + X_POSIX 67 read 27 96 512 726.6078 726.6078 [ 40] + X_POSIX 67 read 28 2064 632 726.6103 726.6103 [ 40] + X_POSIX 67 read 29 136 544 726.6122 726.6122 [ 40] + X_POSIX 67 read 30 680 512 726.6131 726.6132 [ 40] + X_POSIX 67 read 31 1504 328 726.6391 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 67, hostname: nid00537 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 67 write 0 6576668672 67108864 1498.2694 1498.4390 [ 45] + X_POSIX 67 write 1 15166603264 67108864 1499.1468 1499.3103 [ 45] + X_POSIX 67 write 2 23756537856 67108864 1499.4203 1499.5430 [ 45] + X_POSIX 67 write 3 32346472448 67108864 1502.0980 1502.2570 [ 45] + X_POSIX 67 write 4 40936407040 67108864 1502.6097 1502.7577 [ 45] + X_POSIX 67 write 5 49526341632 67108864 1503.0825 1503.2354 [ 45] + X_POSIX 67 write 6 58116276224 67108864 1503.4290 1503.6004 [ 45] + X_POSIX 67 write 7 66706210816 67108864 1503.6320 1503.8606 [ 45] + X_POSIX 67 write 8 75296145408 67108864 1503.9015 1504.1160 [ 45] + X_POSIX 67 write 9 83886080000 67108864 1504.1887 1504.3683 [ 45] + X_POSIX 67 write 10 92476014592 67108864 1504.4761 1504.6264 [ 45] + X_POSIX 67 write 11 101065949184 67108864 1504.6506 1505.1356 [ 45] + X_POSIX 67 write 12 109655883776 67108864 1505.2169 1505.4686 [ 45] + X_POSIX 67 write 13 118245818368 67108864 1505.5405 1505.7315 [ 45] + X_POSIX 67 write 14 126835752960 67108864 1505.9723 1506.1135 [ 45] + X_POSIX 67 write 15 135425687552 67108864 1506.2232 1506.3761 [ 45] + X_POSIX 67 write 16 144015622144 67108864 1506.4257 1506.6516 [ 45] + X_POSIX 67 write 17 152605556736 67108864 1506.8495 1507.0252 [ 45] + X_POSIX 67 write 18 161195491328 67108864 1507.0702 1507.3174 [ 45] + X_POSIX 67 write 19 169785425920 67108864 1507.6274 1507.7888 [ 45] + X_POSIX 67 write 20 178375360512 67108864 1508.0103 1508.1605 [ 45] + X_POSIX 67 write 21 186965295104 67108864 1508.2578 1508.4915 [ 45] + X_POSIX 67 write 22 195555229696 67108864 1508.5651 1508.7144 [ 45] + X_POSIX 67 write 23 204145164288 67108864 1508.7799 1508.9640 [ 45] + X_POSIX 67 read 0 0 8 1497.1120 1497.2272 [209] + X_POSIX 67 read 1 0 9 1497.2272 1497.2272 [209] + X_POSIX 67 read 2 9 87 1497.2272 1497.2273 [209] + X_POSIX 67 read 3 96 512 1497.2273 1497.2273 [209] + X_POSIX 67 read 4 2064 632 1497.2273 1497.2273 [209] + X_POSIX 67 read 5 136 544 1497.2273 1497.2274 [209] + X_POSIX 67 read 6 680 512 1497.2274 1497.2274 [209] + X_POSIX 67 read 7 1504 328 1497.2489 1497.2493 [209] + X_POSIX 67 read 8 0 8 1497.9396 1497.9572 [209] + X_POSIX 67 read 9 0 9 1497.9602 1497.9602 [209] + X_POSIX 67 read 10 9 87 1497.9605 1497.9605 [209] + X_POSIX 67 read 11 96 512 1497.9664 1497.9665 [209] + X_POSIX 67 read 12 2064 632 1497.9689 1497.9689 [209] + X_POSIX 67 read 13 136 544 1497.9707 1497.9708 [209] + X_POSIX 67 read 14 680 512 1497.9717 1497.9717 [209] + X_POSIX 67 read 15 1504 328 1497.9965 1497.9965 [209] + X_POSIX 67 read 16 0 8 1498.6921 1498.7800 [209] + X_POSIX 67 read 17 0 9 1498.7800 1498.7801 [209] + X_POSIX 67 read 18 9 87 1498.7801 1498.7801 [209] + X_POSIX 67 read 19 96 512 1498.7801 1498.7801 [209] + X_POSIX 67 read 20 2064 632 1498.7801 1498.7802 [209] + X_POSIX 67 read 21 136 544 1498.7802 1498.7802 [209] + X_POSIX 67 read 22 680 512 1498.7802 1498.7802 [209] + X_POSIX 67 read 23 1504 328 1498.8019 1498.8022 [209] + X_POSIX 67 read 24 0 8 1500.5675 1500.6817 [209] + X_POSIX 67 read 25 0 9 1500.6831 1500.6832 [209] + X_POSIX 67 read 26 9 87 1500.6835 1500.6835 [209] + X_POSIX 67 read 27 96 512 1500.6854 1500.6854 [209] + X_POSIX 67 read 28 2064 632 1500.6867 1500.6867 [209] + X_POSIX 67 read 29 136 544 1500.6870 1500.6870 [209] + X_POSIX 67 read 30 680 512 1500.6873 1500.6873 [209] + X_POSIX 67 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 68, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 68 read 0 0 342 1.4760 1.4792 [ 33] + X_POSIX 68 read 1 342 0 1.4967 1.4969 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 68, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 68 read 0 0 8 722.3863 722.4783 [ 40] + X_POSIX 68 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 68 read 2 9 87 722.4834 722.4836 [ 40] + X_POSIX 68 read 3 96 512 722.4920 722.4922 [ 40] + X_POSIX 68 read 4 2064 632 722.4946 722.4946 [ 40] + X_POSIX 68 read 5 136 544 722.4964 722.4965 [ 40] + X_POSIX 68 read 6 680 512 722.4974 722.4974 [ 40] + X_POSIX 68 read 7 1504 328 722.5395 722.5395 [ 40] + X_POSIX 68 read 8 0 8 723.3565 723.3738 [ 40] + X_POSIX 68 read 9 0 9 723.3773 723.3773 [ 40] + X_POSIX 68 read 10 9 87 723.3776 723.3776 [ 40] + X_POSIX 68 read 11 96 512 723.3835 723.3835 [ 40] + X_POSIX 68 read 12 2064 632 723.3860 723.3860 [ 40] + X_POSIX 68 read 13 136 544 723.3879 723.3879 [ 40] + X_POSIX 68 read 14 680 512 723.3888 723.3888 [ 40] + X_POSIX 68 read 15 1504 328 723.4351 723.4351 [ 40] + X_POSIX 68 read 16 0 8 724.2517 724.3458 [ 40] + X_POSIX 68 read 17 0 9 724.3458 724.3458 [ 40] + X_POSIX 68 read 18 9 87 724.3458 724.3459 [ 40] + X_POSIX 68 read 19 96 512 724.3459 724.3459 [ 40] + X_POSIX 68 read 20 2064 632 724.3459 724.3459 [ 40] + X_POSIX 68 read 21 136 544 724.3459 724.3460 [ 40] + X_POSIX 68 read 22 680 512 724.3460 724.3460 [ 40] + X_POSIX 68 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 68 read 24 0 8 726.4574 726.5987 [ 40] + X_POSIX 68 read 25 0 9 726.6021 726.6022 [ 40] + X_POSIX 68 read 26 9 87 726.6025 726.6025 [ 40] + X_POSIX 68 read 27 96 512 726.6084 726.6084 [ 40] + X_POSIX 68 read 28 2064 632 726.6109 726.6109 [ 40] + X_POSIX 68 read 29 136 544 726.6128 726.6128 [ 40] + X_POSIX 68 read 30 680 512 726.6138 726.6138 [ 40] + X_POSIX 68 read 31 1504 328 726.6390 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 68, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 68 read 0 0 8 1497.1119 1497.2289 [209] + X_POSIX 68 read 1 0 9 1497.2289 1497.2289 [209] + X_POSIX 68 read 2 9 87 1497.2289 1497.2290 [209] + X_POSIX 68 read 3 96 512 1497.2290 1497.2290 [209] + X_POSIX 68 read 4 2064 632 1497.2290 1497.2290 [209] + X_POSIX 68 read 5 136 544 1497.2290 1497.2291 [209] + X_POSIX 68 read 6 680 512 1497.2291 1497.2291 [209] + X_POSIX 68 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 68 read 8 0 8 1497.9396 1497.9574 [209] + X_POSIX 68 read 9 0 9 1497.9607 1497.9608 [209] + X_POSIX 68 read 10 9 87 1497.9611 1497.9611 [209] + X_POSIX 68 read 11 96 512 1497.9670 1497.9670 [209] + X_POSIX 68 read 12 2064 632 1497.9695 1497.9695 [209] + X_POSIX 68 read 13 136 544 1497.9713 1497.9713 [209] + X_POSIX 68 read 14 680 512 1497.9722 1497.9723 [209] + X_POSIX 68 read 15 1504 328 1497.9963 1497.9964 [209] + X_POSIX 68 read 16 0 8 1498.6920 1498.7766 [209] + X_POSIX 68 read 17 0 9 1498.7766 1498.7767 [209] + X_POSIX 68 read 18 9 87 1498.7767 1498.7767 [209] + X_POSIX 68 read 19 96 512 1498.7768 1498.7768 [209] + X_POSIX 68 read 20 2064 632 1498.7768 1498.7768 [209] + X_POSIX 68 read 21 136 544 1498.7769 1498.7769 [209] + X_POSIX 68 read 22 680 512 1498.7769 1498.7769 [209] + X_POSIX 68 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 68 read 24 0 8 1500.5674 1500.6819 [209] + X_POSIX 68 read 25 0 9 1500.6835 1500.6835 [209] + X_POSIX 68 read 26 9 87 1500.6838 1500.6838 [209] + X_POSIX 68 read 27 96 512 1500.6858 1500.6858 [209] + X_POSIX 68 read 28 2064 632 1500.6869 1500.6870 [209] + X_POSIX 68 read 29 136 544 1500.6872 1500.6873 [209] + X_POSIX 68 read 30 680 512 1500.6875 1500.6876 [209] + X_POSIX 68 read 31 1504 328 1500.7122 1500.7122 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 69, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 69 read 0 0 342 1.4760 1.4793 [ 33] + X_POSIX 69 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 69, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 69 read 0 0 8 722.3863 722.4788 [ 40] + X_POSIX 69 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 69 read 2 9 87 722.4835 722.4836 [ 40] + X_POSIX 69 read 3 96 512 722.4922 722.4924 [ 40] + X_POSIX 69 read 4 2064 632 722.4949 722.4949 [ 40] + X_POSIX 69 read 5 136 544 722.4967 722.4968 [ 40] + X_POSIX 69 read 6 680 512 722.4976 722.4977 [ 40] + X_POSIX 69 read 7 1504 328 722.5390 722.5391 [ 40] + X_POSIX 69 read 8 0 8 723.3559 723.3735 [ 40] + X_POSIX 69 read 9 0 9 723.3765 723.3765 [ 40] + X_POSIX 69 read 10 9 87 723.3768 723.3769 [ 40] + X_POSIX 69 read 11 96 512 723.3827 723.3827 [ 40] + X_POSIX 69 read 12 2064 632 723.3852 723.3852 [ 40] + X_POSIX 69 read 13 136 544 723.3870 723.3870 [ 40] + X_POSIX 69 read 14 680 512 723.3880 723.3880 [ 40] + X_POSIX 69 read 15 1504 328 723.4354 723.4355 [ 40] + X_POSIX 69 read 16 0 8 724.2517 724.3439 [ 40] + X_POSIX 69 read 17 0 9 724.3439 724.3439 [ 40] + X_POSIX 69 read 18 9 87 724.3439 724.3439 [ 40] + X_POSIX 69 read 19 96 512 724.3439 724.3440 [ 40] + X_POSIX 69 read 20 2064 632 724.3440 724.3440 [ 40] + X_POSIX 69 read 21 136 544 724.3440 724.3440 [ 40] + X_POSIX 69 read 22 680 512 724.3440 724.3441 [ 40] + X_POSIX 69 read 23 1504 328 724.3541 724.3543 [ 40] + X_POSIX 69 read 24 0 8 726.4573 726.5985 [ 40] + X_POSIX 69 read 25 0 9 726.6019 726.6019 [ 40] + X_POSIX 69 read 26 9 87 726.6022 726.6023 [ 40] + X_POSIX 69 read 27 96 512 726.6082 726.6082 [ 40] + X_POSIX 69 read 28 2064 632 726.6107 726.6107 [ 40] + X_POSIX 69 read 29 136 544 726.6125 726.6126 [ 40] + X_POSIX 69 read 30 680 512 726.6135 726.6135 [ 40] + X_POSIX 69 read 31 1504 328 726.6394 726.6394 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 69, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 69 read 0 0 8 1497.1119 1497.2264 [209] + X_POSIX 69 read 1 0 9 1497.2266 1497.2267 [209] + X_POSIX 69 read 2 9 87 1497.2267 1497.2267 [209] + X_POSIX 69 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 69 read 4 2064 632 1497.2268 1497.2269 [209] + X_POSIX 69 read 5 136 544 1497.2269 1497.2269 [209] + X_POSIX 69 read 6 680 512 1497.2269 1497.2270 [209] + X_POSIX 69 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 69 read 8 0 8 1497.9395 1497.9570 [209] + X_POSIX 69 read 9 0 9 1497.9599 1497.9599 [209] + X_POSIX 69 read 10 9 87 1497.9602 1497.9602 [209] + X_POSIX 69 read 11 96 512 1497.9661 1497.9662 [209] + X_POSIX 69 read 12 2064 632 1497.9686 1497.9686 [209] + X_POSIX 69 read 13 136 544 1497.9704 1497.9705 [209] + X_POSIX 69 read 14 680 512 1497.9714 1497.9714 [209] + X_POSIX 69 read 15 1504 328 1497.9962 1497.9962 [209] + X_POSIX 69 read 16 0 8 1498.6920 1498.7807 [209] + X_POSIX 69 read 17 0 9 1498.7808 1498.7808 [209] + X_POSIX 69 read 18 9 87 1498.7808 1498.7808 [209] + X_POSIX 69 read 19 96 512 1498.7808 1498.7809 [209] + X_POSIX 69 read 20 2064 632 1498.7809 1498.7809 [209] + X_POSIX 69 read 21 136 544 1498.7809 1498.7809 [209] + X_POSIX 69 read 22 680 512 1498.7809 1498.7810 [209] + X_POSIX 69 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 69 read 24 0 8 1500.5672 1500.6813 [209] + X_POSIX 69 read 25 0 9 1500.6825 1500.6825 [209] + X_POSIX 69 read 26 9 87 1500.6828 1500.6829 [209] + X_POSIX 69 read 27 96 512 1500.6847 1500.6848 [209] + X_POSIX 69 read 28 2064 632 1500.6860 1500.6860 [209] + X_POSIX 69 read 29 136 544 1500.6863 1500.6864 [209] + X_POSIX 69 read 30 680 512 1500.6866 1500.6867 [209] + X_POSIX 69 read 31 1504 328 1500.7122 1500.7122 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 70, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 70 read 0 0 342 1.4761 1.4800 [ 33] + X_POSIX 70 read 1 342 0 1.4967 1.4968 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 70, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 70 read 0 0 8 722.3863 722.4815 [ 40] + X_POSIX 70 read 1 0 9 722.4830 722.4830 [ 40] + X_POSIX 70 read 2 9 87 722.4831 722.4833 [ 40] + X_POSIX 70 read 3 96 512 722.4920 722.4922 [ 40] + X_POSIX 70 read 4 2064 632 722.4946 722.4946 [ 40] + X_POSIX 70 read 5 136 544 722.4964 722.4965 [ 40] + X_POSIX 70 read 6 680 512 722.4974 722.4974 [ 40] + X_POSIX 70 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 70 read 8 0 8 723.3565 723.3737 [ 40] + X_POSIX 70 read 9 0 9 723.3770 723.3771 [ 40] + X_POSIX 70 read 10 9 87 723.3774 723.3774 [ 40] + X_POSIX 70 read 11 96 512 723.3833 723.3833 [ 40] + X_POSIX 70 read 12 2064 632 723.3858 723.3858 [ 40] + X_POSIX 70 read 13 136 544 723.3876 723.3877 [ 40] + X_POSIX 70 read 14 680 512 723.3886 723.3886 [ 40] + X_POSIX 70 read 15 1504 328 723.4351 723.4351 [ 40] + X_POSIX 70 read 16 0 8 724.2516 724.3476 [ 40] + X_POSIX 70 read 17 0 9 724.3476 724.3477 [ 40] + X_POSIX 70 read 18 9 87 724.3477 724.3477 [ 40] + X_POSIX 70 read 19 96 512 724.3477 724.3477 [ 40] + X_POSIX 70 read 20 2064 632 724.3477 724.3478 [ 40] + X_POSIX 70 read 21 136 544 724.3478 724.3478 [ 40] + X_POSIX 70 read 22 680 512 724.3478 724.3478 [ 40] + X_POSIX 70 read 23 1504 328 724.3540 724.3544 [ 40] + X_POSIX 70 read 24 0 8 726.4572 726.5982 [ 40] + X_POSIX 70 read 25 0 9 726.6013 726.6014 [ 40] + X_POSIX 70 read 26 9 87 726.6017 726.6017 [ 40] + X_POSIX 70 read 27 96 512 726.6076 726.6076 [ 40] + X_POSIX 70 read 28 2064 632 726.6101 726.6101 [ 40] + X_POSIX 70 read 29 136 544 726.6120 726.6120 [ 40] + X_POSIX 70 read 30 680 512 726.6129 726.6130 [ 40] + X_POSIX 70 read 31 1504 328 726.6390 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 70, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 70 read 0 0 8 1497.1119 1497.2262 [209] + X_POSIX 70 read 1 0 9 1497.2263 1497.2263 [209] + X_POSIX 70 read 2 9 87 1497.2263 1497.2264 [209] + X_POSIX 70 read 3 96 512 1497.2265 1497.2265 [209] + X_POSIX 70 read 4 2064 632 1497.2265 1497.2266 [209] + X_POSIX 70 read 5 136 544 1497.2266 1497.2267 [209] + X_POSIX 70 read 6 680 512 1497.2267 1497.2268 [209] + X_POSIX 70 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 70 read 8 0 8 1497.9396 1497.9571 [209] + X_POSIX 70 read 9 0 9 1497.9601 1497.9602 [209] + X_POSIX 70 read 10 9 87 1497.9605 1497.9605 [209] + X_POSIX 70 read 11 96 512 1497.9664 1497.9664 [209] + X_POSIX 70 read 12 2064 632 1497.9689 1497.9689 [209] + X_POSIX 70 read 13 136 544 1497.9707 1497.9708 [209] + X_POSIX 70 read 14 680 512 1497.9717 1497.9717 [209] + X_POSIX 70 read 15 1504 328 1497.9965 1497.9965 [209] + X_POSIX 70 read 16 0 8 1498.6920 1498.7795 [209] + X_POSIX 70 read 17 0 9 1498.7795 1498.7796 [209] + X_POSIX 70 read 18 9 87 1498.7796 1498.7796 [209] + X_POSIX 70 read 19 96 512 1498.7796 1498.7796 [209] + X_POSIX 70 read 20 2064 632 1498.7796 1498.7797 [209] + X_POSIX 70 read 21 136 544 1498.7797 1498.7797 [209] + X_POSIX 70 read 22 680 512 1498.7797 1498.7797 [209] + X_POSIX 70 read 23 1504 328 1498.8017 1498.8019 [209] + X_POSIX 70 read 24 0 8 1500.5670 1500.6811 [209] + X_POSIX 70 read 25 0 9 1500.6811 1500.6812 [209] + X_POSIX 70 read 26 9 87 1500.6812 1500.6813 [209] + X_POSIX 70 read 27 96 512 1500.6827 1500.6827 [209] + X_POSIX 70 read 28 2064 632 1500.6840 1500.6840 [209] + X_POSIX 70 read 29 136 544 1500.6843 1500.6844 [209] + X_POSIX 70 read 30 680 512 1500.6847 1500.6847 [209] + X_POSIX 70 read 31 1504 328 1500.7122 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 71, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 71 read 0 0 342 1.4761 1.4793 [ 33] + X_POSIX 71 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 71, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 71 read 0 0 8 722.3863 722.4804 [ 40] + X_POSIX 71 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 71 read 2 9 87 722.4834 722.4836 [ 40] + X_POSIX 71 read 3 96 512 722.4921 722.4923 [ 40] + X_POSIX 71 read 4 2064 632 722.4947 722.4947 [ 40] + X_POSIX 71 read 5 136 544 722.4965 722.4966 [ 40] + X_POSIX 71 read 6 680 512 722.4975 722.4975 [ 40] + X_POSIX 71 read 7 1504 328 722.5391 722.5392 [ 40] + X_POSIX 71 read 8 0 8 723.3560 723.3741 [ 40] + X_POSIX 71 read 9 0 9 723.3775 723.3775 [ 40] + X_POSIX 71 read 10 9 87 723.3778 723.3779 [ 40] + X_POSIX 71 read 11 96 512 723.3837 723.3837 [ 40] + X_POSIX 71 read 12 2064 632 723.3862 723.3862 [ 40] + X_POSIX 71 read 13 136 544 723.3880 723.3881 [ 40] + X_POSIX 71 read 14 680 512 723.3890 723.3890 [ 40] + X_POSIX 71 read 15 1504 328 723.4351 723.4351 [ 40] + X_POSIX 71 read 16 0 8 724.2517 724.3483 [ 40] + X_POSIX 71 read 17 0 9 724.3483 724.3484 [ 40] + X_POSIX 71 read 18 9 87 724.3484 724.3484 [ 40] + X_POSIX 71 read 19 96 512 724.3484 724.3484 [ 40] + X_POSIX 71 read 20 2064 632 724.3484 724.3484 [ 40] + X_POSIX 71 read 21 136 544 724.3484 724.3485 [ 40] + X_POSIX 71 read 22 680 512 724.3485 724.3485 [ 40] + X_POSIX 71 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 71 read 24 0 8 726.4573 726.5985 [ 40] + X_POSIX 71 read 25 0 9 726.6019 726.6019 [ 40] + X_POSIX 71 read 26 9 87 726.6022 726.6022 [ 40] + X_POSIX 71 read 27 96 512 726.6081 726.6082 [ 40] + X_POSIX 71 read 28 2064 632 726.6106 726.6106 [ 40] + X_POSIX 71 read 29 136 544 726.6125 726.6125 [ 40] + X_POSIX 71 read 30 680 512 726.6134 726.6135 [ 40] + X_POSIX 71 read 31 1504 328 726.6390 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 71, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 71 read 0 0 8 1497.1120 1497.2262 [209] + X_POSIX 71 read 1 0 9 1497.2263 1497.2263 [209] + X_POSIX 71 read 2 9 87 1497.2263 1497.2264 [209] + X_POSIX 71 read 3 96 512 1497.2264 1497.2265 [209] + X_POSIX 71 read 4 2064 632 1497.2265 1497.2265 [209] + X_POSIX 71 read 5 136 544 1497.2265 1497.2266 [209] + X_POSIX 71 read 6 680 512 1497.2266 1497.2266 [209] + X_POSIX 71 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 71 read 8 0 8 1497.9396 1497.9573 [209] + X_POSIX 71 read 9 0 9 1497.9607 1497.9607 [209] + X_POSIX 71 read 10 9 87 1497.9610 1497.9610 [209] + X_POSIX 71 read 11 96 512 1497.9669 1497.9669 [209] + X_POSIX 71 read 12 2064 632 1497.9694 1497.9694 [209] + X_POSIX 71 read 13 136 544 1497.9712 1497.9713 [209] + X_POSIX 71 read 14 680 512 1497.9722 1497.9722 [209] + X_POSIX 71 read 15 1504 328 1497.9962 1497.9962 [209] + X_POSIX 71 read 16 0 8 1498.6920 1498.7789 [209] + X_POSIX 71 read 17 0 9 1498.7789 1498.7790 [209] + X_POSIX 71 read 18 9 87 1498.7790 1498.7790 [209] + X_POSIX 71 read 19 96 512 1498.7790 1498.7790 [209] + X_POSIX 71 read 20 2064 632 1498.7790 1498.7791 [209] + X_POSIX 71 read 21 136 544 1498.7791 1498.7791 [209] + X_POSIX 71 read 22 680 512 1498.7791 1498.7791 [209] + X_POSIX 71 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 71 read 24 0 8 1500.5675 1500.6816 [209] + X_POSIX 71 read 25 0 9 1500.6830 1500.6830 [209] + X_POSIX 71 read 26 9 87 1500.6833 1500.6834 [209] + X_POSIX 71 read 27 96 512 1500.6853 1500.6853 [209] + X_POSIX 71 read 28 2064 632 1500.6865 1500.6866 [209] + X_POSIX 71 read 29 136 544 1500.6868 1500.6869 [209] + X_POSIX 71 read 30 680 512 1500.6871 1500.6871 [209] + X_POSIX 71 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 72, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 72 read 0 0 342 1.4760 1.4792 [ 33] + X_POSIX 72 read 1 342 0 1.4967 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 72, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 72 read 0 0 8 722.3863 722.4784 [ 40] + X_POSIX 72 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 72 read 2 9 87 722.4834 722.4836 [ 40] + X_POSIX 72 read 3 96 512 722.4920 722.4921 [ 40] + X_POSIX 72 read 4 2064 632 722.4943 722.4943 [ 40] + X_POSIX 72 read 5 136 544 722.4961 722.4962 [ 40] + X_POSIX 72 read 6 680 512 722.4971 722.4971 [ 40] + X_POSIX 72 read 7 1504 328 722.5394 722.5394 [ 40] + X_POSIX 72 read 8 0 8 723.3561 723.3738 [ 40] + X_POSIX 72 read 9 0 9 723.3772 723.3773 [ 40] + X_POSIX 72 read 10 9 87 723.3776 723.3776 [ 40] + X_POSIX 72 read 11 96 512 723.3835 723.3835 [ 40] + X_POSIX 72 read 12 2064 632 723.3859 723.3860 [ 40] + X_POSIX 72 read 13 136 544 723.3878 723.3879 [ 40] + X_POSIX 72 read 14 680 512 723.3888 723.3888 [ 40] + X_POSIX 72 read 15 1504 328 723.4359 723.4359 [ 40] + X_POSIX 72 read 16 0 8 724.2516 724.3467 [ 40] + X_POSIX 72 read 17 0 9 724.3467 724.3467 [ 40] + X_POSIX 72 read 18 9 87 724.3467 724.3467 [ 40] + X_POSIX 72 read 19 96 512 724.3467 724.3468 [ 40] + X_POSIX 72 read 20 2064 632 724.3468 724.3468 [ 40] + X_POSIX 72 read 21 136 544 724.3468 724.3468 [ 40] + X_POSIX 72 read 22 680 512 724.3468 724.3469 [ 40] + X_POSIX 72 read 23 1504 328 724.3540 724.3543 [ 40] + X_POSIX 72 read 24 0 8 726.4573 726.5981 [ 40] + X_POSIX 72 read 25 0 9 726.6009 726.6010 [ 40] + X_POSIX 72 read 26 9 87 726.6013 726.6013 [ 40] + X_POSIX 72 read 27 96 512 726.6072 726.6072 [ 40] + X_POSIX 72 read 28 2064 632 726.6097 726.6097 [ 40] + X_POSIX 72 read 29 136 544 726.6116 726.6116 [ 40] + X_POSIX 72 read 30 680 512 726.6125 726.6125 [ 40] + X_POSIX 72 read 31 1504 328 726.6390 726.6390 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 72, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 72 read 0 0 8 1497.1119 1497.2279 [209] + X_POSIX 72 read 1 0 9 1497.2279 1497.2280 [209] + X_POSIX 72 read 2 9 87 1497.2280 1497.2280 [209] + X_POSIX 72 read 3 96 512 1497.2280 1497.2280 [209] + X_POSIX 72 read 4 2064 632 1497.2281 1497.2281 [209] + X_POSIX 72 read 5 136 544 1497.2281 1497.2281 [209] + X_POSIX 72 read 6 680 512 1497.2281 1497.2282 [209] + X_POSIX 72 read 7 1504 328 1497.2488 1497.2490 [209] + X_POSIX 72 read 8 0 8 1497.9396 1497.9574 [209] + X_POSIX 72 read 9 0 9 1497.9608 1497.9609 [209] + X_POSIX 72 read 10 9 87 1497.9612 1497.9612 [209] + X_POSIX 72 read 11 96 512 1497.9671 1497.9671 [209] + X_POSIX 72 read 12 2064 632 1497.9696 1497.9696 [209] + X_POSIX 72 read 13 136 544 1497.9715 1497.9715 [209] + X_POSIX 72 read 14 680 512 1497.9724 1497.9724 [209] + X_POSIX 72 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 72 read 16 0 8 1498.6919 1498.7779 [209] + X_POSIX 72 read 17 0 9 1498.7779 1498.7779 [209] + X_POSIX 72 read 18 9 87 1498.7779 1498.7780 [209] + X_POSIX 72 read 19 96 512 1498.7780 1498.7780 [209] + X_POSIX 72 read 20 2064 632 1498.7780 1498.7780 [209] + X_POSIX 72 read 21 136 544 1498.7780 1498.7781 [209] + X_POSIX 72 read 22 680 512 1498.7781 1498.7781 [209] + X_POSIX 72 read 23 1504 328 1498.8017 1498.8021 [209] + X_POSIX 72 read 24 0 8 1500.5674 1500.6818 [209] + X_POSIX 72 read 25 0 9 1500.6834 1500.6834 [209] + X_POSIX 72 read 26 9 87 1500.6837 1500.6837 [209] + X_POSIX 72 read 27 96 512 1500.6857 1500.6857 [209] + X_POSIX 72 read 28 2064 632 1500.6869 1500.6869 [209] + X_POSIX 72 read 29 136 544 1500.6872 1500.6872 [209] + X_POSIX 72 read 30 680 512 1500.6875 1500.6875 [209] + X_POSIX 72 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 73, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 73 read 0 0 342 1.4762 1.4800 [ 33] + X_POSIX 73 read 1 342 0 1.4968 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 73, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 73 read 0 0 8 722.3864 722.4784 [ 40] + X_POSIX 73 read 1 0 9 722.4832 722.4833 [ 40] + X_POSIX 73 read 2 9 87 722.4835 722.4836 [ 40] + X_POSIX 73 read 3 96 512 722.4921 722.4921 [ 40] + X_POSIX 73 read 4 2064 632 722.4944 722.4944 [ 40] + X_POSIX 73 read 5 136 544 722.4962 722.4963 [ 40] + X_POSIX 73 read 6 680 512 722.4972 722.4972 [ 40] + X_POSIX 73 read 7 1504 328 722.5396 722.5396 [ 40] + X_POSIX 73 read 8 0 8 723.3564 723.3736 [ 40] + X_POSIX 73 read 9 0 9 723.3768 723.3768 [ 40] + X_POSIX 73 read 10 9 87 723.3771 723.3771 [ 40] + X_POSIX 73 read 11 96 512 723.3830 723.3830 [ 40] + X_POSIX 73 read 12 2064 632 723.3855 723.3855 [ 40] + X_POSIX 73 read 13 136 544 723.3873 723.3873 [ 40] + X_POSIX 73 read 14 680 512 723.3882 723.3883 [ 40] + X_POSIX 73 read 15 1504 328 723.4352 723.4352 [ 40] + X_POSIX 73 read 16 0 8 724.2518 724.3432 [ 40] + X_POSIX 73 read 17 0 9 724.3432 724.3433 [ 40] + X_POSIX 73 read 18 9 87 724.3433 724.3434 [ 40] + X_POSIX 73 read 19 96 512 724.3434 724.3434 [ 40] + X_POSIX 73 read 20 2064 632 724.3434 724.3435 [ 40] + X_POSIX 73 read 21 136 544 724.3435 724.3435 [ 40] + X_POSIX 73 read 22 680 512 724.3435 724.3436 [ 40] + X_POSIX 73 read 23 1504 328 724.3542 724.3545 [ 40] + X_POSIX 73 read 24 0 8 726.4574 726.5983 [ 40] + X_POSIX 73 read 25 0 9 726.6014 726.6014 [ 40] + X_POSIX 73 read 26 9 87 726.6017 726.6017 [ 40] + X_POSIX 73 read 27 96 512 726.6076 726.6076 [ 40] + X_POSIX 73 read 28 2064 632 726.6101 726.6101 [ 40] + X_POSIX 73 read 29 136 544 726.6119 726.6120 [ 40] + X_POSIX 73 read 30 680 512 726.6129 726.6129 [ 40] + X_POSIX 73 read 31 1504 328 726.6394 726.6394 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 73, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 73 read 0 0 8 1497.1121 1497.2274 [209] + X_POSIX 73 read 1 0 9 1497.2274 1497.2275 [209] + X_POSIX 73 read 2 9 87 1497.2275 1497.2275 [209] + X_POSIX 73 read 3 96 512 1497.2275 1497.2275 [209] + X_POSIX 73 read 4 2064 632 1497.2275 1497.2276 [209] + X_POSIX 73 read 5 136 544 1497.2276 1497.2276 [209] + X_POSIX 73 read 6 680 512 1497.2276 1497.2276 [209] + X_POSIX 73 read 7 1504 328 1497.2490 1497.2493 [209] + X_POSIX 73 read 8 0 8 1497.9395 1497.9571 [209] + X_POSIX 73 read 9 0 9 1497.9598 1497.9598 [209] + X_POSIX 73 read 10 9 87 1497.9601 1497.9601 [209] + X_POSIX 73 read 11 96 512 1497.9660 1497.9660 [209] + X_POSIX 73 read 12 2064 632 1497.9685 1497.9685 [209] + X_POSIX 73 read 13 136 544 1497.9704 1497.9704 [209] + X_POSIX 73 read 14 680 512 1497.9713 1497.9713 [209] + X_POSIX 73 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 73 read 16 0 8 1498.6921 1498.7784 [209] + X_POSIX 73 read 17 0 9 1498.7784 1498.7784 [209] + X_POSIX 73 read 18 9 87 1498.7784 1498.7784 [209] + X_POSIX 73 read 19 96 512 1498.7784 1498.7785 [209] + X_POSIX 73 read 20 2064 632 1498.7785 1498.7785 [209] + X_POSIX 73 read 21 136 544 1498.7785 1498.7785 [209] + X_POSIX 73 read 22 680 512 1498.7785 1498.7785 [209] + X_POSIX 73 read 23 1504 328 1498.8019 1498.8022 [209] + X_POSIX 73 read 24 0 8 1500.5676 1500.6816 [209] + X_POSIX 73 read 25 0 9 1500.6829 1500.6829 [209] + X_POSIX 73 read 26 9 87 1500.6832 1500.6833 [209] + X_POSIX 73 read 27 96 512 1500.6852 1500.6852 [209] + X_POSIX 73 read 28 2064 632 1500.6864 1500.6864 [209] + X_POSIX 73 read 29 136 544 1500.6867 1500.6868 [209] + X_POSIX 73 read 30 680 512 1500.6870 1500.6871 [209] + X_POSIX 73 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 74, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 74 read 0 0 342 1.4761 1.4795 [ 33] + X_POSIX 74 read 1 342 0 1.4967 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 74, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 74 read 0 0 8 722.3864 722.4805 [ 40] + X_POSIX 74 read 1 0 9 722.4831 722.4832 [ 40] + X_POSIX 74 read 2 9 87 722.4833 722.4835 [ 40] + X_POSIX 74 read 3 96 512 722.4921 722.4923 [ 40] + X_POSIX 74 read 4 2064 632 722.4946 722.4947 [ 40] + X_POSIX 74 read 5 136 544 722.4965 722.4965 [ 40] + X_POSIX 74 read 6 680 512 722.4974 722.4975 [ 40] + X_POSIX 74 read 7 1504 328 722.5390 722.5390 [ 40] + X_POSIX 74 read 8 0 8 723.3563 723.3738 [ 40] + X_POSIX 74 read 9 0 9 723.3772 723.3772 [ 40] + X_POSIX 74 read 10 9 87 723.3775 723.3775 [ 40] + X_POSIX 74 read 11 96 512 723.3834 723.3834 [ 40] + X_POSIX 74 read 12 2064 632 723.3859 723.3859 [ 40] + X_POSIX 74 read 13 136 544 723.3878 723.3878 [ 40] + X_POSIX 74 read 14 680 512 723.3887 723.3887 [ 40] + X_POSIX 74 read 15 1504 328 723.4353 723.4353 [ 40] + X_POSIX 74 read 16 0 8 724.2517 724.3457 [ 40] + X_POSIX 74 read 17 0 9 724.3457 724.3458 [ 40] + X_POSIX 74 read 18 9 87 724.3458 724.3458 [ 40] + X_POSIX 74 read 19 96 512 724.3458 724.3458 [ 40] + X_POSIX 74 read 20 2064 632 724.3458 724.3459 [ 40] + X_POSIX 74 read 21 136 544 724.3459 724.3459 [ 40] + X_POSIX 74 read 22 680 512 724.3459 724.3459 [ 40] + X_POSIX 74 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 74 read 24 0 8 726.4572 726.5983 [ 40] + X_POSIX 74 read 25 0 9 726.6015 726.6015 [ 40] + X_POSIX 74 read 26 9 87 726.6018 726.6018 [ 40] + X_POSIX 74 read 27 96 512 726.6077 726.6078 [ 40] + X_POSIX 74 read 28 2064 632 726.6102 726.6103 [ 40] + X_POSIX 74 read 29 136 544 726.6121 726.6121 [ 40] + X_POSIX 74 read 30 680 512 726.6131 726.6131 [ 40] + X_POSIX 74 read 31 1504 328 726.6390 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 74, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 74 read 0 0 8 1497.1118 1497.2298 [209] + X_POSIX 74 read 1 0 9 1497.2299 1497.2299 [209] + X_POSIX 74 read 2 9 87 1497.2299 1497.2299 [209] + X_POSIX 74 read 3 96 512 1497.2300 1497.2300 [209] + X_POSIX 74 read 4 2064 632 1497.2300 1497.2300 [209] + X_POSIX 74 read 5 136 544 1497.2300 1497.2301 [209] + X_POSIX 74 read 6 680 512 1497.2301 1497.2301 [209] + X_POSIX 74 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 74 read 8 0 8 1497.9396 1497.9577 [209] + X_POSIX 74 read 9 0 9 1497.9611 1497.9611 [209] + X_POSIX 74 read 10 9 87 1497.9614 1497.9615 [209] + X_POSIX 74 read 11 96 512 1497.9674 1497.9674 [209] + X_POSIX 74 read 12 2064 632 1497.9699 1497.9699 [209] + X_POSIX 74 read 13 136 544 1497.9717 1497.9718 [209] + X_POSIX 74 read 14 680 512 1497.9727 1497.9727 [209] + X_POSIX 74 read 15 1504 328 1497.9965 1497.9965 [209] + X_POSIX 74 read 16 0 8 1498.6920 1498.7781 [209] + X_POSIX 74 read 17 0 9 1498.7781 1498.7782 [209] + X_POSIX 74 read 18 9 87 1498.7782 1498.7782 [209] + X_POSIX 74 read 19 96 512 1498.7782 1498.7782 [209] + X_POSIX 74 read 20 2064 632 1498.7782 1498.7783 [209] + X_POSIX 74 read 21 136 544 1498.7783 1498.7783 [209] + X_POSIX 74 read 22 680 512 1498.7783 1498.7783 [209] + X_POSIX 74 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 74 read 24 0 8 1500.5672 1500.6814 [209] + X_POSIX 74 read 25 0 9 1500.6827 1500.6827 [209] + X_POSIX 74 read 26 9 87 1500.6830 1500.6831 [209] + X_POSIX 74 read 27 96 512 1500.6850 1500.6850 [209] + X_POSIX 74 read 28 2064 632 1500.6862 1500.6863 [209] + X_POSIX 74 read 29 136 544 1500.6866 1500.6866 [209] + X_POSIX 74 read 30 680 512 1500.6869 1500.6869 [209] + X_POSIX 74 read 31 1504 328 1500.7125 1500.7126 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 75, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 75 read 0 0 342 1.4761 1.4800 [ 33] + X_POSIX 75 read 1 342 0 1.4967 1.4967 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 75, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 75 read 0 0 8 722.3863 722.4784 [ 40] + X_POSIX 75 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 75 read 2 9 87 722.4835 722.4837 [ 40] + X_POSIX 75 read 3 96 512 722.4920 722.4920 [ 40] + X_POSIX 75 read 4 2064 632 722.4942 722.4942 [ 40] + X_POSIX 75 read 5 136 544 722.4964 722.4964 [ 40] + X_POSIX 75 read 6 680 512 722.4973 722.4973 [ 40] + X_POSIX 75 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 75 read 8 0 8 723.3564 723.3736 [ 40] + X_POSIX 75 read 9 0 9 723.3769 723.3769 [ 40] + X_POSIX 75 read 10 9 87 723.3772 723.3773 [ 40] + X_POSIX 75 read 11 96 512 723.3831 723.3832 [ 40] + X_POSIX 75 read 12 2064 632 723.3856 723.3856 [ 40] + X_POSIX 75 read 13 136 544 723.3875 723.3875 [ 40] + X_POSIX 75 read 14 680 512 723.3884 723.3884 [ 40] + X_POSIX 75 read 15 1504 328 723.4352 723.4352 [ 40] + X_POSIX 75 read 16 0 8 724.2517 724.3438 [ 40] + X_POSIX 75 read 17 0 9 724.3438 724.3439 [ 40] + X_POSIX 75 read 18 9 87 724.3439 724.3439 [ 40] + X_POSIX 75 read 19 96 512 724.3439 724.3439 [ 40] + X_POSIX 75 read 20 2064 632 724.3439 724.3440 [ 40] + X_POSIX 75 read 21 136 544 724.3440 724.3440 [ 40] + X_POSIX 75 read 22 680 512 724.3440 724.3440 [ 40] + X_POSIX 75 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 75 read 24 0 8 726.4573 726.5986 [ 40] + X_POSIX 75 read 25 0 9 726.6020 726.6020 [ 40] + X_POSIX 75 read 26 9 87 726.6023 726.6023 [ 40] + X_POSIX 75 read 27 96 512 726.6085 726.6086 [ 40] + X_POSIX 75 read 28 2064 632 726.6110 726.6111 [ 40] + X_POSIX 75 read 29 136 544 726.6129 726.6129 [ 40] + X_POSIX 75 read 30 680 512 726.6139 726.6139 [ 40] + X_POSIX 75 read 31 1504 328 726.6394 726.6394 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 75, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 75 read 0 0 8 1497.1120 1497.2280 [209] + X_POSIX 75 read 1 0 9 1497.2280 1497.2281 [209] + X_POSIX 75 read 2 9 87 1497.2281 1497.2281 [209] + X_POSIX 75 read 3 96 512 1497.2281 1497.2282 [209] + X_POSIX 75 read 4 2064 632 1497.2282 1497.2282 [209] + X_POSIX 75 read 5 136 544 1497.2282 1497.2282 [209] + X_POSIX 75 read 6 680 512 1497.2282 1497.2282 [209] + X_POSIX 75 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 75 read 8 0 8 1497.9395 1497.9570 [209] + X_POSIX 75 read 9 0 9 1497.9600 1497.9600 [209] + X_POSIX 75 read 10 9 87 1497.9603 1497.9603 [209] + X_POSIX 75 read 11 96 512 1497.9662 1497.9662 [209] + X_POSIX 75 read 12 2064 632 1497.9687 1497.9687 [209] + X_POSIX 75 read 13 136 544 1497.9705 1497.9705 [209] + X_POSIX 75 read 14 680 512 1497.9714 1497.9715 [209] + X_POSIX 75 read 15 1504 328 1497.9969 1497.9969 [209] + X_POSIX 75 read 16 0 8 1498.6920 1498.7780 [209] + X_POSIX 75 read 17 0 9 1498.7780 1498.7781 [209] + X_POSIX 75 read 18 9 87 1498.7781 1498.7781 [209] + X_POSIX 75 read 19 96 512 1498.7781 1498.7781 [209] + X_POSIX 75 read 20 2064 632 1498.7781 1498.7782 [209] + X_POSIX 75 read 21 136 544 1498.7782 1498.7782 [209] + X_POSIX 75 read 22 680 512 1498.7782 1498.7782 [209] + X_POSIX 75 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 75 read 24 0 8 1500.5670 1500.6811 [209] + X_POSIX 75 read 25 0 9 1500.6813 1500.6813 [209] + X_POSIX 75 read 26 9 87 1500.6815 1500.6815 [209] + X_POSIX 75 read 27 96 512 1500.6831 1500.6831 [209] + X_POSIX 75 read 28 2064 632 1500.6844 1500.6844 [209] + X_POSIX 75 read 29 136 544 1500.6847 1500.6848 [209] + X_POSIX 75 read 30 680 512 1500.6851 1500.6851 [209] + X_POSIX 75 read 31 1504 328 1500.7122 1500.7122 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 76, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 76 read 0 0 342 1.4761 1.4801 [ 33] + X_POSIX 76 read 1 342 0 1.4963 1.4963 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 76, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 76 read 0 0 8 722.3862 722.4806 [ 40] + X_POSIX 76 read 1 0 9 722.4830 722.4831 [ 40] + X_POSIX 76 read 2 9 87 722.4833 722.4834 [ 40] + X_POSIX 76 read 3 96 512 722.4920 722.4922 [ 40] + X_POSIX 76 read 4 2064 632 722.4946 722.4946 [ 40] + X_POSIX 76 read 5 136 544 722.4965 722.4965 [ 40] + X_POSIX 76 read 6 680 512 722.4974 722.4975 [ 40] + X_POSIX 76 read 7 1504 328 722.5389 722.5390 [ 40] + X_POSIX 76 read 8 0 8 723.3563 723.3739 [ 40] + X_POSIX 76 read 9 0 9 723.3773 723.3773 [ 40] + X_POSIX 76 read 10 9 87 723.3776 723.3776 [ 40] + X_POSIX 76 read 11 96 512 723.3835 723.3836 [ 40] + X_POSIX 76 read 12 2064 632 723.3860 723.3861 [ 40] + X_POSIX 76 read 13 136 544 723.3879 723.3879 [ 40] + X_POSIX 76 read 14 680 512 723.3889 723.3889 [ 40] + X_POSIX 76 read 15 1504 328 723.4351 723.4352 [ 40] + X_POSIX 76 read 16 0 8 724.2516 724.3471 [ 40] + X_POSIX 76 read 17 0 9 724.3472 724.3472 [ 40] + X_POSIX 76 read 18 9 87 724.3472 724.3472 [ 40] + X_POSIX 76 read 19 96 512 724.3472 724.3472 [ 40] + X_POSIX 76 read 20 2064 632 724.3472 724.3473 [ 40] + X_POSIX 76 read 21 136 544 724.3473 724.3473 [ 40] + X_POSIX 76 read 22 680 512 724.3473 724.3473 [ 40] + X_POSIX 76 read 23 1504 328 724.3540 724.3544 [ 40] + X_POSIX 76 read 24 0 8 726.4571 726.5987 [ 40] + X_POSIX 76 read 25 0 9 726.6021 726.6021 [ 40] + X_POSIX 76 read 26 9 87 726.6024 726.6025 [ 40] + X_POSIX 76 read 27 96 512 726.6084 726.6084 [ 40] + X_POSIX 76 read 28 2064 632 726.6109 726.6109 [ 40] + X_POSIX 76 read 29 136 544 726.6128 726.6128 [ 40] + X_POSIX 76 read 30 680 512 726.6137 726.6137 [ 40] + X_POSIX 76 read 31 1504 328 726.6390 726.6390 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 76, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 76 read 0 0 8 1497.1119 1497.2261 [209] + X_POSIX 76 read 1 0 9 1497.2263 1497.2263 [209] + X_POSIX 76 read 2 9 87 1497.2263 1497.2263 [209] + X_POSIX 76 read 3 96 512 1497.2264 1497.2265 [209] + X_POSIX 76 read 4 2064 632 1497.2265 1497.2265 [209] + X_POSIX 76 read 5 136 544 1497.2265 1497.2266 [209] + X_POSIX 76 read 6 680 512 1497.2266 1497.2267 [209] + X_POSIX 76 read 7 1504 328 1497.2488 1497.2491 [209] + X_POSIX 76 read 8 0 8 1497.9394 1497.9567 [209] + X_POSIX 76 read 9 0 9 1497.9575 1497.9576 [209] + X_POSIX 76 read 10 9 87 1497.9579 1497.9579 [209] + X_POSIX 76 read 11 96 512 1497.9638 1497.9638 [209] + X_POSIX 76 read 12 2064 632 1497.9663 1497.9663 [209] + X_POSIX 76 read 13 136 544 1497.9682 1497.9682 [209] + X_POSIX 76 read 14 680 512 1497.9691 1497.9691 [209] + X_POSIX 76 read 15 1504 328 1497.9962 1497.9962 [209] + X_POSIX 76 read 16 0 8 1498.6919 1498.7771 [209] + X_POSIX 76 read 17 0 9 1498.7771 1498.7772 [209] + X_POSIX 76 read 18 9 87 1498.7772 1498.7772 [209] + X_POSIX 76 read 19 96 512 1498.7772 1498.7772 [209] + X_POSIX 76 read 20 2064 632 1498.7772 1498.7773 [209] + X_POSIX 76 read 21 136 544 1498.7773 1498.7773 [209] + X_POSIX 76 read 22 680 512 1498.7773 1498.7773 [209] + X_POSIX 76 read 23 1504 328 1498.8017 1498.8018 [209] + X_POSIX 76 read 24 0 8 1500.5668 1500.6811 [209] + X_POSIX 76 read 25 0 9 1500.6814 1500.6815 [209] + X_POSIX 76 read 26 9 87 1500.6816 1500.6817 [209] + X_POSIX 76 read 27 96 512 1500.6835 1500.6835 [209] + X_POSIX 76 read 28 2064 632 1500.6848 1500.6848 [209] + X_POSIX 76 read 29 136 544 1500.6851 1500.6852 [209] + X_POSIX 76 read 30 680 512 1500.6855 1500.6855 [209] + X_POSIX 76 read 31 1504 328 1500.7121 1500.7122 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 77, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 77 read 0 0 342 1.4761 1.4797 [ 33] + X_POSIX 77 read 1 342 0 1.4967 1.4968 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 77, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 77 read 0 0 8 722.3863 722.4807 [ 40] + X_POSIX 77 read 1 0 9 722.4831 722.4831 [ 40] + X_POSIX 77 read 2 9 87 722.4832 722.4834 [ 40] + X_POSIX 77 read 3 96 512 722.4920 722.4921 [ 40] + X_POSIX 77 read 4 2064 632 722.4943 722.4943 [ 40] + X_POSIX 77 read 5 136 544 722.4961 722.4962 [ 40] + X_POSIX 77 read 6 680 512 722.4970 722.4971 [ 40] + X_POSIX 77 read 7 1504 328 722.5393 722.5393 [ 40] + X_POSIX 77 read 8 0 8 723.3563 723.3734 [ 40] + X_POSIX 77 read 9 0 9 723.3760 723.3760 [ 40] + X_POSIX 77 read 10 9 87 723.3763 723.3764 [ 40] + X_POSIX 77 read 11 96 512 723.3822 723.3822 [ 40] + X_POSIX 77 read 12 2064 632 723.3847 723.3847 [ 40] + X_POSIX 77 read 13 136 544 723.3865 723.3866 [ 40] + X_POSIX 77 read 14 680 512 723.3875 723.3875 [ 40] + X_POSIX 77 read 15 1504 328 723.4351 723.4352 [ 40] + X_POSIX 77 read 16 0 8 724.2517 724.3430 [ 40] + X_POSIX 77 read 17 0 9 724.3430 724.3431 [ 40] + X_POSIX 77 read 18 9 87 724.3431 724.3432 [ 40] + X_POSIX 77 read 19 96 512 724.3432 724.3432 [ 40] + X_POSIX 77 read 20 2064 632 724.3432 724.3433 [ 40] + X_POSIX 77 read 21 136 544 724.3433 724.3434 [ 40] + X_POSIX 77 read 22 680 512 724.3434 724.3435 [ 40] + X_POSIX 77 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 77 read 24 0 8 726.4573 726.5982 [ 40] + X_POSIX 77 read 25 0 9 726.6012 726.6012 [ 40] + X_POSIX 77 read 26 9 87 726.6015 726.6016 [ 40] + X_POSIX 77 read 27 96 512 726.6074 726.6074 [ 40] + X_POSIX 77 read 28 2064 632 726.6099 726.6099 [ 40] + X_POSIX 77 read 29 136 544 726.6118 726.6118 [ 40] + X_POSIX 77 read 30 680 512 726.6127 726.6128 [ 40] + X_POSIX 77 read 31 1504 328 726.6391 726.6392 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 77, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 77 read 0 0 8 1497.1120 1497.2263 [209] + X_POSIX 77 read 1 0 9 1497.2265 1497.2266 [209] + X_POSIX 77 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 77 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 77 read 4 2064 632 1497.2268 1497.2269 [209] + X_POSIX 77 read 5 136 544 1497.2269 1497.2269 [209] + X_POSIX 77 read 6 680 512 1497.2269 1497.2270 [209] + X_POSIX 77 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 77 read 8 0 8 1497.9397 1497.9573 [209] + X_POSIX 77 read 9 0 9 1497.9606 1497.9606 [209] + X_POSIX 77 read 10 9 87 1497.9609 1497.9609 [209] + X_POSIX 77 read 11 96 512 1497.9668 1497.9668 [209] + X_POSIX 77 read 12 2064 632 1497.9693 1497.9693 [209] + X_POSIX 77 read 13 136 544 1497.9711 1497.9712 [209] + X_POSIX 77 read 14 680 512 1497.9721 1497.9721 [209] + X_POSIX 77 read 15 1504 328 1497.9962 1497.9963 [209] + X_POSIX 77 read 16 0 8 1498.6920 1498.7813 [209] + X_POSIX 77 read 17 0 9 1498.7813 1498.7814 [209] + X_POSIX 77 read 18 9 87 1498.7814 1498.7814 [209] + X_POSIX 77 read 19 96 512 1498.7814 1498.7814 [209] + X_POSIX 77 read 20 2064 632 1498.7814 1498.7814 [209] + X_POSIX 77 read 21 136 544 1498.7815 1498.7815 [209] + X_POSIX 77 read 22 680 512 1498.7815 1498.7815 [209] + X_POSIX 77 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 77 read 24 0 8 1500.5670 1500.6812 [209] + X_POSIX 77 read 25 0 9 1500.6813 1500.6813 [209] + X_POSIX 77 read 26 9 87 1500.6815 1500.6815 [209] + X_POSIX 77 read 27 96 512 1500.6832 1500.6832 [209] + X_POSIX 77 read 28 2064 632 1500.6844 1500.6845 [209] + X_POSIX 77 read 29 136 544 1500.6848 1500.6848 [209] + X_POSIX 77 read 30 680 512 1500.6851 1500.6852 [209] + X_POSIX 77 read 31 1504 328 1500.7122 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 78, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 78 read 0 0 342 1.4761 1.4801 [ 33] + X_POSIX 78 read 1 342 0 1.4968 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 78, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 78 read 0 0 8 722.3863 722.4782 [ 40] + X_POSIX 78 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 78 read 2 9 87 722.4835 722.4836 [ 40] + X_POSIX 78 read 3 96 512 722.4918 722.4919 [ 40] + X_POSIX 78 read 4 2064 632 722.4941 722.4941 [ 40] + X_POSIX 78 read 5 136 544 722.4960 722.4960 [ 40] + X_POSIX 78 read 6 680 512 722.4969 722.4969 [ 40] + X_POSIX 78 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 78 read 8 0 8 723.3563 723.3738 [ 40] + X_POSIX 78 read 9 0 9 723.3772 723.3772 [ 40] + X_POSIX 78 read 10 9 87 723.3775 723.3775 [ 40] + X_POSIX 78 read 11 96 512 723.3834 723.3834 [ 40] + X_POSIX 78 read 12 2064 632 723.3858 723.3859 [ 40] + X_POSIX 78 read 13 136 544 723.3877 723.3877 [ 40] + X_POSIX 78 read 14 680 512 723.3886 723.3886 [ 40] + X_POSIX 78 read 15 1504 328 723.4356 723.4356 [ 40] + X_POSIX 78 read 16 0 8 724.2516 724.3451 [ 40] + X_POSIX 78 read 17 0 9 724.3451 724.3451 [ 40] + X_POSIX 78 read 18 9 87 724.3451 724.3452 [ 40] + X_POSIX 78 read 19 96 512 724.3452 724.3452 [ 40] + X_POSIX 78 read 20 2064 632 724.3452 724.3452 [ 40] + X_POSIX 78 read 21 136 544 724.3452 724.3453 [ 40] + X_POSIX 78 read 22 680 512 724.3453 724.3453 [ 40] + X_POSIX 78 read 23 1504 328 724.3540 724.3544 [ 40] + X_POSIX 78 read 24 0 8 726.4573 726.5983 [ 40] + X_POSIX 78 read 25 0 9 726.6016 726.6016 [ 40] + X_POSIX 78 read 26 9 87 726.6019 726.6019 [ 40] + X_POSIX 78 read 27 96 512 726.6079 726.6079 [ 40] + X_POSIX 78 read 28 2064 632 726.6104 726.6104 [ 40] + X_POSIX 78 read 29 136 544 726.6123 726.6123 [ 40] + X_POSIX 78 read 30 680 512 726.6132 726.6132 [ 40] + X_POSIX 78 read 31 1504 328 726.6393 726.6394 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 78, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 78 read 0 0 8 1497.1118 1497.2299 [209] + X_POSIX 78 read 1 0 9 1497.2299 1497.2300 [209] + X_POSIX 78 read 2 9 87 1497.2300 1497.2300 [209] + X_POSIX 78 read 3 96 512 1497.2300 1497.2300 [209] + X_POSIX 78 read 4 2064 632 1497.2300 1497.2301 [209] + X_POSIX 78 read 5 136 544 1497.2301 1497.2301 [209] + X_POSIX 78 read 6 680 512 1497.2301 1497.2301 [209] + X_POSIX 78 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 78 read 8 0 8 1497.9396 1497.9572 [209] + X_POSIX 78 read 9 0 9 1497.9605 1497.9605 [209] + X_POSIX 78 read 10 9 87 1497.9609 1497.9609 [209] + X_POSIX 78 read 11 96 512 1497.9668 1497.9668 [209] + X_POSIX 78 read 12 2064 632 1497.9693 1497.9693 [209] + X_POSIX 78 read 13 136 544 1497.9711 1497.9712 [209] + X_POSIX 78 read 14 680 512 1497.9721 1497.9721 [209] + X_POSIX 78 read 15 1504 328 1497.9965 1497.9965 [209] + X_POSIX 78 read 16 0 8 1498.6920 1498.7808 [209] + X_POSIX 78 read 17 0 9 1498.7808 1498.7808 [209] + X_POSIX 78 read 18 9 87 1498.7808 1498.7809 [209] + X_POSIX 78 read 19 96 512 1498.7809 1498.7809 [209] + X_POSIX 78 read 20 2064 632 1498.7809 1498.7809 [209] + X_POSIX 78 read 21 136 544 1498.7810 1498.7810 [209] + X_POSIX 78 read 22 680 512 1498.7810 1498.7810 [209] + X_POSIX 78 read 23 1504 328 1498.8017 1498.8020 [209] + X_POSIX 78 read 24 0 8 1500.5668 1500.6812 [209] + X_POSIX 78 read 25 0 9 1500.6817 1500.6817 [209] + X_POSIX 78 read 26 9 87 1500.6819 1500.6820 [209] + X_POSIX 78 read 27 96 512 1500.6838 1500.6839 [209] + X_POSIX 78 read 28 2064 632 1500.6852 1500.6852 [209] + X_POSIX 78 read 29 136 544 1500.6855 1500.6855 [209] + X_POSIX 78 read 30 680 512 1500.6858 1500.6859 [209] + X_POSIX 78 read 31 1504 328 1500.7122 1500.7122 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 79, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 79 read 0 0 342 1.4763 1.4801 [ 33] + X_POSIX 79 read 1 342 0 1.4969 1.4969 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 79, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 79 read 0 0 8 722.3864 722.4824 [ 40] + X_POSIX 79 read 1 0 9 722.4841 722.4841 [ 40] + X_POSIX 79 read 2 9 87 722.4841 722.4842 [ 40] + X_POSIX 79 read 3 96 512 722.4922 722.4922 [ 40] + X_POSIX 79 read 4 2064 632 722.4945 722.4945 [ 40] + X_POSIX 79 read 5 136 544 722.4963 722.4963 [ 40] + X_POSIX 79 read 6 680 512 722.4973 722.4973 [ 40] + X_POSIX 79 read 7 1504 328 722.5394 722.5394 [ 40] + X_POSIX 79 read 8 0 8 723.3561 723.3737 [ 40] + X_POSIX 79 read 9 0 9 723.3769 723.3769 [ 40] + X_POSIX 79 read 10 9 87 723.3772 723.3772 [ 40] + X_POSIX 79 read 11 96 512 723.3831 723.3831 [ 40] + X_POSIX 79 read 12 2064 632 723.3855 723.3855 [ 40] + X_POSIX 79 read 13 136 544 723.3874 723.3874 [ 40] + X_POSIX 79 read 14 680 512 723.3883 723.3883 [ 40] + X_POSIX 79 read 15 1504 328 723.4353 723.4354 [ 40] + X_POSIX 79 read 16 0 8 724.2518 724.3432 [ 40] + X_POSIX 79 read 17 0 9 724.3433 724.3433 [ 40] + X_POSIX 79 read 18 9 87 724.3433 724.3434 [ 40] + X_POSIX 79 read 19 96 512 724.3434 724.3435 [ 40] + X_POSIX 79 read 20 2064 632 724.3435 724.3435 [ 40] + X_POSIX 79 read 21 136 544 724.3435 724.3436 [ 40] + X_POSIX 79 read 22 680 512 724.3436 724.3436 [ 40] + X_POSIX 79 read 23 1504 328 724.3542 724.3545 [ 40] + X_POSIX 79 read 24 0 8 726.4574 726.5987 [ 40] + X_POSIX 79 read 25 0 9 726.6021 726.6021 [ 40] + X_POSIX 79 read 26 9 87 726.6024 726.6024 [ 40] + X_POSIX 79 read 27 96 512 726.6083 726.6083 [ 40] + X_POSIX 79 read 28 2064 632 726.6108 726.6108 [ 40] + X_POSIX 79 read 29 136 544 726.6127 726.6127 [ 40] + X_POSIX 79 read 30 680 512 726.6136 726.6136 [ 40] + X_POSIX 79 read 31 1504 328 726.6395 726.6395 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 79, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 79 read 0 0 8 1497.1121 1497.2264 [209] + X_POSIX 79 read 1 0 9 1497.2265 1497.2266 [209] + X_POSIX 79 read 2 9 87 1497.2266 1497.2266 [209] + X_POSIX 79 read 3 96 512 1497.2267 1497.2267 [209] + X_POSIX 79 read 4 2064 632 1497.2267 1497.2268 [209] + X_POSIX 79 read 5 136 544 1497.2268 1497.2269 [209] + X_POSIX 79 read 6 680 512 1497.2269 1497.2270 [209] + X_POSIX 79 read 7 1504 328 1497.2490 1497.2493 [209] + X_POSIX 79 read 8 0 8 1497.9398 1497.9573 [209] + X_POSIX 79 read 9 0 9 1497.9606 1497.9606 [209] + X_POSIX 79 read 10 9 87 1497.9609 1497.9609 [209] + X_POSIX 79 read 11 96 512 1497.9668 1497.9668 [209] + X_POSIX 79 read 12 2064 632 1497.9693 1497.9693 [209] + X_POSIX 79 read 13 136 544 1497.9711 1497.9711 [209] + X_POSIX 79 read 14 680 512 1497.9720 1497.9721 [209] + X_POSIX 79 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 79 read 16 0 8 1498.6921 1498.7812 [209] + X_POSIX 79 read 17 0 9 1498.7812 1498.7812 [209] + X_POSIX 79 read 18 9 87 1498.7813 1498.7813 [209] + X_POSIX 79 read 19 96 512 1498.7813 1498.7813 [209] + X_POSIX 79 read 20 2064 632 1498.7813 1498.7813 [209] + X_POSIX 79 read 21 136 544 1498.7814 1498.7814 [209] + X_POSIX 79 read 22 680 512 1498.7814 1498.7814 [209] + X_POSIX 79 read 23 1504 328 1498.8019 1498.8023 [209] + X_POSIX 79 read 24 0 8 1500.5676 1500.6820 [209] + X_POSIX 79 read 25 0 9 1500.6836 1500.6836 [209] + X_POSIX 79 read 26 9 87 1500.6839 1500.6839 [209] + X_POSIX 79 read 27 96 512 1500.6858 1500.6859 [209] + X_POSIX 79 read 28 2064 632 1500.6870 1500.6871 [209] + X_POSIX 79 read 29 136 544 1500.6873 1500.6874 [209] + X_POSIX 79 read 30 680 512 1500.6875 1500.6876 [209] + X_POSIX 79 read 31 1504 328 1500.7126 1500.7127 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 80, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 80 read 0 0 342 1.4761 1.4799 [ 33] + X_POSIX 80 read 1 342 0 1.4967 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 80, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 80 read 0 0 8 722.3863 722.4821 [ 40] + X_POSIX 80 read 1 0 9 722.4827 722.4827 [ 40] + X_POSIX 80 read 2 9 87 722.4830 722.4832 [ 40] + X_POSIX 80 read 3 96 512 722.4920 722.4922 [ 40] + X_POSIX 80 read 4 2064 632 722.4945 722.4946 [ 40] + X_POSIX 80 read 5 136 544 722.4964 722.4964 [ 40] + X_POSIX 80 read 6 680 512 722.4974 722.4974 [ 40] + X_POSIX 80 read 7 1504 328 722.5391 722.5392 [ 40] + X_POSIX 80 read 8 0 8 723.3563 723.3737 [ 40] + X_POSIX 80 read 9 0 9 723.3770 723.3770 [ 40] + X_POSIX 80 read 10 9 87 723.3773 723.3774 [ 40] + X_POSIX 80 read 11 96 512 723.3833 723.3833 [ 40] + X_POSIX 80 read 12 2064 632 723.3857 723.3858 [ 40] + X_POSIX 80 read 13 136 544 723.3876 723.3876 [ 40] + X_POSIX 80 read 14 680 512 723.3885 723.3886 [ 40] + X_POSIX 80 read 15 1504 328 723.4352 723.4353 [ 40] + X_POSIX 80 read 16 0 8 724.2516 724.3467 [ 40] + X_POSIX 80 read 17 0 9 724.3467 724.3468 [ 40] + X_POSIX 80 read 18 9 87 724.3468 724.3468 [ 40] + X_POSIX 80 read 19 96 512 724.3468 724.3468 [ 40] + X_POSIX 80 read 20 2064 632 724.3468 724.3469 [ 40] + X_POSIX 80 read 21 136 544 724.3469 724.3469 [ 40] + X_POSIX 80 read 22 680 512 724.3469 724.3469 [ 40] + X_POSIX 80 read 23 1504 328 724.3540 724.3543 [ 40] + X_POSIX 80 read 24 0 8 726.4573 726.5984 [ 40] + X_POSIX 80 read 25 0 9 726.6018 726.6018 [ 40] + X_POSIX 80 read 26 9 87 726.6021 726.6021 [ 40] + X_POSIX 80 read 27 96 512 726.6081 726.6081 [ 40] + X_POSIX 80 read 28 2064 632 726.6106 726.6106 [ 40] + X_POSIX 80 read 29 136 544 726.6124 726.6125 [ 40] + X_POSIX 80 read 30 680 512 726.6134 726.6134 [ 40] + X_POSIX 80 read 31 1504 328 726.6391 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 80, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 80 read 0 0 8 1497.1118 1497.2264 [209] + X_POSIX 80 read 1 0 9 1497.2265 1497.2266 [209] + X_POSIX 80 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 80 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 80 read 4 2064 632 1497.2268 1497.2268 [209] + X_POSIX 80 read 5 136 544 1497.2268 1497.2269 [209] + X_POSIX 80 read 6 680 512 1497.2269 1497.2269 [209] + X_POSIX 80 read 7 1504 328 1497.2488 1497.2491 [209] + X_POSIX 80 read 8 0 8 1497.9395 1497.9574 [209] + X_POSIX 80 read 9 0 9 1497.9609 1497.9609 [209] + X_POSIX 80 read 10 9 87 1497.9612 1497.9612 [209] + X_POSIX 80 read 11 96 512 1497.9671 1497.9671 [209] + X_POSIX 80 read 12 2064 632 1497.9696 1497.9697 [209] + X_POSIX 80 read 13 136 544 1497.9715 1497.9715 [209] + X_POSIX 80 read 14 680 512 1497.9724 1497.9724 [209] + X_POSIX 80 read 15 1504 328 1497.9965 1497.9966 [209] + X_POSIX 80 read 16 0 8 1498.6919 1498.7771 [209] + X_POSIX 80 read 17 0 9 1498.7771 1498.7771 [209] + X_POSIX 80 read 18 9 87 1498.7772 1498.7772 [209] + X_POSIX 80 read 19 96 512 1498.7772 1498.7772 [209] + X_POSIX 80 read 20 2064 632 1498.7772 1498.7772 [209] + X_POSIX 80 read 21 136 544 1498.7772 1498.7773 [209] + X_POSIX 80 read 22 680 512 1498.7773 1498.7773 [209] + X_POSIX 80 read 23 1504 328 1498.8017 1498.8021 [209] + X_POSIX 80 read 24 0 8 1500.5670 1500.6812 [209] + X_POSIX 80 read 25 0 9 1500.6817 1500.6817 [209] + X_POSIX 80 read 26 9 87 1500.6820 1500.6820 [209] + X_POSIX 80 read 27 96 512 1500.6838 1500.6839 [209] + X_POSIX 80 read 28 2064 632 1500.6851 1500.6852 [209] + X_POSIX 80 read 29 136 544 1500.6855 1500.6855 [209] + X_POSIX 80 read 30 680 512 1500.6858 1500.6859 [209] + X_POSIX 80 read 31 1504 328 1500.7122 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 81, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 81 read 0 0 342 1.4761 1.4796 [ 33] + X_POSIX 81 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 81, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 81 read 0 0 8 722.3864 722.4808 [ 40] + X_POSIX 81 read 1 0 9 722.4831 722.4831 [ 40] + X_POSIX 81 read 2 9 87 722.4832 722.4834 [ 40] + X_POSIX 81 read 3 96 512 722.4923 722.4925 [ 40] + X_POSIX 81 read 4 2064 632 722.4950 722.4950 [ 40] + X_POSIX 81 read 5 136 544 722.4968 722.4968 [ 40] + X_POSIX 81 read 6 680 512 722.4977 722.4978 [ 40] + X_POSIX 81 read 7 1504 328 722.5395 722.5395 [ 40] + X_POSIX 81 read 8 0 8 723.3567 723.3733 [ 40] + X_POSIX 81 read 9 0 9 723.3747 723.3747 [ 40] + X_POSIX 81 read 10 9 87 723.3750 723.3751 [ 40] + X_POSIX 81 read 11 96 512 723.3809 723.3810 [ 40] + X_POSIX 81 read 12 2064 632 723.3834 723.3835 [ 40] + X_POSIX 81 read 13 136 544 723.3853 723.3853 [ 40] + X_POSIX 81 read 14 680 512 723.3862 723.3863 [ 40] + X_POSIX 81 read 15 1504 328 723.4354 723.4355 [ 40] + X_POSIX 81 read 16 0 8 724.2517 724.3439 [ 40] + X_POSIX 81 read 17 0 9 724.3439 724.3439 [ 40] + X_POSIX 81 read 18 9 87 724.3439 724.3439 [ 40] + X_POSIX 81 read 19 96 512 724.3440 724.3440 [ 40] + X_POSIX 81 read 20 2064 632 724.3440 724.3440 [ 40] + X_POSIX 81 read 21 136 544 724.3440 724.3440 [ 40] + X_POSIX 81 read 22 680 512 724.3441 724.3441 [ 40] + X_POSIX 81 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 81 read 24 0 8 726.4574 726.5984 [ 40] + X_POSIX 81 read 25 0 9 726.6017 726.6017 [ 40] + X_POSIX 81 read 26 9 87 726.6020 726.6020 [ 40] + X_POSIX 81 read 27 96 512 726.6079 726.6079 [ 40] + X_POSIX 81 read 28 2064 632 726.6104 726.6104 [ 40] + X_POSIX 81 read 29 136 544 726.6123 726.6123 [ 40] + X_POSIX 81 read 30 680 512 726.6132 726.6132 [ 40] + X_POSIX 81 read 31 1504 328 726.6396 726.6397 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 81, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 81 read 0 0 8 1497.1119 1497.2299 [209] + X_POSIX 81 read 1 0 9 1497.2300 1497.2300 [209] + X_POSIX 81 read 2 9 87 1497.2300 1497.2301 [209] + X_POSIX 81 read 3 96 512 1497.2301 1497.2301 [209] + X_POSIX 81 read 4 2064 632 1497.2301 1497.2301 [209] + X_POSIX 81 read 5 136 544 1497.2301 1497.2302 [209] + X_POSIX 81 read 6 680 512 1497.2302 1497.2302 [209] + X_POSIX 81 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 81 read 8 0 8 1497.9396 1497.9569 [209] + X_POSIX 81 read 9 0 9 1497.9588 1497.9588 [209] + X_POSIX 81 read 10 9 87 1497.9591 1497.9592 [209] + X_POSIX 81 read 11 96 512 1497.9650 1497.9651 [209] + X_POSIX 81 read 12 2064 632 1497.9675 1497.9675 [209] + X_POSIX 81 read 13 136 544 1497.9694 1497.9694 [209] + X_POSIX 81 read 14 680 512 1497.9703 1497.9704 [209] + X_POSIX 81 read 15 1504 328 1497.9966 1497.9966 [209] + X_POSIX 81 read 16 0 8 1498.6920 1498.7817 [209] + X_POSIX 81 read 17 0 9 1498.7817 1498.7817 [209] + X_POSIX 81 read 18 9 87 1498.7817 1498.7818 [209] + X_POSIX 81 read 19 96 512 1498.7818 1498.7818 [209] + X_POSIX 81 read 20 2064 632 1498.7818 1498.7818 [209] + X_POSIX 81 read 21 136 544 1498.7818 1498.7818 [209] + X_POSIX 81 read 22 680 512 1498.7818 1498.7819 [209] + X_POSIX 81 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 81 read 24 0 8 1500.5675 1500.6818 [209] + X_POSIX 81 read 25 0 9 1500.6833 1500.6833 [209] + X_POSIX 81 read 26 9 87 1500.6836 1500.6837 [209] + X_POSIX 81 read 27 96 512 1500.6856 1500.6856 [209] + X_POSIX 81 read 28 2064 632 1500.6868 1500.6868 [209] + X_POSIX 81 read 29 136 544 1500.6871 1500.6871 [209] + X_POSIX 81 read 30 680 512 1500.6873 1500.6874 [209] + X_POSIX 81 read 31 1504 328 1500.7126 1500.7126 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 82, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 82 read 0 0 342 1.4761 1.4797 [ 33] + X_POSIX 82 read 1 342 0 1.4967 1.4968 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 82, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 82 read 0 0 8 722.3863 722.4804 [ 40] + X_POSIX 82 read 1 0 9 722.4830 722.4831 [ 40] + X_POSIX 82 read 2 9 87 722.4832 722.4834 [ 40] + X_POSIX 82 read 3 96 512 722.4920 722.4922 [ 40] + X_POSIX 82 read 4 2064 632 722.4945 722.4946 [ 40] + X_POSIX 82 read 5 136 544 722.4964 722.4964 [ 40] + X_POSIX 82 read 6 680 512 722.4973 722.4974 [ 40] + X_POSIX 82 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 82 read 8 0 8 723.3566 723.3732 [ 40] + X_POSIX 82 read 9 0 9 723.3733 723.3733 [ 40] + X_POSIX 82 read 10 9 87 723.3734 723.3734 [ 40] + X_POSIX 82 read 11 96 512 723.3784 723.3784 [ 40] + X_POSIX 82 read 12 2064 632 723.3809 723.3810 [ 40] + X_POSIX 82 read 13 136 544 723.3828 723.3829 [ 40] + X_POSIX 82 read 14 680 512 723.3838 723.3838 [ 40] + X_POSIX 82 read 15 1504 328 723.4352 723.4352 [ 40] + X_POSIX 82 read 16 0 8 724.2517 724.3430 [ 40] + X_POSIX 82 read 17 0 9 724.3430 724.3431 [ 40] + X_POSIX 82 read 18 9 87 724.3431 724.3431 [ 40] + X_POSIX 82 read 19 96 512 724.3431 724.3432 [ 40] + X_POSIX 82 read 20 2064 632 724.3432 724.3433 [ 40] + X_POSIX 82 read 21 136 544 724.3433 724.3434 [ 40] + X_POSIX 82 read 22 680 512 724.3434 724.3434 [ 40] + X_POSIX 82 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 82 read 24 0 8 726.4574 726.5986 [ 40] + X_POSIX 82 read 25 0 9 726.6020 726.6020 [ 40] + X_POSIX 82 read 26 9 87 726.6023 726.6023 [ 40] + X_POSIX 82 read 27 96 512 726.6083 726.6083 [ 40] + X_POSIX 82 read 28 2064 632 726.6108 726.6108 [ 40] + X_POSIX 82 read 29 136 544 726.6127 726.6127 [ 40] + X_POSIX 82 read 30 680 512 726.6137 726.6137 [ 40] + X_POSIX 82 read 31 1504 328 726.6392 726.6393 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 82, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 82 read 0 0 8 1497.1119 1497.2262 [209] + X_POSIX 82 read 1 0 9 1497.2265 1497.2266 [209] + X_POSIX 82 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 82 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 82 read 4 2064 632 1497.2268 1497.2268 [209] + X_POSIX 82 read 5 136 544 1497.2268 1497.2269 [209] + X_POSIX 82 read 6 680 512 1497.2269 1497.2269 [209] + X_POSIX 82 read 7 1504 328 1497.2488 1497.2491 [209] + X_POSIX 82 read 8 0 8 1497.9396 1497.9574 [209] + X_POSIX 82 read 9 0 9 1497.9607 1497.9608 [209] + X_POSIX 82 read 10 9 87 1497.9611 1497.9611 [209] + X_POSIX 82 read 11 96 512 1497.9670 1497.9670 [209] + X_POSIX 82 read 12 2064 632 1497.9695 1497.9695 [209] + X_POSIX 82 read 13 136 544 1497.9713 1497.9713 [209] + X_POSIX 82 read 14 680 512 1497.9722 1497.9723 [209] + X_POSIX 82 read 15 1504 328 1497.9966 1497.9966 [209] + X_POSIX 82 read 16 0 8 1498.6920 1498.7784 [209] + X_POSIX 82 read 17 0 9 1498.7785 1498.7785 [209] + X_POSIX 82 read 18 9 87 1498.7785 1498.7785 [209] + X_POSIX 82 read 19 96 512 1498.7785 1498.7785 [209] + X_POSIX 82 read 20 2064 632 1498.7785 1498.7786 [209] + X_POSIX 82 read 21 136 544 1498.7786 1498.7786 [209] + X_POSIX 82 read 22 680 512 1498.7786 1498.7786 [209] + X_POSIX 82 read 23 1504 328 1498.8017 1498.8021 [209] + X_POSIX 82 read 24 0 8 1500.5674 1500.6813 [209] + X_POSIX 82 read 25 0 9 1500.6826 1500.6826 [209] + X_POSIX 82 read 26 9 87 1500.6829 1500.6830 [209] + X_POSIX 82 read 27 96 512 1500.6848 1500.6849 [209] + X_POSIX 82 read 28 2064 632 1500.6861 1500.6861 [209] + X_POSIX 82 read 29 136 544 1500.6864 1500.6865 [209] + X_POSIX 82 read 30 680 512 1500.6867 1500.6868 [209] + X_POSIX 82 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 83, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 83 read 0 0 342 1.4761 1.4797 [ 33] + X_POSIX 83 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 83, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 83 read 0 0 8 722.3863 722.4805 [ 40] + X_POSIX 83 read 1 0 9 722.4830 722.4831 [ 40] + X_POSIX 83 read 2 9 87 722.4832 722.4834 [ 40] + X_POSIX 83 read 3 96 512 722.4922 722.4924 [ 40] + X_POSIX 83 read 4 2064 632 722.4949 722.4949 [ 40] + X_POSIX 83 read 5 136 544 722.4967 722.4968 [ 40] + X_POSIX 83 read 6 680 512 722.4977 722.4977 [ 40] + X_POSIX 83 read 7 1504 328 722.5390 722.5390 [ 40] + X_POSIX 83 read 8 0 8 723.3566 723.3734 [ 40] + X_POSIX 83 read 9 0 9 723.3763 723.3763 [ 40] + X_POSIX 83 read 10 9 87 723.3766 723.3767 [ 40] + X_POSIX 83 read 11 96 512 723.3825 723.3826 [ 40] + X_POSIX 83 read 12 2064 632 723.3850 723.3850 [ 40] + X_POSIX 83 read 13 136 544 723.3868 723.3868 [ 40] + X_POSIX 83 read 14 680 512 723.3878 723.3878 [ 40] + X_POSIX 83 read 15 1504 328 723.4355 723.4355 [ 40] + X_POSIX 83 read 16 0 8 724.2517 724.3431 [ 40] + X_POSIX 83 read 17 0 9 724.3431 724.3432 [ 40] + X_POSIX 83 read 18 9 87 724.3432 724.3433 [ 40] + X_POSIX 83 read 19 96 512 724.3433 724.3434 [ 40] + X_POSIX 83 read 20 2064 632 724.3434 724.3434 [ 40] + X_POSIX 83 read 21 136 544 724.3434 724.3435 [ 40] + X_POSIX 83 read 22 680 512 724.3435 724.3435 [ 40] + X_POSIX 83 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 83 read 24 0 8 726.4574 726.5984 [ 40] + X_POSIX 83 read 25 0 9 726.6017 726.6018 [ 40] + X_POSIX 83 read 26 9 87 726.6021 726.6021 [ 40] + X_POSIX 83 read 27 96 512 726.6080 726.6080 [ 40] + X_POSIX 83 read 28 2064 632 726.6105 726.6105 [ 40] + X_POSIX 83 read 29 136 544 726.6124 726.6124 [ 40] + X_POSIX 83 read 30 680 512 726.6133 726.6134 [ 40] + X_POSIX 83 read 31 1504 328 726.6390 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 83, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 83 read 0 0 8 1497.1119 1497.2236 [209] + X_POSIX 83 read 1 0 9 1497.2237 1497.2237 [209] + X_POSIX 83 read 2 9 87 1497.2237 1497.2237 [209] + X_POSIX 83 read 3 96 512 1497.2237 1497.2237 [209] + X_POSIX 83 read 4 2064 632 1497.2237 1497.2238 [209] + X_POSIX 83 read 5 136 544 1497.2238 1497.2238 [209] + X_POSIX 83 read 6 680 512 1497.2238 1497.2238 [209] + X_POSIX 83 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 83 read 8 0 8 1497.9396 1497.9574 [209] + X_POSIX 83 read 9 0 9 1497.9608 1497.9608 [209] + X_POSIX 83 read 10 9 87 1497.9611 1497.9612 [209] + X_POSIX 83 read 11 96 512 1497.9670 1497.9671 [209] + X_POSIX 83 read 12 2064 632 1497.9695 1497.9696 [209] + X_POSIX 83 read 13 136 544 1497.9714 1497.9714 [209] + X_POSIX 83 read 14 680 512 1497.9723 1497.9723 [209] + X_POSIX 83 read 15 1504 328 1497.9965 1497.9966 [209] + X_POSIX 83 read 16 0 8 1498.6920 1498.7796 [209] + X_POSIX 83 read 17 0 9 1498.7796 1498.7796 [209] + X_POSIX 83 read 18 9 87 1498.7796 1498.7796 [209] + X_POSIX 83 read 19 96 512 1498.7796 1498.7797 [209] + X_POSIX 83 read 20 2064 632 1498.7797 1498.7797 [209] + X_POSIX 83 read 21 136 544 1498.7797 1498.7797 [209] + X_POSIX 83 read 22 680 512 1498.7797 1498.7798 [209] + X_POSIX 83 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 83 read 24 0 8 1500.5674 1500.6814 [209] + X_POSIX 83 read 25 0 9 1500.6828 1500.6828 [209] + X_POSIX 83 read 26 9 87 1500.6831 1500.6832 [209] + X_POSIX 83 read 27 96 512 1500.6851 1500.6851 [209] + X_POSIX 83 read 28 2064 632 1500.6863 1500.6864 [209] + X_POSIX 83 read 29 136 544 1500.6866 1500.6867 [209] + X_POSIX 83 read 30 680 512 1500.6869 1500.6870 [209] + X_POSIX 83 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 84, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 84 read 0 0 342 1.4760 1.4794 [ 33] + X_POSIX 84 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 84, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 84 read 0 0 8 722.3863 722.4814 [ 40] + X_POSIX 84 read 1 0 9 722.4830 722.4832 [ 40] + X_POSIX 84 read 2 9 87 722.4833 722.4835 [ 40] + X_POSIX 84 read 3 96 512 722.4921 722.4922 [ 40] + X_POSIX 84 read 4 2064 632 722.4946 722.4946 [ 40] + X_POSIX 84 read 5 136 544 722.4965 722.4965 [ 40] + X_POSIX 84 read 6 680 512 722.4974 722.4974 [ 40] + X_POSIX 84 read 7 1504 328 722.5394 722.5395 [ 40] + X_POSIX 84 read 8 0 8 723.3566 723.3737 [ 40] + X_POSIX 84 read 9 0 9 723.3770 723.3771 [ 40] + X_POSIX 84 read 10 9 87 723.3774 723.3774 [ 40] + X_POSIX 84 read 11 96 512 723.3833 723.3833 [ 40] + X_POSIX 84 read 12 2064 632 723.3858 723.3858 [ 40] + X_POSIX 84 read 13 136 544 723.3876 723.3876 [ 40] + X_POSIX 84 read 14 680 512 723.3886 723.3886 [ 40] + X_POSIX 84 read 15 1504 328 723.4354 723.4355 [ 40] + X_POSIX 84 read 16 0 8 724.2516 724.3488 [ 40] + X_POSIX 84 read 17 0 9 724.3489 724.3489 [ 40] + X_POSIX 84 read 18 9 87 724.3489 724.3489 [ 40] + X_POSIX 84 read 19 96 512 724.3489 724.3489 [ 40] + X_POSIX 84 read 20 2064 632 724.3489 724.3490 [ 40] + X_POSIX 84 read 21 136 544 724.3490 724.3490 [ 40] + X_POSIX 84 read 22 680 512 724.3490 724.3490 [ 40] + X_POSIX 84 read 23 1504 328 724.3541 724.3543 [ 40] + X_POSIX 84 read 24 0 8 726.4573 726.5987 [ 40] + X_POSIX 84 read 25 0 9 726.6021 726.6021 [ 40] + X_POSIX 84 read 26 9 87 726.6024 726.6024 [ 40] + X_POSIX 84 read 27 96 512 726.6083 726.6084 [ 40] + X_POSIX 84 read 28 2064 632 726.6108 726.6109 [ 40] + X_POSIX 84 read 29 136 544 726.6127 726.6128 [ 40] + X_POSIX 84 read 30 680 512 726.6137 726.6137 [ 40] + X_POSIX 84 read 31 1504 328 726.6394 726.6394 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 84, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 84 read 0 0 8 1497.1118 1497.2262 [209] + X_POSIX 84 read 1 0 9 1497.2264 1497.2264 [209] + X_POSIX 84 read 2 9 87 1497.2264 1497.2265 [209] + X_POSIX 84 read 3 96 512 1497.2265 1497.2266 [209] + X_POSIX 84 read 4 2064 632 1497.2266 1497.2267 [209] + X_POSIX 84 read 5 136 544 1497.2267 1497.2268 [209] + X_POSIX 84 read 6 680 512 1497.2268 1497.2268 [209] + X_POSIX 84 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 84 read 8 0 8 1497.9396 1497.9575 [209] + X_POSIX 84 read 9 0 9 1497.9609 1497.9610 [209] + X_POSIX 84 read 10 9 87 1497.9613 1497.9613 [209] + X_POSIX 84 read 11 96 512 1497.9672 1497.9672 [209] + X_POSIX 84 read 12 2064 632 1497.9697 1497.9698 [209] + X_POSIX 84 read 13 136 544 1497.9716 1497.9716 [209] + X_POSIX 84 read 14 680 512 1497.9725 1497.9725 [209] + X_POSIX 84 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 84 read 16 0 8 1498.6920 1498.7766 [209] + X_POSIX 84 read 17 0 9 1498.7766 1498.7767 [209] + X_POSIX 84 read 18 9 87 1498.7767 1498.7768 [209] + X_POSIX 84 read 19 96 512 1498.7768 1498.7768 [209] + X_POSIX 84 read 20 2064 632 1498.7768 1498.7768 [209] + X_POSIX 84 read 21 136 544 1498.7768 1498.7769 [209] + X_POSIX 84 read 22 680 512 1498.7769 1498.7769 [209] + X_POSIX 84 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 84 read 24 0 8 1500.5674 1500.6819 [209] + X_POSIX 84 read 25 0 9 1500.6835 1500.6835 [209] + X_POSIX 84 read 26 9 87 1500.6838 1500.6839 [209] + X_POSIX 84 read 27 96 512 1500.6858 1500.6858 [209] + X_POSIX 84 read 28 2064 632 1500.6869 1500.6870 [209] + X_POSIX 84 read 29 136 544 1500.6872 1500.6873 [209] + X_POSIX 84 read 30 680 512 1500.6876 1500.6876 [209] + X_POSIX 84 read 31 1504 328 1500.7126 1500.7127 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 85, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 85 read 0 0 342 1.4762 1.4796 [ 33] + X_POSIX 85 read 1 342 0 1.4969 1.4972 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 85, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 85 read 0 0 8 722.3864 722.4784 [ 40] + X_POSIX 85 read 1 0 9 722.4832 722.4834 [ 40] + X_POSIX 85 read 2 9 87 722.4835 722.4837 [ 40] + X_POSIX 85 read 3 96 512 722.4921 722.4922 [ 40] + X_POSIX 85 read 4 2064 632 722.4944 722.4944 [ 40] + X_POSIX 85 read 5 136 544 722.4962 722.4963 [ 40] + X_POSIX 85 read 6 680 512 722.4975 722.4975 [ 40] + X_POSIX 85 read 7 1504 328 722.5392 722.5392 [ 40] + X_POSIX 85 read 8 0 8 723.3567 723.3736 [ 40] + X_POSIX 85 read 9 0 9 723.3765 723.3765 [ 40] + X_POSIX 85 read 10 9 87 723.3768 723.3769 [ 40] + X_POSIX 85 read 11 96 512 723.3827 723.3827 [ 40] + X_POSIX 85 read 12 2064 632 723.3852 723.3852 [ 40] + X_POSIX 85 read 13 136 544 723.3870 723.3870 [ 40] + X_POSIX 85 read 14 680 512 723.3879 723.3880 [ 40] + X_POSIX 85 read 15 1504 328 723.4353 723.4353 [ 40] + X_POSIX 85 read 16 0 8 724.2518 724.3460 [ 40] + X_POSIX 85 read 17 0 9 724.3460 724.3460 [ 40] + X_POSIX 85 read 18 9 87 724.3460 724.3461 [ 40] + X_POSIX 85 read 19 96 512 724.3461 724.3461 [ 40] + X_POSIX 85 read 20 2064 632 724.3461 724.3461 [ 40] + X_POSIX 85 read 21 136 544 724.3461 724.3462 [ 40] + X_POSIX 85 read 22 680 512 724.3462 724.3462 [ 40] + X_POSIX 85 read 23 1504 328 724.3542 724.3545 [ 40] + X_POSIX 85 read 24 0 8 726.4575 726.5987 [ 40] + X_POSIX 85 read 25 0 9 726.6021 726.6022 [ 40] + X_POSIX 85 read 26 9 87 726.6024 726.6025 [ 40] + X_POSIX 85 read 27 96 512 726.6084 726.6084 [ 40] + X_POSIX 85 read 28 2064 632 726.6108 726.6109 [ 40] + X_POSIX 85 read 29 136 544 726.6127 726.6128 [ 40] + X_POSIX 85 read 30 680 512 726.6137 726.6137 [ 40] + X_POSIX 85 read 31 1504 328 726.6398 726.6398 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 85, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 85 read 0 0 8 1497.1120 1497.2264 [209] + X_POSIX 85 read 1 0 9 1497.2266 1497.2266 [209] + X_POSIX 85 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 85 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 85 read 4 2064 632 1497.2268 1497.2269 [209] + X_POSIX 85 read 5 136 544 1497.2269 1497.2270 [209] + X_POSIX 85 read 6 680 512 1497.2270 1497.2270 [209] + X_POSIX 85 read 7 1504 328 1497.2489 1497.2493 [209] + X_POSIX 85 read 8 0 8 1497.9397 1497.9574 [209] + X_POSIX 85 read 9 0 9 1497.9607 1497.9608 [209] + X_POSIX 85 read 10 9 87 1497.9611 1497.9611 [209] + X_POSIX 85 read 11 96 512 1497.9670 1497.9670 [209] + X_POSIX 85 read 12 2064 632 1497.9695 1497.9695 [209] + X_POSIX 85 read 13 136 544 1497.9713 1497.9713 [209] + X_POSIX 85 read 14 680 512 1497.9722 1497.9723 [209] + X_POSIX 85 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 85 read 16 0 8 1498.6921 1498.7767 [209] + X_POSIX 85 read 17 0 9 1498.7767 1498.7767 [209] + X_POSIX 85 read 18 9 87 1498.7767 1498.7768 [209] + X_POSIX 85 read 19 96 512 1498.7768 1498.7768 [209] + X_POSIX 85 read 20 2064 632 1498.7768 1498.7768 [209] + X_POSIX 85 read 21 136 544 1498.7768 1498.7769 [209] + X_POSIX 85 read 22 680 512 1498.7769 1498.7769 [209] + X_POSIX 85 read 23 1504 328 1498.8019 1498.8022 [209] + X_POSIX 85 read 24 0 8 1500.5676 1500.6819 [209] + X_POSIX 85 read 25 0 9 1500.6834 1500.6835 [209] + X_POSIX 85 read 26 9 87 1500.6838 1500.6838 [209] + X_POSIX 85 read 27 96 512 1500.6860 1500.6860 [209] + X_POSIX 85 read 28 2064 632 1500.6871 1500.6872 [209] + X_POSIX 85 read 29 136 544 1500.6874 1500.6875 [209] + X_POSIX 85 read 30 680 512 1500.6877 1500.6877 [209] + X_POSIX 85 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 86, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 86 read 0 0 342 1.4761 1.4794 [ 33] + X_POSIX 86 read 1 342 0 1.4967 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 86, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 86 read 0 0 8 722.3863 722.4804 [ 40] + X_POSIX 86 read 1 0 9 722.4830 722.4831 [ 40] + X_POSIX 86 read 2 9 87 722.4833 722.4834 [ 40] + X_POSIX 86 read 3 96 512 722.4920 722.4921 [ 40] + X_POSIX 86 read 4 2064 632 722.4945 722.4946 [ 40] + X_POSIX 86 read 5 136 544 722.4964 722.4964 [ 40] + X_POSIX 86 read 6 680 512 722.4973 722.4973 [ 40] + X_POSIX 86 read 7 1504 328 722.5390 722.5390 [ 40] + X_POSIX 86 read 8 0 8 723.3566 723.3739 [ 40] + X_POSIX 86 read 9 0 9 723.3773 723.3773 [ 40] + X_POSIX 86 read 10 9 87 723.3776 723.3777 [ 40] + X_POSIX 86 read 11 96 512 723.3835 723.3836 [ 40] + X_POSIX 86 read 12 2064 632 723.3861 723.3861 [ 40] + X_POSIX 86 read 13 136 544 723.3879 723.3879 [ 40] + X_POSIX 86 read 14 680 512 723.3889 723.3889 [ 40] + X_POSIX 86 read 15 1504 328 723.4351 723.4351 [ 40] + X_POSIX 86 read 16 0 8 724.2517 724.3429 [ 40] + X_POSIX 86 read 17 0 9 724.3429 724.3430 [ 40] + X_POSIX 86 read 18 9 87 724.3430 724.3430 [ 40] + X_POSIX 86 read 19 96 512 724.3430 724.3431 [ 40] + X_POSIX 86 read 20 2064 632 724.3431 724.3431 [ 40] + X_POSIX 86 read 21 136 544 724.3432 724.3432 [ 40] + X_POSIX 86 read 22 680 512 724.3432 724.3433 [ 40] + X_POSIX 86 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 86 read 24 0 8 726.4574 726.5980 [ 40] + X_POSIX 86 read 25 0 9 726.5983 726.5983 [ 40] + X_POSIX 86 read 26 9 87 726.5985 726.5985 [ 40] + X_POSIX 86 read 27 96 512 726.6044 726.6045 [ 40] + X_POSIX 86 read 28 2064 632 726.6070 726.6070 [ 40] + X_POSIX 86 read 29 136 544 726.6089 726.6089 [ 40] + X_POSIX 86 read 30 680 512 726.6098 726.6099 [ 40] + X_POSIX 86 read 31 1504 328 726.6392 726.6392 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 86, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 86 read 0 0 8 1497.1117 1497.2299 [209] + X_POSIX 86 read 1 0 9 1497.2300 1497.2300 [209] + X_POSIX 86 read 2 9 87 1497.2300 1497.2300 [209] + X_POSIX 86 read 3 96 512 1497.2300 1497.2301 [209] + X_POSIX 86 read 4 2064 632 1497.2301 1497.2301 [209] + X_POSIX 86 read 5 136 544 1497.2301 1497.2301 [209] + X_POSIX 86 read 6 680 512 1497.2301 1497.2302 [209] + X_POSIX 86 read 7 1504 328 1497.2488 1497.2491 [209] + X_POSIX 86 read 8 0 8 1497.9396 1497.9576 [209] + X_POSIX 86 read 9 0 9 1497.9610 1497.9611 [209] + X_POSIX 86 read 10 9 87 1497.9614 1497.9614 [209] + X_POSIX 86 read 11 96 512 1497.9673 1497.9673 [209] + X_POSIX 86 read 12 2064 632 1497.9697 1497.9698 [209] + X_POSIX 86 read 13 136 544 1497.9716 1497.9716 [209] + X_POSIX 86 read 14 680 512 1497.9725 1497.9726 [209] + X_POSIX 86 read 15 1504 328 1497.9962 1497.9962 [209] + X_POSIX 86 read 16 0 8 1498.6920 1498.7780 [209] + X_POSIX 86 read 17 0 9 1498.7780 1498.7781 [209] + X_POSIX 86 read 18 9 87 1498.7781 1498.7781 [209] + X_POSIX 86 read 19 96 512 1498.7781 1498.7781 [209] + X_POSIX 86 read 20 2064 632 1498.7781 1498.7782 [209] + X_POSIX 86 read 21 136 544 1498.7782 1498.7782 [209] + X_POSIX 86 read 22 680 512 1498.7782 1498.7782 [209] + X_POSIX 86 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 86 read 24 0 8 1500.5674 1500.6819 [209] + X_POSIX 86 read 25 0 9 1500.6835 1500.6835 [209] + X_POSIX 86 read 26 9 87 1500.6838 1500.6839 [209] + X_POSIX 86 read 27 96 512 1500.6858 1500.6858 [209] + X_POSIX 86 read 28 2064 632 1500.6869 1500.6870 [209] + X_POSIX 86 read 29 136 544 1500.6872 1500.6873 [209] + X_POSIX 86 read 30 680 512 1500.6876 1500.6876 [209] + X_POSIX 86 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 87, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 87 read 0 0 342 1.4761 1.4794 [ 33] + X_POSIX 87 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 87, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 87 read 0 0 8 722.3864 722.4822 [ 40] + X_POSIX 87 read 1 0 9 722.4828 722.4829 [ 40] + X_POSIX 87 read 2 9 87 722.4832 722.4833 [ 40] + X_POSIX 87 read 3 96 512 722.4921 722.4922 [ 40] + X_POSIX 87 read 4 2064 632 722.4948 722.4949 [ 40] + X_POSIX 87 read 5 136 544 722.4967 722.4967 [ 40] + X_POSIX 87 read 6 680 512 722.4976 722.4976 [ 40] + X_POSIX 87 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 87 read 8 0 8 723.3567 723.3735 [ 40] + X_POSIX 87 read 9 0 9 723.3762 723.3762 [ 40] + X_POSIX 87 read 10 9 87 723.3765 723.3765 [ 40] + X_POSIX 87 read 11 96 512 723.3824 723.3824 [ 40] + X_POSIX 87 read 12 2064 632 723.3848 723.3849 [ 40] + X_POSIX 87 read 13 136 544 723.3867 723.3867 [ 40] + X_POSIX 87 read 14 680 512 723.3876 723.3877 [ 40] + X_POSIX 87 read 15 1504 328 723.4356 723.4357 [ 40] + X_POSIX 87 read 16 0 8 724.2517 724.3495 [ 40] + X_POSIX 87 read 17 0 9 724.3495 724.3495 [ 40] + X_POSIX 87 read 18 9 87 724.3495 724.3496 [ 40] + X_POSIX 87 read 19 96 512 724.3496 724.3496 [ 40] + X_POSIX 87 read 20 2064 632 724.3496 724.3496 [ 40] + X_POSIX 87 read 21 136 544 724.3496 724.3496 [ 40] + X_POSIX 87 read 22 680 512 724.3497 724.3497 [ 40] + X_POSIX 87 read 23 1504 328 724.3541 724.3545 [ 40] + X_POSIX 87 read 24 0 8 726.4575 726.5982 [ 40] + X_POSIX 87 read 25 0 9 726.6007 726.6008 [ 40] + X_POSIX 87 read 26 9 87 726.6011 726.6011 [ 40] + X_POSIX 87 read 27 96 512 726.6070 726.6070 [ 40] + X_POSIX 87 read 28 2064 632 726.6094 726.6095 [ 40] + X_POSIX 87 read 29 136 544 726.6113 726.6113 [ 40] + X_POSIX 87 read 30 680 512 726.6123 726.6123 [ 40] + X_POSIX 87 read 31 1504 328 726.6392 726.6392 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 87, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 87 read 0 0 8 1497.1120 1497.2263 [209] + X_POSIX 87 read 1 0 9 1497.2266 1497.2266 [209] + X_POSIX 87 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 87 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 87 read 4 2064 632 1497.2268 1497.2269 [209] + X_POSIX 87 read 5 136 544 1497.2269 1497.2269 [209] + X_POSIX 87 read 6 680 512 1497.2269 1497.2270 [209] + X_POSIX 87 read 7 1504 328 1497.2489 1497.2493 [209] + X_POSIX 87 read 8 0 8 1497.9395 1497.9570 [209] + X_POSIX 87 read 9 0 9 1497.9593 1497.9594 [209] + X_POSIX 87 read 10 9 87 1497.9597 1497.9597 [209] + X_POSIX 87 read 11 96 512 1497.9656 1497.9656 [209] + X_POSIX 87 read 12 2064 632 1497.9680 1497.9681 [209] + X_POSIX 87 read 13 136 544 1497.9699 1497.9699 [209] + X_POSIX 87 read 14 680 512 1497.9709 1497.9709 [209] + X_POSIX 87 read 15 1504 328 1497.9969 1497.9970 [209] + X_POSIX 87 read 16 0 8 1498.6920 1498.7811 [209] + X_POSIX 87 read 17 0 9 1498.7812 1498.7812 [209] + X_POSIX 87 read 18 9 87 1498.7812 1498.7812 [209] + X_POSIX 87 read 19 96 512 1498.7812 1498.7813 [209] + X_POSIX 87 read 20 2064 632 1498.7813 1498.7813 [209] + X_POSIX 87 read 21 136 544 1498.7813 1498.7813 [209] + X_POSIX 87 read 22 680 512 1498.7813 1498.7813 [209] + X_POSIX 87 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 87 read 24 0 8 1500.5675 1500.6817 [209] + X_POSIX 87 read 25 0 9 1500.6832 1500.6832 [209] + X_POSIX 87 read 26 9 87 1500.6835 1500.6835 [209] + X_POSIX 87 read 27 96 512 1500.6854 1500.6855 [209] + X_POSIX 87 read 28 2064 632 1500.6867 1500.6867 [209] + X_POSIX 87 read 29 136 544 1500.6870 1500.6870 [209] + X_POSIX 87 read 30 680 512 1500.6873 1500.6873 [209] + X_POSIX 87 read 31 1504 328 1500.7123 1500.7124 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 88, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 88 read 0 0 342 1.4761 1.4799 [ 33] + X_POSIX 88 read 1 342 0 1.4967 1.4968 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 88, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 88 read 0 0 8 722.3861 722.4807 [ 40] + X_POSIX 88 read 1 0 9 722.4830 722.4831 [ 40] + X_POSIX 88 read 2 9 87 722.4833 722.4835 [ 40] + X_POSIX 88 read 3 96 512 722.4921 722.4923 [ 40] + X_POSIX 88 read 4 2064 632 722.4947 722.4947 [ 40] + X_POSIX 88 read 5 136 544 722.4966 722.4966 [ 40] + X_POSIX 88 read 6 680 512 722.4975 722.4975 [ 40] + X_POSIX 88 read 7 1504 328 722.5390 722.5391 [ 40] + X_POSIX 88 read 8 0 8 723.3564 723.3740 [ 40] + X_POSIX 88 read 9 0 9 723.3774 723.3774 [ 40] + X_POSIX 88 read 10 9 87 723.3777 723.3778 [ 40] + X_POSIX 88 read 11 96 512 723.3837 723.3837 [ 40] + X_POSIX 88 read 12 2064 632 723.3862 723.3862 [ 40] + X_POSIX 88 read 13 136 544 723.3880 723.3881 [ 40] + X_POSIX 88 read 14 680 512 723.3890 723.3890 [ 40] + X_POSIX 88 read 15 1504 328 723.4353 723.4353 [ 40] + X_POSIX 88 read 16 0 8 724.2516 724.3443 [ 40] + X_POSIX 88 read 17 0 9 724.3443 724.3443 [ 40] + X_POSIX 88 read 18 9 87 724.3443 724.3443 [ 40] + X_POSIX 88 read 19 96 512 724.3443 724.3443 [ 40] + X_POSIX 88 read 20 2064 632 724.3443 724.3444 [ 40] + X_POSIX 88 read 21 136 544 724.3444 724.3444 [ 40] + X_POSIX 88 read 22 680 512 724.3444 724.3444 [ 40] + X_POSIX 88 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 88 read 24 0 8 726.4573 726.5984 [ 40] + X_POSIX 88 read 25 0 9 726.6017 726.6017 [ 40] + X_POSIX 88 read 26 9 87 726.6020 726.6020 [ 40] + X_POSIX 88 read 27 96 512 726.6080 726.6080 [ 40] + X_POSIX 88 read 28 2064 632 726.6104 726.6105 [ 40] + X_POSIX 88 read 29 136 544 726.6123 726.6123 [ 40] + X_POSIX 88 read 30 680 512 726.6133 726.6133 [ 40] + X_POSIX 88 read 31 1504 328 726.6392 726.6392 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 88, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 88 read 0 0 8 1497.1119 1497.2232 [209] + X_POSIX 88 read 1 0 9 1497.2232 1497.2233 [209] + X_POSIX 88 read 2 9 87 1497.2233 1497.2233 [209] + X_POSIX 88 read 3 96 512 1497.2233 1497.2233 [209] + X_POSIX 88 read 4 2064 632 1497.2234 1497.2234 [209] + X_POSIX 88 read 5 136 544 1497.2234 1497.2234 [209] + X_POSIX 88 read 6 680 512 1497.2234 1497.2234 [209] + X_POSIX 88 read 7 1504 328 1497.2488 1497.2492 [209] + X_POSIX 88 read 8 0 8 1497.9395 1497.9568 [209] + X_POSIX 88 read 9 0 9 1497.9575 1497.9575 [209] + X_POSIX 88 read 10 9 87 1497.9578 1497.9578 [209] + X_POSIX 88 read 11 96 512 1497.9637 1497.9638 [209] + X_POSIX 88 read 12 2064 632 1497.9663 1497.9663 [209] + X_POSIX 88 read 13 136 544 1497.9682 1497.9682 [209] + X_POSIX 88 read 14 680 512 1497.9692 1497.9692 [209] + X_POSIX 88 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 88 read 16 0 8 1498.6920 1498.7805 [209] + X_POSIX 88 read 17 0 9 1498.7805 1498.7805 [209] + X_POSIX 88 read 18 9 87 1498.7805 1498.7806 [209] + X_POSIX 88 read 19 96 512 1498.7806 1498.7806 [209] + X_POSIX 88 read 20 2064 632 1498.7806 1498.7806 [209] + X_POSIX 88 read 21 136 544 1498.7806 1498.7807 [209] + X_POSIX 88 read 22 680 512 1498.7807 1498.7807 [209] + X_POSIX 88 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 88 read 24 0 8 1500.5674 1500.6815 [209] + X_POSIX 88 read 25 0 9 1500.6829 1500.6829 [209] + X_POSIX 88 read 26 9 87 1500.6832 1500.6832 [209] + X_POSIX 88 read 27 96 512 1500.6851 1500.6851 [209] + X_POSIX 88 read 28 2064 632 1500.6864 1500.6864 [209] + X_POSIX 88 read 29 136 544 1500.6867 1500.6867 [209] + X_POSIX 88 read 30 680 512 1500.6870 1500.6870 [209] + X_POSIX 88 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 89, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 89 read 0 0 342 1.4761 1.4797 [ 33] + X_POSIX 89 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 89, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 89 read 0 0 8 722.3863 722.4804 [ 40] + X_POSIX 89 read 1 0 9 722.4831 722.4832 [ 40] + X_POSIX 89 read 2 9 87 722.4834 722.4835 [ 40] + X_POSIX 89 read 3 96 512 722.4922 722.4923 [ 40] + X_POSIX 89 read 4 2064 632 722.4948 722.4948 [ 40] + X_POSIX 89 read 5 136 544 722.4967 722.4967 [ 40] + X_POSIX 89 read 6 680 512 722.4976 722.4976 [ 40] + X_POSIX 89 read 7 1504 328 722.5393 722.5393 [ 40] + X_POSIX 89 read 8 0 8 723.3557 723.3733 [ 40] + X_POSIX 89 read 9 0 9 723.3755 723.3755 [ 40] + X_POSIX 89 read 10 9 87 723.3759 723.3759 [ 40] + X_POSIX 89 read 11 96 512 723.3817 723.3818 [ 40] + X_POSIX 89 read 12 2064 632 723.3842 723.3842 [ 40] + X_POSIX 89 read 13 136 544 723.3861 723.3861 [ 40] + X_POSIX 89 read 14 680 512 723.3870 723.3870 [ 40] + X_POSIX 89 read 15 1504 328 723.4352 723.4353 [ 40] + X_POSIX 89 read 16 0 8 724.2517 724.3431 [ 40] + X_POSIX 89 read 17 0 9 724.3431 724.3432 [ 40] + X_POSIX 89 read 18 9 87 724.3432 724.3432 [ 40] + X_POSIX 89 read 19 96 512 724.3432 724.3433 [ 40] + X_POSIX 89 read 20 2064 632 724.3433 724.3434 [ 40] + X_POSIX 89 read 21 136 544 724.3434 724.3434 [ 40] + X_POSIX 89 read 22 680 512 724.3435 724.3435 [ 40] + X_POSIX 89 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 89 read 24 0 8 726.4573 726.5988 [ 40] + X_POSIX 89 read 25 0 9 726.6021 726.6022 [ 40] + X_POSIX 89 read 26 9 87 726.6025 726.6025 [ 40] + X_POSIX 89 read 27 96 512 726.6084 726.6084 [ 40] + X_POSIX 89 read 28 2064 632 726.6109 726.6109 [ 40] + X_POSIX 89 read 29 136 544 726.6128 726.6128 [ 40] + X_POSIX 89 read 30 680 512 726.6137 726.6138 [ 40] + X_POSIX 89 read 31 1504 328 726.6391 726.6391 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 89, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 89 read 0 0 8 1497.1119 1497.2263 [209] + X_POSIX 89 read 1 0 9 1497.2265 1497.2266 [209] + X_POSIX 89 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 89 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 89 read 4 2064 632 1497.2268 1497.2269 [209] + X_POSIX 89 read 5 136 544 1497.2269 1497.2269 [209] + X_POSIX 89 read 6 680 512 1497.2269 1497.2269 [209] + X_POSIX 89 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 89 read 8 0 8 1497.9396 1497.9571 [209] + X_POSIX 89 read 9 0 9 1497.9602 1497.9603 [209] + X_POSIX 89 read 10 9 87 1497.9606 1497.9606 [209] + X_POSIX 89 read 11 96 512 1497.9665 1497.9665 [209] + X_POSIX 89 read 12 2064 632 1497.9690 1497.9690 [209] + X_POSIX 89 read 13 136 544 1497.9708 1497.9708 [209] + X_POSIX 89 read 14 680 512 1497.9717 1497.9717 [209] + X_POSIX 89 read 15 1504 328 1497.9962 1497.9962 [209] + X_POSIX 89 read 16 0 8 1498.6920 1498.7766 [209] + X_POSIX 89 read 17 0 9 1498.7766 1498.7766 [209] + X_POSIX 89 read 18 9 87 1498.7766 1498.7766 [209] + X_POSIX 89 read 19 96 512 1498.7767 1498.7767 [209] + X_POSIX 89 read 20 2064 632 1498.7767 1498.7767 [209] + X_POSIX 89 read 21 136 544 1498.7767 1498.7767 [209] + X_POSIX 89 read 22 680 512 1498.7767 1498.7768 [209] + X_POSIX 89 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 89 read 24 0 8 1500.5675 1500.6817 [209] + X_POSIX 89 read 25 0 9 1500.6831 1500.6832 [209] + X_POSIX 89 read 26 9 87 1500.6835 1500.6835 [209] + X_POSIX 89 read 27 96 512 1500.6854 1500.6854 [209] + X_POSIX 89 read 28 2064 632 1500.6866 1500.6867 [209] + X_POSIX 89 read 29 136 544 1500.6869 1500.6870 [209] + X_POSIX 89 read 30 680 512 1500.6872 1500.6873 [209] + X_POSIX 89 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 90, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 90 read 0 0 342 1.4761 1.4799 [ 33] + X_POSIX 90 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 90, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 90 read 0 0 8 722.3864 722.4783 [ 40] + X_POSIX 90 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 90 read 2 9 87 722.4835 722.4837 [ 40] + X_POSIX 90 read 3 96 512 722.4919 722.4919 [ 40] + X_POSIX 90 read 4 2064 632 722.4942 722.4943 [ 40] + X_POSIX 90 read 5 136 544 722.4961 722.4961 [ 40] + X_POSIX 90 read 6 680 512 722.4970 722.4970 [ 40] + X_POSIX 90 read 7 1504 328 722.5394 722.5394 [ 40] + X_POSIX 90 read 8 0 8 723.3558 723.3741 [ 40] + X_POSIX 90 read 9 0 9 723.3775 723.3776 [ 40] + X_POSIX 90 read 10 9 87 723.3779 723.3779 [ 40] + X_POSIX 90 read 11 96 512 723.3838 723.3838 [ 40] + X_POSIX 90 read 12 2064 632 723.3863 723.3863 [ 40] + X_POSIX 90 read 13 136 544 723.3882 723.3882 [ 40] + X_POSIX 90 read 14 680 512 723.3891 723.3892 [ 40] + X_POSIX 90 read 15 1504 328 723.4353 723.4353 [ 40] + X_POSIX 90 read 16 0 8 724.2517 724.3430 [ 40] + X_POSIX 90 read 17 0 9 724.3430 724.3431 [ 40] + X_POSIX 90 read 18 9 87 724.3431 724.3432 [ 40] + X_POSIX 90 read 19 96 512 724.3432 724.3432 [ 40] + X_POSIX 90 read 20 2064 632 724.3432 724.3433 [ 40] + X_POSIX 90 read 21 136 544 724.3433 724.3434 [ 40] + X_POSIX 90 read 22 680 512 724.3434 724.3434 [ 40] + X_POSIX 90 read 23 1504 328 724.3541 724.3544 [ 40] + X_POSIX 90 read 24 0 8 726.4574 726.5981 [ 40] + X_POSIX 90 read 25 0 9 726.6001 726.6001 [ 40] + X_POSIX 90 read 26 9 87 726.6005 726.6005 [ 40] + X_POSIX 90 read 27 96 512 726.6064 726.6064 [ 40] + X_POSIX 90 read 28 2064 632 726.6089 726.6089 [ 40] + X_POSIX 90 read 29 136 544 726.6108 726.6108 [ 40] + X_POSIX 90 read 30 680 512 726.6118 726.6118 [ 40] + X_POSIX 90 read 31 1504 328 726.6392 726.6393 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 90, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 90 read 0 0 8 1497.1120 1497.2232 [209] + X_POSIX 90 read 1 0 9 1497.2232 1497.2233 [209] + X_POSIX 90 read 2 9 87 1497.2233 1497.2233 [209] + X_POSIX 90 read 3 96 512 1497.2233 1497.2234 [209] + X_POSIX 90 read 4 2064 632 1497.2234 1497.2234 [209] + X_POSIX 90 read 5 136 544 1497.2234 1497.2234 [209] + X_POSIX 90 read 6 680 512 1497.2234 1497.2235 [209] + X_POSIX 90 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 90 read 8 0 8 1497.9396 1497.9575 [209] + X_POSIX 90 read 9 0 9 1497.9609 1497.9609 [209] + X_POSIX 90 read 10 9 87 1497.9612 1497.9613 [209] + X_POSIX 90 read 11 96 512 1497.9672 1497.9672 [209] + X_POSIX 90 read 12 2064 632 1497.9697 1497.9697 [209] + X_POSIX 90 read 13 136 544 1497.9715 1497.9716 [209] + X_POSIX 90 read 14 680 512 1497.9725 1497.9725 [209] + X_POSIX 90 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 90 read 16 0 8 1498.6920 1498.7791 [209] + X_POSIX 90 read 17 0 9 1498.7791 1498.7791 [209] + X_POSIX 90 read 18 9 87 1498.7791 1498.7792 [209] + X_POSIX 90 read 19 96 512 1498.7792 1498.7792 [209] + X_POSIX 90 read 20 2064 632 1498.7792 1498.7792 [209] + X_POSIX 90 read 21 136 544 1498.7792 1498.7793 [209] + X_POSIX 90 read 22 680 512 1498.7793 1498.7793 [209] + X_POSIX 90 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 90 read 24 0 8 1500.5675 1500.6818 [209] + X_POSIX 90 read 25 0 9 1500.6833 1500.6834 [209] + X_POSIX 90 read 26 9 87 1500.6837 1500.6837 [209] + X_POSIX 90 read 27 96 512 1500.6856 1500.6856 [209] + X_POSIX 90 read 28 2064 632 1500.6868 1500.6869 [209] + X_POSIX 90 read 29 136 544 1500.6871 1500.6871 [209] + X_POSIX 90 read 30 680 512 1500.6873 1500.6874 [209] + X_POSIX 90 read 31 1504 328 1500.7124 1500.7124 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 91, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 91 read 0 0 342 1.4762 1.4798 [ 33] + X_POSIX 91 read 1 342 0 1.4969 1.4972 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 91, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 91 read 0 0 8 722.3864 722.4806 [ 40] + X_POSIX 91 read 1 0 9 722.4831 722.4831 [ 40] + X_POSIX 91 read 2 9 87 722.4833 722.4834 [ 40] + X_POSIX 91 read 3 96 512 722.4921 722.4922 [ 40] + X_POSIX 91 read 4 2064 632 722.4945 722.4945 [ 40] + X_POSIX 91 read 5 136 544 722.4966 722.4966 [ 40] + X_POSIX 91 read 6 680 512 722.4975 722.4976 [ 40] + X_POSIX 91 read 7 1504 328 722.5391 722.5391 [ 40] + X_POSIX 91 read 8 0 8 723.3558 723.3741 [ 40] + X_POSIX 91 read 9 0 9 723.3775 723.3776 [ 40] + X_POSIX 91 read 10 9 87 723.3779 723.3779 [ 40] + X_POSIX 91 read 11 96 512 723.3838 723.3838 [ 40] + X_POSIX 91 read 12 2064 632 723.3862 723.3863 [ 40] + X_POSIX 91 read 13 136 544 723.3881 723.3881 [ 40] + X_POSIX 91 read 14 680 512 723.3890 723.3891 [ 40] + X_POSIX 91 read 15 1504 328 723.4355 723.4356 [ 40] + X_POSIX 91 read 16 0 8 724.2518 724.3435 [ 40] + X_POSIX 91 read 17 0 9 724.3435 724.3435 [ 40] + X_POSIX 91 read 18 9 87 724.3435 724.3436 [ 40] + X_POSIX 91 read 19 96 512 724.3436 724.3436 [ 40] + X_POSIX 91 read 20 2064 632 724.3436 724.3437 [ 40] + X_POSIX 91 read 21 136 544 724.3437 724.3437 [ 40] + X_POSIX 91 read 22 680 512 724.3437 724.3437 [ 40] + X_POSIX 91 read 23 1504 328 724.3542 724.3545 [ 40] + X_POSIX 91 read 24 0 8 726.4574 726.5982 [ 40] + X_POSIX 91 read 25 0 9 726.6006 726.6006 [ 40] + X_POSIX 91 read 26 9 87 726.6009 726.6010 [ 40] + X_POSIX 91 read 27 96 512 726.6068 726.6069 [ 40] + X_POSIX 91 read 28 2064 632 726.6093 726.6093 [ 40] + X_POSIX 91 read 29 136 544 726.6112 726.6112 [ 40] + X_POSIX 91 read 30 680 512 726.6121 726.6121 [ 40] + X_POSIX 91 read 31 1504 328 726.6393 726.6393 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 91, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 91 read 0 0 8 1497.1120 1497.2280 [209] + X_POSIX 91 read 1 0 9 1497.2281 1497.2281 [209] + X_POSIX 91 read 2 9 87 1497.2281 1497.2281 [209] + X_POSIX 91 read 3 96 512 1497.2281 1497.2282 [209] + X_POSIX 91 read 4 2064 632 1497.2282 1497.2282 [209] + X_POSIX 91 read 5 136 544 1497.2282 1497.2282 [209] + X_POSIX 91 read 6 680 512 1497.2283 1497.2283 [209] + X_POSIX 91 read 7 1504 328 1497.2489 1497.2493 [209] + X_POSIX 91 read 8 0 8 1497.9397 1497.9573 [209] + X_POSIX 91 read 9 0 9 1497.9604 1497.9604 [209] + X_POSIX 91 read 10 9 87 1497.9608 1497.9608 [209] + X_POSIX 91 read 11 96 512 1497.9667 1497.9667 [209] + X_POSIX 91 read 12 2064 632 1497.9691 1497.9691 [209] + X_POSIX 91 read 13 136 544 1497.9710 1497.9710 [209] + X_POSIX 91 read 14 680 512 1497.9719 1497.9719 [209] + X_POSIX 91 read 15 1504 328 1497.9963 1497.9964 [209] + X_POSIX 91 read 16 0 8 1498.6921 1498.7770 [209] + X_POSIX 91 read 17 0 9 1498.7770 1498.7770 [209] + X_POSIX 91 read 18 9 87 1498.7770 1498.7771 [209] + X_POSIX 91 read 19 96 512 1498.7771 1498.7771 [209] + X_POSIX 91 read 20 2064 632 1498.7771 1498.7771 [209] + X_POSIX 91 read 21 136 544 1498.7771 1498.7772 [209] + X_POSIX 91 read 22 680 512 1498.7772 1498.7772 [209] + X_POSIX 91 read 23 1504 328 1498.8019 1498.8022 [209] + X_POSIX 91 read 24 0 8 1500.5673 1500.6814 [209] + X_POSIX 91 read 25 0 9 1500.6825 1500.6825 [209] + X_POSIX 91 read 26 9 87 1500.6828 1500.6828 [209] + X_POSIX 91 read 27 96 512 1500.6847 1500.6847 [209] + X_POSIX 91 read 28 2064 632 1500.6860 1500.6860 [209] + X_POSIX 91 read 29 136 544 1500.6863 1500.6864 [209] + X_POSIX 91 read 30 680 512 1500.6867 1500.6867 [209] + X_POSIX 91 read 31 1504 328 1500.7126 1500.7127 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 92, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 92 read 0 0 342 1.4760 1.4793 [ 33] + X_POSIX 92 read 1 342 0 1.4967 1.4970 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 92, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 92 read 0 0 8 722.3863 722.4782 [ 40] + X_POSIX 92 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 92 read 2 9 87 722.4834 722.4836 [ 40] + X_POSIX 92 read 3 96 512 722.4919 722.4919 [ 40] + X_POSIX 92 read 4 2064 632 722.4942 722.4942 [ 40] + X_POSIX 92 read 5 136 544 722.4960 722.4961 [ 40] + X_POSIX 92 read 6 680 512 722.4970 722.4970 [ 40] + X_POSIX 92 read 7 1504 328 722.5390 722.5391 [ 40] + X_POSIX 92 read 8 0 8 723.3564 723.3738 [ 40] + X_POSIX 92 read 9 0 9 723.3773 723.3773 [ 40] + X_POSIX 92 read 10 9 87 723.3776 723.3776 [ 40] + X_POSIX 92 read 11 96 512 723.3835 723.3836 [ 40] + X_POSIX 92 read 12 2064 632 723.3860 723.3860 [ 40] + X_POSIX 92 read 13 136 544 723.3879 723.3879 [ 40] + X_POSIX 92 read 14 680 512 723.3888 723.3889 [ 40] + X_POSIX 92 read 15 1504 328 723.4352 723.4353 [ 40] + X_POSIX 92 read 16 0 8 724.2516 724.3431 [ 40] + X_POSIX 92 read 17 0 9 724.3431 724.3432 [ 40] + X_POSIX 92 read 18 9 87 724.3432 724.3433 [ 40] + X_POSIX 92 read 19 96 512 724.3433 724.3433 [ 40] + X_POSIX 92 read 20 2064 632 724.3433 724.3434 [ 40] + X_POSIX 92 read 21 136 544 724.3434 724.3434 [ 40] + X_POSIX 92 read 22 680 512 724.3434 724.3435 [ 40] + X_POSIX 92 read 23 1504 328 724.3540 724.3543 [ 40] + X_POSIX 92 read 24 0 8 726.4573 726.5980 [ 40] + X_POSIX 92 read 25 0 9 726.5995 726.5996 [ 40] + X_POSIX 92 read 26 9 87 726.5999 726.5999 [ 40] + X_POSIX 92 read 27 96 512 726.6058 726.6058 [ 40] + X_POSIX 92 read 28 2064 632 726.6083 726.6083 [ 40] + X_POSIX 92 read 29 136 544 726.6102 726.6102 [ 40] + X_POSIX 92 read 30 680 512 726.6111 726.6112 [ 40] + X_POSIX 92 read 31 1504 328 726.6392 726.6392 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 92, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 92 read 0 0 8 1497.1118 1497.2298 [209] + X_POSIX 92 read 1 0 9 1497.2299 1497.2299 [209] + X_POSIX 92 read 2 9 87 1497.2299 1497.2299 [209] + X_POSIX 92 read 3 96 512 1497.2299 1497.2300 [209] + X_POSIX 92 read 4 2064 632 1497.2300 1497.2300 [209] + X_POSIX 92 read 5 136 544 1497.2300 1497.2301 [209] + X_POSIX 92 read 6 680 512 1497.2301 1497.2301 [209] + X_POSIX 92 read 7 1504 328 1497.2488 1497.2491 [209] + X_POSIX 92 read 8 0 8 1497.9395 1497.9575 [209] + X_POSIX 92 read 9 0 9 1497.9610 1497.9610 [209] + X_POSIX 92 read 10 9 87 1497.9613 1497.9614 [209] + X_POSIX 92 read 11 96 512 1497.9673 1497.9673 [209] + X_POSIX 92 read 12 2064 632 1497.9698 1497.9698 [209] + X_POSIX 92 read 13 136 544 1497.9716 1497.9717 [209] + X_POSIX 92 read 14 680 512 1497.9726 1497.9726 [209] + X_POSIX 92 read 15 1504 328 1497.9965 1497.9965 [209] + X_POSIX 92 read 16 0 8 1498.6919 1498.7791 [209] + X_POSIX 92 read 17 0 9 1498.7791 1498.7792 [209] + X_POSIX 92 read 18 9 87 1498.7792 1498.7792 [209] + X_POSIX 92 read 19 96 512 1498.7792 1498.7792 [209] + X_POSIX 92 read 20 2064 632 1498.7792 1498.7793 [209] + X_POSIX 92 read 21 136 544 1498.7793 1498.7793 [209] + X_POSIX 92 read 22 680 512 1498.7793 1498.7793 [209] + X_POSIX 92 read 23 1504 328 1498.8017 1498.8021 [209] + X_POSIX 92 read 24 0 8 1500.5674 1500.6817 [209] + X_POSIX 92 read 25 0 9 1500.6833 1500.6833 [209] + X_POSIX 92 read 26 9 87 1500.6836 1500.6837 [209] + X_POSIX 92 read 27 96 512 1500.6856 1500.6856 [209] + X_POSIX 92 read 28 2064 632 1500.6868 1500.6868 [209] + X_POSIX 92 read 29 136 544 1500.6871 1500.6871 [209] + X_POSIX 92 read 30 680 512 1500.6873 1500.6873 [209] + X_POSIX 92 read 31 1504 328 1500.7126 1500.7126 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 93, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 93 read 0 0 342 1.4761 1.4794 [ 33] + X_POSIX 93 read 1 342 0 1.4969 1.4972 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 93, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 93 read 0 0 8 722.3864 722.4815 [ 40] + X_POSIX 93 read 1 0 9 722.4831 722.4831 [ 40] + X_POSIX 93 read 2 9 87 722.4832 722.4834 [ 40] + X_POSIX 93 read 3 96 512 722.4922 722.4924 [ 40] + X_POSIX 93 read 4 2064 632 722.4948 722.4949 [ 40] + X_POSIX 93 read 5 136 544 722.4967 722.4967 [ 40] + X_POSIX 93 read 6 680 512 722.4976 722.4976 [ 40] + X_POSIX 93 read 7 1504 328 722.5392 722.5392 [ 40] + X_POSIX 93 read 8 0 8 723.3567 723.3734 [ 40] + X_POSIX 93 read 9 0 9 723.3752 723.3753 [ 40] + X_POSIX 93 read 10 9 87 723.3756 723.3756 [ 40] + X_POSIX 93 read 11 96 512 723.3815 723.3815 [ 40] + X_POSIX 93 read 12 2064 632 723.3840 723.3840 [ 40] + X_POSIX 93 read 13 136 544 723.3858 723.3859 [ 40] + X_POSIX 93 read 14 680 512 723.3868 723.3868 [ 40] + X_POSIX 93 read 15 1504 328 723.4355 723.4355 [ 40] + X_POSIX 93 read 16 0 8 724.2517 724.3432 [ 40] + X_POSIX 93 read 17 0 9 724.3433 724.3433 [ 40] + X_POSIX 93 read 18 9 87 724.3433 724.3434 [ 40] + X_POSIX 93 read 19 96 512 724.3434 724.3435 [ 40] + X_POSIX 93 read 20 2064 632 724.3435 724.3435 [ 40] + X_POSIX 93 read 21 136 544 724.3435 724.3436 [ 40] + X_POSIX 93 read 22 680 512 724.3436 724.3436 [ 40] + X_POSIX 93 read 23 1504 328 724.3541 724.3545 [ 40] + X_POSIX 93 read 24 0 8 726.4574 726.5987 [ 40] + X_POSIX 93 read 25 0 9 726.6021 726.6021 [ 40] + X_POSIX 93 read 26 9 87 726.6024 726.6025 [ 40] + X_POSIX 93 read 27 96 512 726.6083 726.6084 [ 40] + X_POSIX 93 read 28 2064 632 726.6108 726.6108 [ 40] + X_POSIX 93 read 29 136 544 726.6127 726.6127 [ 40] + X_POSIX 93 read 30 680 512 726.6137 726.6137 [ 40] + X_POSIX 93 read 31 1504 328 726.6392 726.6392 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 93, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 93 read 0 0 8 1497.1120 1497.2233 [209] + X_POSIX 93 read 1 0 9 1497.2234 1497.2235 [209] + X_POSIX 93 read 2 9 87 1497.2235 1497.2235 [209] + X_POSIX 93 read 3 96 512 1497.2235 1497.2236 [209] + X_POSIX 93 read 4 2064 632 1497.2236 1497.2236 [209] + X_POSIX 93 read 5 136 544 1497.2236 1497.2236 [209] + X_POSIX 93 read 6 680 512 1497.2236 1497.2236 [209] + X_POSIX 93 read 7 1504 328 1497.2489 1497.2493 [209] + X_POSIX 93 read 8 0 8 1497.9395 1497.9570 [209] + X_POSIX 93 read 9 0 9 1497.9597 1497.9597 [209] + X_POSIX 93 read 10 9 87 1497.9600 1497.9600 [209] + X_POSIX 93 read 11 96 512 1497.9659 1497.9659 [209] + X_POSIX 93 read 12 2064 632 1497.9684 1497.9684 [209] + X_POSIX 93 read 13 136 544 1497.9702 1497.9702 [209] + X_POSIX 93 read 14 680 512 1497.9712 1497.9712 [209] + X_POSIX 93 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 93 read 16 0 8 1498.6920 1498.7801 [209] + X_POSIX 93 read 17 0 9 1498.7801 1498.7802 [209] + X_POSIX 93 read 18 9 87 1498.7802 1498.7802 [209] + X_POSIX 93 read 19 96 512 1498.7802 1498.7802 [209] + X_POSIX 93 read 20 2064 632 1498.7802 1498.7802 [209] + X_POSIX 93 read 21 136 544 1498.7803 1498.7803 [209] + X_POSIX 93 read 22 680 512 1498.7803 1498.7803 [209] + X_POSIX 93 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 93 read 24 0 8 1500.5674 1500.6814 [209] + X_POSIX 93 read 25 0 9 1500.6825 1500.6825 [209] + X_POSIX 93 read 26 9 87 1500.6829 1500.6829 [209] + X_POSIX 93 read 27 96 512 1500.6848 1500.6848 [209] + X_POSIX 93 read 28 2064 632 1500.6861 1500.6861 [209] + X_POSIX 93 read 29 136 544 1500.6864 1500.6864 [209] + X_POSIX 93 read 30 680 512 1500.6867 1500.6867 [209] + X_POSIX 93 read 31 1504 328 1500.7123 1500.7123 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 94, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 94 read 0 0 342 1.4761 1.4798 [ 33] + X_POSIX 94 read 1 342 0 1.4968 1.4971 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 94, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 94 read 0 0 8 722.3864 722.4821 [ 40] + X_POSIX 94 read 1 0 9 722.4830 722.4830 [ 40] + X_POSIX 94 read 2 9 87 722.4832 722.4834 [ 40] + X_POSIX 94 read 3 96 512 722.4923 722.4925 [ 40] + X_POSIX 94 read 4 2064 632 722.4949 722.4950 [ 40] + X_POSIX 94 read 5 136 544 722.4968 722.4969 [ 40] + X_POSIX 94 read 6 680 512 722.4977 722.4978 [ 40] + X_POSIX 94 read 7 1504 328 722.5390 722.5390 [ 40] + X_POSIX 94 read 8 0 8 723.3558 723.3741 [ 40] + X_POSIX 94 read 9 0 9 723.3778 723.3778 [ 40] + X_POSIX 94 read 10 9 87 723.3782 723.3782 [ 40] + X_POSIX 94 read 11 96 512 723.3840 723.3840 [ 40] + X_POSIX 94 read 12 2064 632 723.3865 723.3865 [ 40] + X_POSIX 94 read 13 136 544 723.3884 723.3884 [ 40] + X_POSIX 94 read 14 680 512 723.3893 723.3894 [ 40] + X_POSIX 94 read 15 1504 328 723.4356 723.4356 [ 40] + X_POSIX 94 read 16 0 8 724.2517 724.3470 [ 40] + X_POSIX 94 read 17 0 9 724.3470 724.3470 [ 40] + X_POSIX 94 read 18 9 87 724.3470 724.3471 [ 40] + X_POSIX 94 read 19 96 512 724.3471 724.3471 [ 40] + X_POSIX 94 read 20 2064 632 724.3471 724.3471 [ 40] + X_POSIX 94 read 21 136 544 724.3471 724.3472 [ 40] + X_POSIX 94 read 22 680 512 724.3472 724.3472 [ 40] + X_POSIX 94 read 23 1504 328 724.3541 724.3543 [ 40] + X_POSIX 94 read 24 0 8 726.4574 726.5983 [ 40] + X_POSIX 94 read 25 0 9 726.6016 726.6016 [ 40] + X_POSIX 94 read 26 9 87 726.6019 726.6019 [ 40] + X_POSIX 94 read 27 96 512 726.6078 726.6079 [ 40] + X_POSIX 94 read 28 2064 632 726.6103 726.6104 [ 40] + X_POSIX 94 read 29 136 544 726.6122 726.6123 [ 40] + X_POSIX 94 read 30 680 512 726.6132 726.6132 [ 40] + X_POSIX 94 read 31 1504 328 726.6395 726.6395 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 94, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 94 read 0 0 8 1497.1120 1497.2232 [209] + X_POSIX 94 read 1 0 9 1497.2233 1497.2233 [209] + X_POSIX 94 read 2 9 87 1497.2233 1497.2233 [209] + X_POSIX 94 read 3 96 512 1497.2233 1497.2234 [209] + X_POSIX 94 read 4 2064 632 1497.2234 1497.2234 [209] + X_POSIX 94 read 5 136 544 1497.2234 1497.2234 [209] + X_POSIX 94 read 6 680 512 1497.2234 1497.2235 [209] + X_POSIX 94 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 94 read 8 0 8 1497.9397 1497.9576 [209] + X_POSIX 94 read 9 0 9 1497.9611 1497.9611 [209] + X_POSIX 94 read 10 9 87 1497.9614 1497.9614 [209] + X_POSIX 94 read 11 96 512 1497.9673 1497.9673 [209] + X_POSIX 94 read 12 2064 632 1497.9698 1497.9698 [209] + X_POSIX 94 read 13 136 544 1497.9716 1497.9716 [209] + X_POSIX 94 read 14 680 512 1497.9726 1497.9726 [209] + X_POSIX 94 read 15 1504 328 1497.9964 1497.9964 [209] + X_POSIX 94 read 16 0 8 1498.6920 1498.7772 [209] + X_POSIX 94 read 17 0 9 1498.7772 1498.7773 [209] + X_POSIX 94 read 18 9 87 1498.7773 1498.7773 [209] + X_POSIX 94 read 19 96 512 1498.7773 1498.7773 [209] + X_POSIX 94 read 20 2064 632 1498.7773 1498.7773 [209] + X_POSIX 94 read 21 136 544 1498.7773 1498.7774 [209] + X_POSIX 94 read 22 680 512 1498.7774 1498.7774 [209] + X_POSIX 94 read 23 1504 328 1498.8018 1498.8021 [209] + X_POSIX 94 read 24 0 8 1500.5675 1500.6819 [209] + X_POSIX 94 read 25 0 9 1500.6835 1500.6835 [209] + X_POSIX 94 read 26 9 87 1500.6838 1500.6838 [209] + X_POSIX 94 read 27 96 512 1500.6858 1500.6858 [209] + X_POSIX 94 read 28 2064 632 1500.6869 1500.6870 [209] + X_POSIX 94 read 29 136 544 1500.6873 1500.6873 [209] + X_POSIX 94 read 30 680 512 1500.6876 1500.6876 [209] + X_POSIX 94 read 31 1504 328 1500.7124 1500.7124 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 95, hostname: nid00537 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 95 read 0 0 342 1.4762 1.4800 [ 33] + X_POSIX 95 read 1 342 0 1.4967 1.4968 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 95, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 95 read 0 0 8 722.3864 722.4784 [ 40] + X_POSIX 95 read 1 0 9 722.4831 722.4833 [ 40] + X_POSIX 95 read 2 9 87 722.4835 722.4837 [ 40] + X_POSIX 95 read 3 96 512 722.4921 722.4923 [ 40] + X_POSIX 95 read 4 2064 632 722.4947 722.4947 [ 40] + X_POSIX 95 read 5 136 544 722.4966 722.4966 [ 40] + X_POSIX 95 read 6 680 512 722.4975 722.4975 [ 40] + X_POSIX 95 read 7 1504 328 722.5394 722.5394 [ 40] + X_POSIX 95 read 8 0 8 723.3557 723.3740 [ 40] + X_POSIX 95 read 9 0 9 723.3774 723.3774 [ 40] + X_POSIX 95 read 10 9 87 723.3777 723.3778 [ 40] + X_POSIX 95 read 11 96 512 723.3836 723.3836 [ 40] + X_POSIX 95 read 12 2064 632 723.3861 723.3861 [ 40] + X_POSIX 95 read 13 136 544 723.3880 723.3880 [ 40] + X_POSIX 95 read 14 680 512 723.3889 723.3889 [ 40] + X_POSIX 95 read 15 1504 328 723.4355 723.4355 [ 40] + X_POSIX 95 read 16 0 8 724.2517 724.3431 [ 40] + X_POSIX 95 read 17 0 9 724.3431 724.3432 [ 40] + X_POSIX 95 read 18 9 87 724.3432 724.3432 [ 40] + X_POSIX 95 read 19 96 512 724.3432 724.3433 [ 40] + X_POSIX 95 read 20 2064 632 724.3433 724.3434 [ 40] + X_POSIX 95 read 21 136 544 724.3434 724.3435 [ 40] + X_POSIX 95 read 22 680 512 724.3435 724.3435 [ 40] + X_POSIX 95 read 23 1504 328 724.3541 724.3545 [ 40] + X_POSIX 95 read 24 0 8 726.4574 726.5987 [ 40] + X_POSIX 95 read 25 0 9 726.6023 726.6024 [ 40] + X_POSIX 95 read 26 9 87 726.6027 726.6027 [ 40] + X_POSIX 95 read 27 96 512 726.6085 726.6086 [ 40] + X_POSIX 95 read 28 2064 632 726.6110 726.6110 [ 40] + X_POSIX 95 read 29 136 544 726.6129 726.6129 [ 40] + X_POSIX 95 read 30 680 512 726.6139 726.6139 [ 40] + X_POSIX 95 read 31 1504 328 726.6392 726.6393 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 95, hostname: nid00537 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 95 read 0 0 8 1497.1119 1497.2263 [209] + X_POSIX 95 read 1 0 9 1497.2265 1497.2266 [209] + X_POSIX 95 read 2 9 87 1497.2266 1497.2267 [209] + X_POSIX 95 read 3 96 512 1497.2267 1497.2268 [209] + X_POSIX 95 read 4 2064 632 1497.2268 1497.2269 [209] + X_POSIX 95 read 5 136 544 1497.2269 1497.2269 [209] + X_POSIX 95 read 6 680 512 1497.2269 1497.2270 [209] + X_POSIX 95 read 7 1504 328 1497.2489 1497.2492 [209] + X_POSIX 95 read 8 0 8 1497.9396 1497.9569 [209] + X_POSIX 95 read 9 0 9 1497.9590 1497.9590 [209] + X_POSIX 95 read 10 9 87 1497.9594 1497.9594 [209] + X_POSIX 95 read 11 96 512 1497.9652 1497.9653 [209] + X_POSIX 95 read 12 2064 632 1497.9677 1497.9677 [209] + X_POSIX 95 read 13 136 544 1497.9696 1497.9696 [209] + X_POSIX 95 read 14 680 512 1497.9705 1497.9706 [209] + X_POSIX 95 read 15 1504 328 1497.9963 1497.9963 [209] + X_POSIX 95 read 16 0 8 1498.6920 1498.7809 [209] + X_POSIX 95 read 17 0 9 1498.7809 1498.7809 [209] + X_POSIX 95 read 18 9 87 1498.7809 1498.7810 [209] + X_POSIX 95 read 19 96 512 1498.7810 1498.7810 [209] + X_POSIX 95 read 20 2064 632 1498.7810 1498.7810 [209] + X_POSIX 95 read 21 136 544 1498.7810 1498.7811 [209] + X_POSIX 95 read 22 680 512 1498.7811 1498.7811 [209] + X_POSIX 95 read 23 1504 328 1498.8018 1498.8022 [209] + X_POSIX 95 read 24 0 8 1500.5675 1500.6816 [209] + X_POSIX 95 read 25 0 9 1500.6830 1500.6831 [209] + X_POSIX 95 read 26 9 87 1500.6834 1500.6834 [209] + X_POSIX 95 read 27 96 512 1500.6853 1500.6853 [209] + X_POSIX 95 read 28 2064 632 1500.6866 1500.6866 [209] + X_POSIX 95 read 29 136 544 1500.6869 1500.6869 [209] + X_POSIX 95 read 30 680 512 1500.6871 1500.6871 [209] + X_POSIX 95 read 31 1504 328 1500.7125 1500.7126 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 96, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 96 read 0 0 342 1.7061 1.7091 [ 33] + X_POSIX 96 read 1 342 0 1.7269 1.7269 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 96, hostname: nid00538 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 96 write 0 201326592 67108864 721.8988 722.0435 [196] + X_POSIX 96 write 1 8791261184 67108864 724.7308 724.9139 [196] + X_POSIX 96 write 2 17381195776 67108864 724.9374 725.1335 [196] + X_POSIX 96 write 3 25971130368 67108864 725.1544 725.3796 [196] + X_POSIX 96 write 4 34561064960 67108864 727.5241 727.6733 [196] + X_POSIX 96 write 5 43150999552 67108864 727.7148 727.9446 [196] + X_POSIX 96 write 6 51740934144 67108864 728.8714 729.0162 [196] + X_POSIX 96 write 7 60330868736 67108864 729.0332 729.2448 [196] + X_POSIX 96 write 8 68920803328 67108864 729.2806 729.4557 [196] + X_POSIX 96 write 9 77510737920 67108864 729.5138 729.7276 [196] + X_POSIX 96 write 10 86100672512 67108864 729.7595 729.9849 [196] + X_POSIX 96 write 11 94690607104 67108864 730.0168 730.2373 [196] + X_POSIX 96 write 12 103280541696 67108864 730.2665 730.4802 [196] + X_POSIX 96 write 13 111870476288 67108864 730.5039 730.7733 [196] + X_POSIX 96 write 14 120460410880 67108864 730.7958 730.9870 [196] + X_POSIX 96 write 15 129050345472 67108864 731.0046 731.2284 [196] + X_POSIX 96 write 16 137640280064 67108864 731.2462 731.4507 [196] + X_POSIX 96 write 17 146230214656 67108864 731.4654 731.6839 [196] + X_POSIX 96 write 18 154820149248 67108864 731.6986 731.9516 [196] + X_POSIX 96 write 19 163410083840 67108864 731.9652 732.2482 [196] + X_POSIX 96 write 20 172000018432 67108864 732.2700 732.4523 [196] + X_POSIX 96 write 21 180589953024 67108864 732.4686 732.6937 [196] + X_POSIX 96 write 22 189179887616 67108864 732.7056 732.9887 [196] + X_POSIX 96 write 23 197769822208 67108864 733.0014 733.2549 [196] + X_POSIX 96 write 24 206359756800 67108864 733.2673 733.4515 [196] + X_POSIX 96 write 25 214949691392 67108864 733.4646 733.6638 [196] + X_POSIX 96 write 26 223539625984 67108864 733.6771 734.0031 [196] + X_POSIX 96 write 27 232129560576 67108864 734.0160 734.3440 [196] + X_POSIX 96 write 28 240719495168 67108864 734.3576 734.6810 [196] + X_POSIX 96 read 0 0 8 722.4026 722.4985 [ 40] + X_POSIX 96 read 1 0 9 722.4993 722.4994 [ 40] + X_POSIX 96 read 2 9 87 722.4995 722.4995 [ 40] + X_POSIX 96 read 3 96 512 722.5015 722.5015 [ 40] + X_POSIX 96 read 4 2064 632 722.5034 722.5035 [ 40] + X_POSIX 96 read 5 136 544 722.5052 722.5052 [ 40] + X_POSIX 96 read 6 680 512 722.5061 722.5062 [ 40] + X_POSIX 96 read 7 1504 328 722.5564 722.5564 [ 40] + X_POSIX 96 read 8 0 8 723.3692 723.3934 [ 40] + X_POSIX 96 read 9 0 9 723.3964 723.3964 [ 40] + X_POSIX 96 read 10 9 87 723.3967 723.3967 [ 40] + X_POSIX 96 read 11 96 512 723.4024 723.4024 [ 40] + X_POSIX 96 read 12 2064 632 723.4047 723.4047 [ 40] + X_POSIX 96 read 13 136 544 723.4065 723.4065 [ 40] + X_POSIX 96 read 14 680 512 723.4073 723.4074 [ 40] + X_POSIX 96 read 15 1504 328 723.4526 723.4526 [ 40] + X_POSIX 96 read 16 0 8 724.2699 724.3637 [ 40] + X_POSIX 96 read 17 0 9 724.3637 724.3638 [ 40] + X_POSIX 96 read 18 9 87 724.3638 724.3638 [ 40] + X_POSIX 96 read 19 96 512 724.3638 724.3639 [ 40] + X_POSIX 96 read 20 2064 632 724.3639 724.3639 [ 40] + X_POSIX 96 read 21 136 544 724.3639 724.3639 [ 40] + X_POSIX 96 read 22 680 512 724.3639 724.3640 [ 40] + X_POSIX 96 read 23 1504 328 724.3723 724.3727 [ 40] + X_POSIX 96 read 24 0 8 726.4746 726.6196 [ 40] + X_POSIX 96 read 25 0 9 726.6226 726.6227 [ 40] + X_POSIX 96 read 26 9 87 726.6230 726.6230 [ 40] + X_POSIX 96 read 27 96 512 726.6287 726.6287 [ 40] + X_POSIX 96 read 28 2064 632 726.6310 726.6311 [ 40] + X_POSIX 96 read 29 136 544 726.6328 726.6329 [ 40] + X_POSIX 96 read 30 680 512 726.6337 726.6338 [ 40] + X_POSIX 96 read 31 1504 328 726.6563 726.6563 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 96, hostname: nid00538 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 96 write 0 201326592 67108864 1496.7853 1496.9301 [189] + X_POSIX 96 write 1 8791261184 67108864 1499.1619 1499.3016 [189] + X_POSIX 96 write 2 17381195776 67108864 1499.3323 1499.5036 [189] + X_POSIX 96 write 3 25971130368 67108864 1499.5138 1499.7324 [189] + X_POSIX 96 write 4 34561064960 67108864 1501.8242 1501.9540 [189] + X_POSIX 96 write 5 43150999552 67108864 1502.0496 1502.2391 [189] + X_POSIX 96 write 6 51740934144 67108864 1502.2806 1502.4709 [189] + X_POSIX 96 write 7 60330868736 67108864 1502.4853 1502.7487 [189] + X_POSIX 96 write 8 68920803328 67108864 1502.7698 1503.0669 [189] + X_POSIX 96 write 9 77510737920 67108864 1503.0835 1503.3634 [189] + X_POSIX 96 write 10 86100672512 67108864 1503.3774 1503.6575 [189] + X_POSIX 96 write 11 94690607104 67108864 1504.6852 1504.8424 [189] + X_POSIX 96 write 12 103280541696 67108864 1504.8628 1505.1778 [189] + X_POSIX 96 write 13 111870476288 67108864 1505.1950 1505.4378 [189] + X_POSIX 96 write 14 120460410880 67108864 1505.5108 1505.7172 [189] + X_POSIX 96 write 15 129050345472 67108864 1505.7616 1505.9814 [189] + X_POSIX 96 write 16 137640280064 67108864 1506.1734 1506.3426 [189] + X_POSIX 96 write 17 146230214656 67108864 1506.4293 1506.5766 [189] + X_POSIX 96 write 18 154820149248 67108864 1506.7759 1506.9260 [189] + X_POSIX 96 write 19 163410083840 67108864 1506.9900 1507.1664 [189] + X_POSIX 96 write 20 172000018432 67108864 1507.1998 1507.4334 [189] + X_POSIX 96 write 21 180589953024 67108864 1507.4473 1507.6789 [189] + X_POSIX 96 write 22 189179887616 67108864 1507.7086 1507.9942 [189] + X_POSIX 96 write 23 197769822208 67108864 1508.0223 1508.2501 [189] + X_POSIX 96 read 0 0 8 1497.1299 1497.2504 [209] + X_POSIX 96 read 1 0 9 1497.2505 1497.2506 [209] + X_POSIX 96 read 2 9 87 1497.2506 1497.2507 [209] + X_POSIX 96 read 3 96 512 1497.2508 1497.2509 [209] + X_POSIX 96 read 4 2064 632 1497.2509 1497.2511 [209] + X_POSIX 96 read 5 136 544 1497.2511 1497.2512 [209] + X_POSIX 96 read 6 680 512 1497.2512 1497.2514 [209] + X_POSIX 96 read 7 1504 328 1497.2670 1497.2673 [209] + X_POSIX 96 read 8 0 8 1497.9566 1497.9762 [209] + X_POSIX 96 read 9 0 9 1497.9791 1497.9791 [209] + X_POSIX 96 read 10 9 87 1497.9794 1497.9795 [209] + X_POSIX 96 read 11 96 512 1497.9851 1497.9851 [209] + X_POSIX 96 read 12 2064 632 1497.9874 1497.9875 [209] + X_POSIX 96 read 13 136 544 1497.9892 1497.9892 [209] + X_POSIX 96 read 14 680 512 1497.9901 1497.9901 [209] + X_POSIX 96 read 15 1504 328 1498.0134 1498.0134 [209] + X_POSIX 96 read 16 0 8 1498.7101 1498.7976 [209] + X_POSIX 96 read 17 0 9 1498.7976 1498.7977 [209] + X_POSIX 96 read 18 9 87 1498.7977 1498.7977 [209] + X_POSIX 96 read 19 96 512 1498.7977 1498.7977 [209] + X_POSIX 96 read 20 2064 632 1498.7977 1498.7978 [209] + X_POSIX 96 read 21 136 544 1498.7978 1498.7978 [209] + X_POSIX 96 read 22 680 512 1498.7978 1498.7978 [209] + X_POSIX 96 read 23 1504 328 1498.8199 1498.8202 [209] + X_POSIX 96 read 24 0 8 1500.5999 1500.6963 [209] + X_POSIX 96 read 25 0 9 1500.6974 1500.6974 [209] + X_POSIX 96 read 26 9 87 1500.6978 1500.6978 [209] + X_POSIX 96 read 27 96 512 1500.7036 1500.7036 [209] + X_POSIX 96 read 28 2064 632 1500.7061 1500.7061 [209] + X_POSIX 96 read 29 136 544 1500.7080 1500.7080 [209] + X_POSIX 96 read 30 680 512 1500.7089 1500.7089 [209] + X_POSIX 96 read 31 1504 328 1500.7339 1500.7339 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 97, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 97 read 0 0 342 1.7061 1.7090 [ 33] + X_POSIX 97 read 1 342 0 1.7270 1.7273 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 97, hostname: nid00538 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 97 write 0 2348810240 67108864 722.7512 722.8837 [177] + X_POSIX 97 write 1 10938744832 67108864 724.7238 724.8555 [177] + X_POSIX 97 write 2 19528679424 67108864 724.8649 725.1405 [177] + X_POSIX 97 write 3 28118614016 67108864 728.0554 728.2369 [177] + X_POSIX 97 write 4 36708548608 67108864 728.7131 728.8632 [177] + X_POSIX 97 write 5 45298483200 67108864 729.0649 729.2121 [177] + X_POSIX 97 write 6 53888417792 67108864 729.2426 729.4767 [177] + X_POSIX 97 write 7 62478352384 67108864 729.8423 729.9909 [177] + X_POSIX 97 write 8 71068286976 67108864 730.1857 730.3418 [177] + X_POSIX 97 write 9 79658221568 67108864 730.4557 730.6111 [177] + X_POSIX 97 write 10 88248156160 67108864 730.6463 730.8840 [177] + X_POSIX 97 write 11 96838090752 67108864 730.9356 731.1196 [177] + X_POSIX 97 write 12 105428025344 67108864 731.3140 731.4413 [177] + X_POSIX 97 write 13 114017959936 67108864 731.6160 731.8036 [177] + X_POSIX 97 write 14 122607894528 67108864 731.9851 732.1348 [177] + X_POSIX 97 write 15 131197829120 67108864 732.2778 732.4344 [177] + X_POSIX 97 write 16 139787763712 67108864 732.4624 732.6468 [177] + X_POSIX 97 write 17 148377698304 67108864 732.7678 732.9502 [177] + X_POSIX 97 write 18 156967632896 67108864 733.1458 733.3222 [177] + X_POSIX 97 write 19 165557567488 67108864 733.4906 733.6625 [177] + X_POSIX 97 write 20 174147502080 67108864 733.7736 733.9038 [177] + X_POSIX 97 write 21 182737436672 67108864 733.9651 734.2238 [177] + X_POSIX 97 write 22 191327371264 67108864 734.3699 734.6115 [177] + X_POSIX 97 write 23 199917305856 67108864 734.6247 734.8264 [177] + X_POSIX 97 write 24 208507240448 67108864 734.8881 735.0440 [177] + X_POSIX 97 write 25 217097175040 67108864 735.0845 735.2842 [177] + X_POSIX 97 write 26 225687109632 67108864 735.3215 735.4898 [177] + X_POSIX 97 write 27 234277044224 67108864 735.5081 735.6971 [177] + X_POSIX 97 write 28 242866978816 67108864 735.7129 735.9587 [177] + X_POSIX 97 read 0 0 8 722.4027 722.4984 [ 40] + X_POSIX 97 read 1 0 9 722.4996 722.4996 [ 40] + X_POSIX 97 read 2 9 87 722.4997 722.4997 [ 40] + X_POSIX 97 read 3 96 512 722.5020 722.5021 [ 40] + X_POSIX 97 read 4 2064 632 722.5041 722.5041 [ 40] + X_POSIX 97 read 5 136 544 722.5059 722.5059 [ 40] + X_POSIX 97 read 6 680 512 722.5068 722.5068 [ 40] + X_POSIX 97 read 7 1504 328 722.5570 722.5570 [ 40] + X_POSIX 97 read 8 0 8 723.3717 723.3933 [ 40] + X_POSIX 97 read 9 0 9 723.3965 723.3965 [ 40] + X_POSIX 97 read 10 9 87 723.3968 723.3968 [ 40] + X_POSIX 97 read 11 96 512 723.4024 723.4025 [ 40] + X_POSIX 97 read 12 2064 632 723.4048 723.4048 [ 40] + X_POSIX 97 read 13 136 544 723.4065 723.4065 [ 40] + X_POSIX 97 read 14 680 512 723.4074 723.4074 [ 40] + X_POSIX 97 read 15 1504 328 723.4529 723.4529 [ 40] + X_POSIX 97 read 16 0 8 724.2699 724.3631 [ 40] + X_POSIX 97 read 17 0 9 724.3631 724.3631 [ 40] + X_POSIX 97 read 18 9 87 724.3631 724.3632 [ 40] + X_POSIX 97 read 19 96 512 724.3632 724.3632 [ 40] + X_POSIX 97 read 20 2064 632 724.3632 724.3632 [ 40] + X_POSIX 97 read 21 136 544 724.3632 724.3633 [ 40] + X_POSIX 97 read 22 680 512 724.3633 724.3633 [ 40] + X_POSIX 97 read 23 1504 328 724.3723 724.3727 [ 40] + X_POSIX 97 read 24 0 8 726.4746 726.6195 [ 40] + X_POSIX 97 read 25 0 9 726.6231 726.6231 [ 40] + X_POSIX 97 read 26 9 87 726.6234 726.6234 [ 40] + X_POSIX 97 read 27 96 512 726.6291 726.6291 [ 40] + X_POSIX 97 read 28 2064 632 726.6314 726.6315 [ 40] + X_POSIX 97 read 29 136 544 726.6332 726.6332 [ 40] + X_POSIX 97 read 30 680 512 726.6341 726.6342 [ 40] + X_POSIX 97 read 31 1504 328 726.6566 726.6566 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 97, hostname: nid00538 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 97 write 0 2348810240 67108864 1497.3976 1497.5455 [107] + X_POSIX 97 write 1 10938744832 67108864 1499.1514 1499.3190 [107] + X_POSIX 97 write 2 19528679424 67108864 1499.4395 1499.5864 [107] + X_POSIX 97 write 3 28118614016 67108864 1502.1329 1502.2929 [107] + X_POSIX 97 write 4 36708548608 67108864 1502.5449 1502.6751 [107] + X_POSIX 97 write 5 45298483200 67108864 1502.7107 1502.9222 [107] + X_POSIX 97 write 6 53888417792 67108864 1502.9507 1503.1933 [107] + X_POSIX 97 write 7 62478352384 67108864 1503.2143 1503.4080 [107] + X_POSIX 97 write 8 71068286976 67108864 1503.4580 1503.6686 [107] + X_POSIX 97 write 9 79658221568 67108864 1503.7081 1503.9165 [107] + X_POSIX 97 write 10 88248156160 67108864 1503.9294 1504.1401 [107] + X_POSIX 97 write 11 96838090752 67108864 1504.1647 1504.5642 [107] + X_POSIX 97 write 12 105428025344 67108864 1505.2224 1505.4159 [107] + X_POSIX 97 write 13 114017959936 67108864 1505.4329 1505.6541 [107] + X_POSIX 97 write 14 122607894528 67108864 1505.8482 1506.0673 [107] + X_POSIX 97 write 15 131197829120 67108864 1506.0910 1506.3811 [107] + X_POSIX 97 write 16 139787763712 67108864 1506.4313 1506.5967 [107] + X_POSIX 97 write 17 148377698304 67108864 1506.6164 1506.7976 [107] + X_POSIX 97 write 18 156967632896 67108864 1506.8588 1507.0217 [107] + X_POSIX 97 write 19 165557567488 67108864 1507.2440 1507.4080 [107] + X_POSIX 97 write 20 174147502080 67108864 1507.4759 1507.6949 [107] + X_POSIX 97 write 21 182737436672 67108864 1507.7098 1507.9203 [107] + X_POSIX 97 write 22 191327371264 67108864 1507.9514 1508.1423 [107] + X_POSIX 97 write 23 199917305856 67108864 1508.1647 1508.3899 [107] + X_POSIX 97 read 0 0 8 1497.1299 1497.2502 [209] + X_POSIX 97 read 1 0 9 1497.2503 1497.2504 [209] + X_POSIX 97 read 2 9 87 1497.2504 1497.2504 [209] + X_POSIX 97 read 3 96 512 1497.2505 1497.2506 [209] + X_POSIX 97 read 4 2064 632 1497.2506 1497.2507 [209] + X_POSIX 97 read 5 136 544 1497.2507 1497.2508 [209] + X_POSIX 97 read 6 680 512 1497.2508 1497.2509 [209] + X_POSIX 97 read 7 1504 328 1497.2670 1497.2673 [209] + X_POSIX 97 read 8 0 8 1497.9567 1497.9756 [209] + X_POSIX 97 read 9 0 9 1497.9774 1497.9774 [209] + X_POSIX 97 read 10 9 87 1497.9778 1497.9778 [209] + X_POSIX 97 read 11 96 512 1497.9833 1497.9833 [209] + X_POSIX 97 read 12 2064 632 1497.9857 1497.9857 [209] + X_POSIX 97 read 13 136 544 1497.9874 1497.9875 [209] + X_POSIX 97 read 14 680 512 1497.9883 1497.9883 [209] + X_POSIX 97 read 15 1504 328 1498.0140 1498.0141 [209] + X_POSIX 97 read 16 0 8 1498.7101 1498.7953 [209] + X_POSIX 97 read 17 0 9 1498.7953 1498.7954 [209] + X_POSIX 97 read 18 9 87 1498.7954 1498.7954 [209] + X_POSIX 97 read 19 96 512 1498.7955 1498.7955 [209] + X_POSIX 97 read 20 2064 632 1498.7955 1498.7955 [209] + X_POSIX 97 read 21 136 544 1498.7955 1498.7956 [209] + X_POSIX 97 read 22 680 512 1498.7956 1498.7956 [209] + X_POSIX 97 read 23 1504 328 1498.8199 1498.8202 [209] + X_POSIX 97 read 24 0 8 1500.5998 1500.6965 [209] + X_POSIX 97 read 25 0 9 1500.6995 1500.6995 [209] + X_POSIX 97 read 26 9 87 1500.6998 1500.6999 [209] + X_POSIX 97 read 27 96 512 1500.7057 1500.7057 [209] + X_POSIX 97 read 28 2064 632 1500.7081 1500.7081 [209] + X_POSIX 97 read 29 136 544 1500.7099 1500.7100 [209] + X_POSIX 97 read 30 680 512 1500.7108 1500.7109 [209] + X_POSIX 97 read 31 1504 328 1500.7341 1500.7342 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 98, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 98 read 0 0 342 1.7061 1.7092 [ 33] + X_POSIX 98 read 1 342 0 1.7269 1.7270 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 98, hostname: nid00538 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 98 write 0 4496293888 67108864 723.6445 723.8104 [161] + X_POSIX 98 write 1 13086228480 67108864 724.7402 724.9372 [161] + X_POSIX 98 write 2 21676163072 67108864 725.0144 725.2146 [161] + X_POSIX 98 write 3 30266097664 67108864 728.0234 728.1550 [161] + X_POSIX 98 write 4 38856032256 67108864 728.5677 728.7437 [161] + X_POSIX 98 write 5 47445966848 67108864 729.0400 729.2033 [161] + X_POSIX 98 write 6 56035901440 67108864 729.3703 729.5246 [161] + X_POSIX 98 write 7 64625836032 67108864 729.8736 730.0122 [161] + X_POSIX 98 write 8 73215770624 67108864 730.1999 730.3513 [161] + X_POSIX 98 write 9 81805705216 67108864 730.4762 730.6647 [161] + X_POSIX 98 write 10 90395639808 67108864 730.7027 730.9391 [161] + X_POSIX 98 write 11 98985574400 67108864 730.9930 731.1777 [161] + X_POSIX 98 write 12 107575508992 67108864 731.2245 731.4080 [161] + X_POSIX 98 write 13 116165443584 67108864 731.4656 731.7068 [161] + X_POSIX 98 write 14 124755378176 67108864 731.7484 731.9979 [161] + X_POSIX 98 write 15 133345312768 67108864 732.0413 732.2452 [161] + X_POSIX 98 write 16 141935247360 67108864 732.2624 732.5649 [161] + X_POSIX 98 write 17 150525181952 67108864 732.5826 732.8888 [161] + X_POSIX 98 write 18 159115116544 67108864 732.9059 733.1566 [161] + X_POSIX 98 write 19 167705051136 67108864 733.1696 733.4041 [161] + X_POSIX 98 write 20 176294985728 67108864 733.4175 733.6815 [161] + X_POSIX 98 write 21 184884920320 67108864 733.7015 733.9715 [161] + X_POSIX 98 write 22 193474854912 67108864 734.0202 734.2376 [161] + X_POSIX 98 write 23 202064789504 67108864 734.2656 734.4925 [161] + X_POSIX 98 write 24 210654724096 67108864 734.5319 734.8355 [161] + X_POSIX 98 write 25 219244658688 67108864 734.8489 735.0909 [161] + X_POSIX 98 write 26 227834593280 67108864 736.0653 736.2020 [161] + X_POSIX 98 write 27 236424527872 67108864 736.2849 736.4551 [161] + X_POSIX 98 write 28 245014462464 67108864 736.5706 736.7321 [161] + X_POSIX 98 read 0 0 8 722.4028 722.5030 [ 40] + X_POSIX 98 read 1 0 9 722.5068 722.5068 [ 40] + X_POSIX 98 read 2 9 87 722.5071 722.5071 [ 40] + X_POSIX 98 read 3 96 512 722.5128 722.5129 [ 40] + X_POSIX 98 read 4 2064 632 722.5148 722.5148 [ 40] + X_POSIX 98 read 5 136 544 722.5157 722.5158 [ 40] + X_POSIX 98 read 6 680 512 722.5162 722.5163 [ 40] + X_POSIX 98 read 7 1504 328 722.5572 722.5572 [ 40] + X_POSIX 98 read 8 0 8 723.3717 723.3933 [ 40] + X_POSIX 98 read 9 0 9 723.3965 723.3965 [ 40] + X_POSIX 98 read 10 9 87 723.3968 723.3968 [ 40] + X_POSIX 98 read 11 96 512 723.4025 723.4025 [ 40] + X_POSIX 98 read 12 2064 632 723.4048 723.4048 [ 40] + X_POSIX 98 read 13 136 544 723.4066 723.4066 [ 40] + X_POSIX 98 read 14 680 512 723.4075 723.4075 [ 40] + X_POSIX 98 read 15 1504 328 723.4530 723.4532 [ 40] + X_POSIX 98 read 16 0 8 724.2700 724.3621 [ 40] + X_POSIX 98 read 17 0 9 724.3621 724.3622 [ 40] + X_POSIX 98 read 18 9 87 724.3622 724.3622 [ 40] + X_POSIX 98 read 19 96 512 724.3622 724.3622 [ 40] + X_POSIX 98 read 20 2064 632 724.3622 724.3623 [ 40] + X_POSIX 98 read 21 136 544 724.3623 724.3623 [ 40] + X_POSIX 98 read 22 680 512 724.3623 724.3624 [ 40] + X_POSIX 98 read 23 1504 328 724.3724 724.3727 [ 40] + X_POSIX 98 read 24 0 8 726.4747 726.6197 [ 40] + X_POSIX 98 read 25 0 9 726.6230 726.6230 [ 40] + X_POSIX 98 read 26 9 87 726.6233 726.6233 [ 40] + X_POSIX 98 read 27 96 512 726.6290 726.6290 [ 40] + X_POSIX 98 read 28 2064 632 726.6314 726.6314 [ 40] + X_POSIX 98 read 29 136 544 726.6332 726.6332 [ 40] + X_POSIX 98 read 30 680 512 726.6341 726.6341 [ 40] + X_POSIX 98 read 31 1504 328 726.6569 726.6570 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 98, hostname: nid00538 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 98 write 0 4496293888 67108864 1498.2713 1498.4573 [ 43] + X_POSIX 98 write 1 13086228480 67108864 1499.1604 1499.3676 [ 43] + X_POSIX 98 write 2 21676163072 67108864 1499.4618 1499.6272 [ 43] + X_POSIX 98 write 3 30266097664 67108864 1502.1237 1502.3032 [ 43] + X_POSIX 98 write 4 38856032256 67108864 1502.6264 1502.7901 [ 43] + X_POSIX 98 write 5 47445966848 67108864 1503.1303 1503.3611 [ 43] + X_POSIX 98 write 6 56035901440 67108864 1503.5149 1503.6992 [ 43] + X_POSIX 98 write 7 64625836032 67108864 1503.7712 1503.9189 [ 43] + X_POSIX 98 write 8 73215770624 67108864 1503.9837 1504.1356 [ 43] + X_POSIX 98 write 9 81805705216 67108864 1504.1783 1504.3993 [ 43] + X_POSIX 98 write 10 90395639808 67108864 1504.6457 1504.7828 [ 43] + X_POSIX 98 write 11 98985574400 67108864 1504.7995 1505.1253 [ 43] + X_POSIX 98 write 12 107575508992 67108864 1505.1408 1505.3336 [ 43] + X_POSIX 98 write 13 116165443584 67108864 1505.3613 1505.5521 [ 43] + X_POSIX 98 write 14 124755378176 67108864 1505.5975 1505.8199 [ 43] + X_POSIX 98 write 15 133345312768 67108864 1505.8928 1506.0555 [ 43] + X_POSIX 98 write 16 141935247360 67108864 1506.1849 1506.3341 [ 43] + X_POSIX 98 write 17 150525181952 67108864 1506.3788 1506.5595 [ 43] + X_POSIX 98 write 18 159115116544 67108864 1506.5843 1506.7780 [ 43] + X_POSIX 98 write 19 167705051136 67108864 1506.7932 1507.0128 [ 43] + X_POSIX 98 write 20 176294985728 67108864 1507.0322 1507.2368 [ 43] + X_POSIX 98 write 21 184884920320 67108864 1507.2535 1507.4627 [ 43] + X_POSIX 98 write 22 193474854912 67108864 1507.4749 1507.6774 [ 43] + X_POSIX 98 write 23 202064789504 67108864 1507.6915 1507.8684 [ 43] + X_POSIX 98 read 0 0 8 1497.1300 1497.2503 [209] + X_POSIX 98 read 1 0 9 1497.2504 1497.2505 [209] + X_POSIX 98 read 2 9 87 1497.2505 1497.2505 [209] + X_POSIX 98 read 3 96 512 1497.2506 1497.2507 [209] + X_POSIX 98 read 4 2064 632 1497.2507 1497.2508 [209] + X_POSIX 98 read 5 136 544 1497.2508 1497.2509 [209] + X_POSIX 98 read 6 680 512 1497.2509 1497.2511 [209] + X_POSIX 98 read 7 1504 328 1497.2670 1497.2673 [209] + X_POSIX 98 read 8 0 8 1497.9568 1497.9758 [209] + X_POSIX 98 read 9 0 9 1497.9787 1497.9787 [209] + X_POSIX 98 read 10 9 87 1497.9790 1497.9790 [209] + X_POSIX 98 read 11 96 512 1497.9846 1497.9847 [209] + X_POSIX 98 read 12 2064 632 1497.9870 1497.9870 [209] + X_POSIX 98 read 13 136 544 1497.9888 1497.9888 [209] + X_POSIX 98 read 14 680 512 1497.9896 1497.9897 [209] + X_POSIX 98 read 15 1504 328 1498.0138 1498.0139 [209] + X_POSIX 98 read 16 0 8 1498.7101 1498.7974 [209] + X_POSIX 98 read 17 0 9 1498.7974 1498.7974 [209] + X_POSIX 98 read 18 9 87 1498.7974 1498.7974 [209] + X_POSIX 98 read 19 96 512 1498.7974 1498.7975 [209] + X_POSIX 98 read 20 2064 632 1498.7975 1498.7975 [209] + X_POSIX 98 read 21 136 544 1498.7975 1498.7975 [209] + X_POSIX 98 read 22 680 512 1498.7975 1498.7976 [209] + X_POSIX 98 read 23 1504 328 1498.8199 1498.8203 [209] + X_POSIX 98 read 24 0 8 1500.6001 1500.6970 [209] + X_POSIX 98 read 25 0 9 1500.7004 1500.7004 [209] + X_POSIX 98 read 26 9 87 1500.7007 1500.7007 [209] + X_POSIX 98 read 27 96 512 1500.7065 1500.7066 [209] + X_POSIX 98 read 28 2064 632 1500.7090 1500.7090 [209] + X_POSIX 98 read 29 136 544 1500.7108 1500.7108 [209] + X_POSIX 98 read 30 680 512 1500.7117 1500.7117 [209] + X_POSIX 98 read 31 1504 328 1500.7343 1500.7343 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 99, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 99 read 0 0 342 1.7061 1.7090 [ 33] + X_POSIX 99 read 1 342 0 1.7269 1.7273 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 99, hostname: nid00538 +# DXT, write_count: 29, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 99 write 0 6643777536 67108864 723.6565 723.8402 [ 93] + X_POSIX 99 write 1 15233712128 67108864 724.7368 724.8947 [ 93] + X_POSIX 99 write 2 23823646720 67108864 724.9878 725.1151 [ 93] + X_POSIX 99 write 3 32413581312 67108864 728.0490 728.2208 [ 93] + X_POSIX 99 write 4 41003515904 67108864 728.7124 728.8933 [ 93] + X_POSIX 99 write 5 49593450496 67108864 729.0450 729.2128 [ 93] + X_POSIX 99 write 6 58183385088 67108864 729.3792 729.5379 [ 93] + X_POSIX 99 write 7 66773319680 67108864 729.8079 729.9637 [ 93] + X_POSIX 99 write 8 75363254272 67108864 730.1365 730.3170 [ 93] + X_POSIX 99 write 9 83953188864 67108864 730.5066 730.6591 [ 93] + X_POSIX 99 write 10 92543123456 67108864 730.9073 731.0548 [ 93] + X_POSIX 99 write 11 101133058048 67108864 731.1883 731.3140 [ 93] + X_POSIX 99 write 12 109722992640 67108864 731.3847 731.5230 [ 93] + X_POSIX 99 write 13 118312927232 67108864 731.5464 731.7692 [ 93] + X_POSIX 99 write 14 126902861824 67108864 731.9286 732.0742 [ 93] + X_POSIX 99 write 15 135492796416 67108864 732.0933 732.3190 [ 93] + X_POSIX 99 write 16 144082731008 67108864 732.3377 732.5379 [ 93] + X_POSIX 99 write 17 152672665600 67108864 732.5764 732.7693 [ 93] + X_POSIX 99 write 18 161262600192 67108864 732.8388 733.0116 [ 93] + X_POSIX 99 write 19 169852534784 67108864 733.1018 733.2410 [ 93] + X_POSIX 99 write 20 178442469376 67108864 733.3248 733.4724 [ 93] + X_POSIX 99 write 21 187032403968 67108864 734.3234 734.4953 [ 93] + X_POSIX 99 write 22 195622338560 67108864 734.5984 734.7718 [ 93] + X_POSIX 99 write 23 204212273152 67108864 735.0639 735.2182 [ 93] + X_POSIX 99 write 24 212802207744 67108864 735.3493 735.5348 [ 93] + X_POSIX 99 write 25 221392142336 67108864 735.7544 735.9217 [ 93] + X_POSIX 99 write 26 229982076928 67108864 736.1791 736.3258 [ 93] + X_POSIX 99 write 27 238572011520 67108864 736.3794 736.5365 [ 93] + X_POSIX 99 write 28 247161946112 67108864 736.6165 736.7984 [ 93] + X_POSIX 99 read 0 0 8 722.4027 722.5010 [ 40] + X_POSIX 99 read 1 0 9 722.5042 722.5043 [ 40] + X_POSIX 99 read 2 9 87 722.5045 722.5046 [ 40] + X_POSIX 99 read 3 96 512 722.5102 722.5102 [ 40] + X_POSIX 99 read 4 2064 632 722.5126 722.5126 [ 40] + X_POSIX 99 read 5 136 544 722.5142 722.5142 [ 40] + X_POSIX 99 read 6 680 512 722.5148 722.5148 [ 40] + X_POSIX 99 read 7 1504 328 722.5567 722.5568 [ 40] + X_POSIX 99 read 8 0 8 723.3714 723.3932 [ 40] + X_POSIX 99 read 9 0 9 723.3963 723.3963 [ 40] + X_POSIX 99 read 10 9 87 723.3966 723.3966 [ 40] + X_POSIX 99 read 11 96 512 723.4021 723.4022 [ 40] + X_POSIX 99 read 12 2064 632 723.4045 723.4045 [ 40] + X_POSIX 99 read 13 136 544 723.4062 723.4063 [ 40] + X_POSIX 99 read 14 680 512 723.4071 723.4072 [ 40] + X_POSIX 99 read 15 1504 328 723.4528 723.4528 [ 40] + X_POSIX 99 read 16 0 8 724.2699 724.3622 [ 40] + X_POSIX 99 read 17 0 9 724.3622 724.3622 [ 40] + X_POSIX 99 read 18 9 87 724.3622 724.3623 [ 40] + X_POSIX 99 read 19 96 512 724.3623 724.3623 [ 40] + X_POSIX 99 read 20 2064 632 724.3623 724.3624 [ 40] + X_POSIX 99 read 21 136 544 724.3624 724.3624 [ 40] + X_POSIX 99 read 22 680 512 724.3624 724.3624 [ 40] + X_POSIX 99 read 23 1504 328 724.3723 724.3727 [ 40] + X_POSIX 99 read 24 0 8 726.4745 726.6192 [ 40] + X_POSIX 99 read 25 0 9 726.6222 726.6222 [ 40] + X_POSIX 99 read 26 9 87 726.6225 726.6225 [ 40] + X_POSIX 99 read 27 96 512 726.6282 726.6282 [ 40] + X_POSIX 99 read 28 2064 632 726.6306 726.6306 [ 40] + X_POSIX 99 read 29 136 544 726.6323 726.6323 [ 40] + X_POSIX 99 read 30 680 512 726.6332 726.6332 [ 40] + X_POSIX 99 read 31 1504 328 726.6566 726.6566 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 99, hostname: nid00538 +# DXT, write_count: 24, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 99 write 0 6643777536 67108864 1498.2880 1498.4554 [139] + X_POSIX 99 write 1 15233712128 67108864 1499.1680 1499.3246 [139] + X_POSIX 99 write 2 23823646720 67108864 1499.4356 1499.5723 [139] + X_POSIX 99 write 3 32413581312 67108864 1502.0556 1502.1673 [139] + X_POSIX 99 write 4 41003515904 67108864 1502.5401 1502.7000 [139] + X_POSIX 99 write 5 49593450496 67108864 1503.1060 1503.2896 [139] + X_POSIX 99 write 6 58183385088 67108864 1503.4935 1503.7021 [139] + X_POSIX 99 write 7 66773319680 67108864 1503.7280 1503.9787 [139] + X_POSIX 99 write 8 75363254272 67108864 1504.1232 1504.3110 [139] + X_POSIX 99 write 9 83953188864 67108864 1504.3509 1504.5448 [139] + X_POSIX 99 write 10 92543123456 67108864 1504.7395 1504.8723 [139] + X_POSIX 99 write 11 101133058048 67108864 1504.8983 1505.1496 [139] + X_POSIX 99 write 12 109722992640 67108864 1505.2038 1505.3861 [139] + X_POSIX 99 write 13 118312927232 67108864 1505.4398 1505.6306 [139] + X_POSIX 99 write 14 126902861824 67108864 1505.8213 1505.9581 [139] + X_POSIX 99 write 15 135492796416 67108864 1506.1090 1506.2707 [139] + X_POSIX 99 write 16 144082731008 67108864 1506.3251 1506.4860 [139] + X_POSIX 99 write 17 152672665600 67108864 1506.5282 1506.7395 [139] + X_POSIX 99 write 18 161262600192 67108864 1506.8114 1506.9782 [139] + X_POSIX 99 write 19 169852534784 67108864 1506.9970 1507.2815 [139] + X_POSIX 99 write 20 178442469376 67108864 1507.3416 1507.5358 [139] + X_POSIX 99 write 21 187032403968 67108864 1507.5598 1507.7861 [139] + X_POSIX 99 write 22 195622338560 67108864 1507.8165 1508.0197 [139] + X_POSIX 99 write 23 204212273152 67108864 1508.0366 1508.2898 [139] + X_POSIX 99 read 0 0 8 1497.1299 1497.2508 [209] + X_POSIX 99 read 1 0 9 1497.2511 1497.2513 [209] + X_POSIX 99 read 2 9 87 1497.2513 1497.2514 [209] + X_POSIX 99 read 3 96 512 1497.2515 1497.2515 [209] + X_POSIX 99 read 4 2064 632 1497.2516 1497.2516 [209] + X_POSIX 99 read 5 136 544 1497.2517 1497.2517 [209] + X_POSIX 99 read 6 680 512 1497.2517 1497.2517 [209] + X_POSIX 99 read 7 1504 328 1497.2670 1497.2673 [209] + X_POSIX 99 read 8 0 8 1497.9568 1497.9758 [209] + X_POSIX 99 read 9 0 9 1497.9789 1497.9789 [209] + X_POSIX 99 read 10 9 87 1497.9792 1497.9792 [209] + X_POSIX 99 read 11 96 512 1497.9848 1497.9848 [209] + X_POSIX 99 read 12 2064 632 1497.9871 1497.9872 [209] + X_POSIX 99 read 13 136 544 1497.9889 1497.9889 [209] + X_POSIX 99 read 14 680 512 1497.9898 1497.9898 [209] + X_POSIX 99 read 15 1504 328 1498.0136 1498.0136 [209] + X_POSIX 99 read 16 0 8 1498.7101 1498.7974 [209] + X_POSIX 99 read 17 0 9 1498.7974 1498.7974 [209] + X_POSIX 99 read 18 9 87 1498.7974 1498.7975 [209] + X_POSIX 99 read 19 96 512 1498.7975 1498.7975 [209] + X_POSIX 99 read 20 2064 632 1498.7975 1498.7976 [209] + X_POSIX 99 read 21 136 544 1498.7976 1498.7976 [209] + X_POSIX 99 read 22 680 512 1498.7976 1498.7976 [209] + X_POSIX 99 read 23 1504 328 1498.8199 1498.8202 [209] + X_POSIX 99 read 24 0 8 1500.5998 1500.6965 [209] + X_POSIX 99 read 25 0 9 1500.6997 1500.6997 [209] + X_POSIX 99 read 26 9 87 1500.7000 1500.7000 [209] + X_POSIX 99 read 27 96 512 1500.7059 1500.7059 [209] + X_POSIX 99 read 28 2064 632 1500.7083 1500.7083 [209] + X_POSIX 99 read 29 136 544 1500.7101 1500.7101 [209] + X_POSIX 99 read 30 680 512 1500.7110 1500.7110 [209] + X_POSIX 99 read 31 1504 328 1500.7340 1500.7341 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 100, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 100 read 0 0 342 1.7060 1.7089 [ 33] + X_POSIX 100 read 1 342 0 1.7269 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 100, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 100 read 0 0 8 722.4026 722.5010 [ 40] + X_POSIX 100 read 1 0 9 722.5042 722.5042 [ 40] + X_POSIX 100 read 2 9 87 722.5045 722.5046 [ 40] + X_POSIX 100 read 3 96 512 722.5102 722.5102 [ 40] + X_POSIX 100 read 4 2064 632 722.5126 722.5126 [ 40] + X_POSIX 100 read 5 136 544 722.5141 722.5142 [ 40] + X_POSIX 100 read 6 680 512 722.5148 722.5148 [ 40] + X_POSIX 100 read 7 1504 328 722.5567 722.5567 [ 40] + X_POSIX 100 read 8 0 8 723.3711 723.3927 [ 40] + X_POSIX 100 read 9 0 9 723.3946 723.3946 [ 40] + X_POSIX 100 read 10 9 87 723.3949 723.3949 [ 40] + X_POSIX 100 read 11 96 512 723.4005 723.4005 [ 40] + X_POSIX 100 read 12 2064 632 723.4029 723.4029 [ 40] + X_POSIX 100 read 13 136 544 723.4047 723.4047 [ 40] + X_POSIX 100 read 14 680 512 723.4056 723.4056 [ 40] + X_POSIX 100 read 15 1504 328 723.4528 723.4529 [ 40] + X_POSIX 100 read 16 0 8 724.2698 724.3661 [ 40] + X_POSIX 100 read 17 0 9 724.3661 724.3661 [ 40] + X_POSIX 100 read 18 9 87 724.3661 724.3662 [ 40] + X_POSIX 100 read 19 96 512 724.3662 724.3662 [ 40] + X_POSIX 100 read 20 2064 632 724.3662 724.3662 [ 40] + X_POSIX 100 read 21 136 544 724.3662 724.3663 [ 40] + X_POSIX 100 read 22 680 512 724.3663 724.3663 [ 40] + X_POSIX 100 read 23 1504 328 724.3722 724.3726 [ 40] + X_POSIX 100 read 24 0 8 726.4743 726.6191 [ 40] + X_POSIX 100 read 25 0 9 726.6221 726.6222 [ 40] + X_POSIX 100 read 26 9 87 726.6224 726.6225 [ 40] + X_POSIX 100 read 27 96 512 726.6281 726.6282 [ 40] + X_POSIX 100 read 28 2064 632 726.6305 726.6306 [ 40] + X_POSIX 100 read 29 136 544 726.6323 726.6323 [ 40] + X_POSIX 100 read 30 680 512 726.6332 726.6332 [ 40] + X_POSIX 100 read 31 1504 328 726.6565 726.6566 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 100, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 100 read 0 0 8 1497.1298 1497.2500 [209] + X_POSIX 100 read 1 0 9 1497.2500 1497.2501 [209] + X_POSIX 100 read 2 9 87 1497.2501 1497.2501 [209] + X_POSIX 100 read 3 96 512 1497.2501 1497.2502 [209] + X_POSIX 100 read 4 2064 632 1497.2502 1497.2502 [209] + X_POSIX 100 read 5 136 544 1497.2503 1497.2503 [209] + X_POSIX 100 read 6 680 512 1497.2503 1497.2504 [209] + X_POSIX 100 read 7 1504 328 1497.2668 1497.2672 [209] + X_POSIX 100 read 8 0 8 1497.9565 1497.9756 [209] + X_POSIX 100 read 9 0 9 1497.9786 1497.9786 [209] + X_POSIX 100 read 10 9 87 1497.9789 1497.9789 [209] + X_POSIX 100 read 11 96 512 1497.9845 1497.9846 [209] + X_POSIX 100 read 12 2064 632 1497.9869 1497.9870 [209] + X_POSIX 100 read 13 136 544 1497.9887 1497.9887 [209] + X_POSIX 100 read 14 680 512 1497.9896 1497.9896 [209] + X_POSIX 100 read 15 1504 328 1498.0137 1498.0137 [209] + X_POSIX 100 read 16 0 8 1498.7100 1498.7975 [209] + X_POSIX 100 read 17 0 9 1498.7975 1498.7975 [209] + X_POSIX 100 read 18 9 87 1498.7975 1498.7976 [209] + X_POSIX 100 read 19 96 512 1498.7976 1498.7976 [209] + X_POSIX 100 read 20 2064 632 1498.7976 1498.7976 [209] + X_POSIX 100 read 21 136 544 1498.7976 1498.7977 [209] + X_POSIX 100 read 22 680 512 1498.7977 1498.7977 [209] + X_POSIX 100 read 23 1504 328 1498.8198 1498.8201 [209] + X_POSIX 100 read 24 0 8 1500.5999 1500.6969 [209] + X_POSIX 100 read 25 0 9 1500.7003 1500.7003 [209] + X_POSIX 100 read 26 9 87 1500.7006 1500.7006 [209] + X_POSIX 100 read 27 96 512 1500.7065 1500.7065 [209] + X_POSIX 100 read 28 2064 632 1500.7089 1500.7089 [209] + X_POSIX 100 read 29 136 544 1500.7107 1500.7108 [209] + X_POSIX 100 read 30 680 512 1500.7116 1500.7117 [209] + X_POSIX 100 read 31 1504 328 1500.7340 1500.7341 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 101, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 101 read 0 0 342 1.7061 1.7092 [ 33] + X_POSIX 101 read 1 342 0 1.7269 1.7271 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 101, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 101 read 0 0 8 722.4027 722.4983 [ 40] + X_POSIX 101 read 1 0 9 722.4994 722.4994 [ 40] + X_POSIX 101 read 2 9 87 722.4995 722.4995 [ 40] + X_POSIX 101 read 3 96 512 722.5016 722.5016 [ 40] + X_POSIX 101 read 4 2064 632 722.5035 722.5035 [ 40] + X_POSIX 101 read 5 136 544 722.5053 722.5053 [ 40] + X_POSIX 101 read 6 680 512 722.5062 722.5062 [ 40] + X_POSIX 101 read 7 1504 328 722.5567 722.5568 [ 40] + X_POSIX 101 read 8 0 8 723.3715 723.3931 [ 40] + X_POSIX 101 read 9 0 9 723.3962 723.3963 [ 40] + X_POSIX 101 read 10 9 87 723.3965 723.3966 [ 40] + X_POSIX 101 read 11 96 512 723.4021 723.4022 [ 40] + X_POSIX 101 read 12 2064 632 723.4044 723.4045 [ 40] + X_POSIX 101 read 13 136 544 723.4062 723.4062 [ 40] + X_POSIX 101 read 14 680 512 723.4071 723.4071 [ 40] + X_POSIX 101 read 15 1504 328 723.4530 723.4532 [ 40] + X_POSIX 101 read 16 0 8 724.2699 724.3679 [ 40] + X_POSIX 101 read 17 0 9 724.3679 724.3679 [ 40] + X_POSIX 101 read 18 9 87 724.3679 724.3679 [ 40] + X_POSIX 101 read 19 96 512 724.3679 724.3680 [ 40] + X_POSIX 101 read 20 2064 632 724.3680 724.3680 [ 40] + X_POSIX 101 read 21 136 544 724.3680 724.3680 [ 40] + X_POSIX 101 read 22 680 512 724.3680 724.3681 [ 40] + X_POSIX 101 read 23 1504 328 724.3723 724.3727 [ 40] + X_POSIX 101 read 24 0 8 726.4746 726.6195 [ 40] + X_POSIX 101 read 25 0 9 726.6228 726.6229 [ 40] + X_POSIX 101 read 26 9 87 726.6232 726.6232 [ 40] + X_POSIX 101 read 27 96 512 726.6288 726.6289 [ 40] + X_POSIX 101 read 28 2064 632 726.6312 726.6313 [ 40] + X_POSIX 101 read 29 136 544 726.6330 726.6330 [ 40] + X_POSIX 101 read 30 680 512 726.6339 726.6340 [ 40] + X_POSIX 101 read 31 1504 328 726.6568 726.6569 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 101, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 101 read 0 0 8 1497.1299 1497.2505 [209] + X_POSIX 101 read 1 0 9 1497.2508 1497.2509 [209] + X_POSIX 101 read 2 9 87 1497.2509 1497.2510 [209] + X_POSIX 101 read 3 96 512 1497.2511 1497.2513 [209] + X_POSIX 101 read 4 2064 632 1497.2513 1497.2515 [209] + X_POSIX 101 read 5 136 544 1497.2515 1497.2516 [209] + X_POSIX 101 read 6 680 512 1497.2516 1497.2516 [209] + X_POSIX 101 read 7 1504 328 1497.2669 1497.2673 [209] + X_POSIX 101 read 8 0 8 1497.9567 1497.9760 [209] + X_POSIX 101 read 9 0 9 1497.9792 1497.9792 [209] + X_POSIX 101 read 10 9 87 1497.9795 1497.9795 [209] + X_POSIX 101 read 11 96 512 1497.9851 1497.9851 [209] + X_POSIX 101 read 12 2064 632 1497.9874 1497.9875 [209] + X_POSIX 101 read 13 136 544 1497.9892 1497.9892 [209] + X_POSIX 101 read 14 680 512 1497.9901 1497.9901 [209] + X_POSIX 101 read 15 1504 328 1498.0137 1498.0137 [209] + X_POSIX 101 read 16 0 8 1498.7101 1498.7968 [209] + X_POSIX 101 read 17 0 9 1498.7968 1498.7968 [209] + X_POSIX 101 read 18 9 87 1498.7968 1498.7969 [209] + X_POSIX 101 read 19 96 512 1498.7969 1498.7969 [209] + X_POSIX 101 read 20 2064 632 1498.7969 1498.7969 [209] + X_POSIX 101 read 21 136 544 1498.7969 1498.7969 [209] + X_POSIX 101 read 22 680 512 1498.7969 1498.7970 [209] + X_POSIX 101 read 23 1504 328 1498.8199 1498.8202 [209] + X_POSIX 101 read 24 0 8 1500.6000 1500.6966 [209] + X_POSIX 101 read 25 0 9 1500.6997 1500.6997 [209] + X_POSIX 101 read 26 9 87 1500.7000 1500.7001 [209] + X_POSIX 101 read 27 96 512 1500.7058 1500.7059 [209] + X_POSIX 101 read 28 2064 632 1500.7083 1500.7083 [209] + X_POSIX 101 read 29 136 544 1500.7101 1500.7101 [209] + X_POSIX 101 read 30 680 512 1500.7110 1500.7110 [209] + X_POSIX 101 read 31 1504 328 1500.7340 1500.7341 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 102, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 102 read 0 0 342 1.7060 1.7092 [ 33] + X_POSIX 102 read 1 342 0 1.7269 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 102, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 102 read 0 0 8 722.4026 722.5011 [ 40] + X_POSIX 102 read 1 0 9 722.5043 722.5044 [ 40] + X_POSIX 102 read 2 9 87 722.5047 722.5047 [ 40] + X_POSIX 102 read 3 96 512 722.5103 722.5103 [ 40] + X_POSIX 102 read 4 2064 632 722.5127 722.5127 [ 40] + X_POSIX 102 read 5 136 544 722.5142 722.5143 [ 40] + X_POSIX 102 read 6 680 512 722.5148 722.5149 [ 40] + X_POSIX 102 read 7 1504 328 722.5567 722.5567 [ 40] + X_POSIX 102 read 8 0 8 723.3715 723.3929 [ 40] + X_POSIX 102 read 9 0 9 723.3959 723.3959 [ 40] + X_POSIX 102 read 10 9 87 723.3962 723.3962 [ 40] + X_POSIX 102 read 11 96 512 723.4018 723.4018 [ 40] + X_POSIX 102 read 12 2064 632 723.4042 723.4042 [ 40] + X_POSIX 102 read 13 136 544 723.4060 723.4060 [ 40] + X_POSIX 102 read 14 680 512 723.4068 723.4069 [ 40] + X_POSIX 102 read 15 1504 328 723.4529 723.4531 [ 40] + X_POSIX 102 read 16 0 8 724.2699 724.3654 [ 40] + X_POSIX 102 read 17 0 9 724.3654 724.3655 [ 40] + X_POSIX 102 read 18 9 87 724.3655 724.3655 [ 40] + X_POSIX 102 read 19 96 512 724.3655 724.3655 [ 40] + X_POSIX 102 read 20 2064 632 724.3655 724.3656 [ 40] + X_POSIX 102 read 21 136 544 724.3656 724.3656 [ 40] + X_POSIX 102 read 22 680 512 724.3656 724.3656 [ 40] + X_POSIX 102 read 23 1504 328 724.3723 724.3726 [ 40] + X_POSIX 102 read 24 0 8 726.4746 726.6193 [ 40] + X_POSIX 102 read 25 0 9 726.6226 726.6226 [ 40] + X_POSIX 102 read 26 9 87 726.6229 726.6229 [ 40] + X_POSIX 102 read 27 96 512 726.6286 726.6286 [ 40] + X_POSIX 102 read 28 2064 632 726.6310 726.6310 [ 40] + X_POSIX 102 read 29 136 544 726.6328 726.6328 [ 40] + X_POSIX 102 read 30 680 512 726.6337 726.6337 [ 40] + X_POSIX 102 read 31 1504 328 726.6566 726.6566 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 102, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 102 read 0 0 8 1497.1299 1497.2501 [209] + X_POSIX 102 read 1 0 9 1497.2501 1497.2501 [209] + X_POSIX 102 read 2 9 87 1497.2501 1497.2502 [209] + X_POSIX 102 read 3 96 512 1497.2502 1497.2503 [209] + X_POSIX 102 read 4 2064 632 1497.2503 1497.2504 [209] + X_POSIX 102 read 5 136 544 1497.2504 1497.2504 [209] + X_POSIX 102 read 6 680 512 1497.2504 1497.2505 [209] + X_POSIX 102 read 7 1504 328 1497.2669 1497.2672 [209] + X_POSIX 102 read 8 0 8 1497.9567 1497.9757 [209] + X_POSIX 102 read 9 0 9 1497.9787 1497.9788 [209] + X_POSIX 102 read 10 9 87 1497.9791 1497.9791 [209] + X_POSIX 102 read 11 96 512 1497.9847 1497.9847 [209] + X_POSIX 102 read 12 2064 632 1497.9871 1497.9871 [209] + X_POSIX 102 read 13 136 544 1497.9888 1497.9888 [209] + X_POSIX 102 read 14 680 512 1497.9897 1497.9897 [209] + X_POSIX 102 read 15 1504 328 1498.0139 1498.0139 [209] + X_POSIX 102 read 16 0 8 1498.7100 1498.7965 [209] + X_POSIX 102 read 17 0 9 1498.7965 1498.7966 [209] + X_POSIX 102 read 18 9 87 1498.7966 1498.7966 [209] + X_POSIX 102 read 19 96 512 1498.7966 1498.7966 [209] + X_POSIX 102 read 20 2064 632 1498.7966 1498.7967 [209] + X_POSIX 102 read 21 136 544 1498.7967 1498.7967 [209] + X_POSIX 102 read 22 680 512 1498.7967 1498.7968 [209] + X_POSIX 102 read 23 1504 328 1498.8198 1498.8202 [209] + X_POSIX 102 read 24 0 8 1500.5998 1500.6963 [209] + X_POSIX 102 read 25 0 9 1500.6990 1500.6991 [209] + X_POSIX 102 read 26 9 87 1500.6994 1500.6994 [209] + X_POSIX 102 read 27 96 512 1500.7052 1500.7052 [209] + X_POSIX 102 read 28 2064 632 1500.7077 1500.7077 [209] + X_POSIX 102 read 29 136 544 1500.7095 1500.7095 [209] + X_POSIX 102 read 30 680 512 1500.7104 1500.7104 [209] + X_POSIX 102 read 31 1504 328 1500.7341 1500.7341 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 103, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 103 read 0 0 342 1.7059 1.7088 [ 33] + X_POSIX 103 read 1 342 0 1.7268 1.7271 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 103, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 103 read 0 0 8 722.4026 722.5010 [ 40] + X_POSIX 103 read 1 0 9 722.5043 722.5043 [ 40] + X_POSIX 103 read 2 9 87 722.5046 722.5046 [ 40] + X_POSIX 103 read 3 96 512 722.5105 722.5105 [ 40] + X_POSIX 103 read 4 2064 632 722.5129 722.5129 [ 40] + X_POSIX 103 read 5 136 544 722.5144 722.5144 [ 40] + X_POSIX 103 read 6 680 512 722.5149 722.5150 [ 40] + X_POSIX 103 read 7 1504 328 722.5567 722.5567 [ 40] + X_POSIX 103 read 8 0 8 723.3687 723.3926 [ 40] + X_POSIX 103 read 9 0 9 723.3935 723.3936 [ 40] + X_POSIX 103 read 10 9 87 723.3939 723.3939 [ 40] + X_POSIX 103 read 11 96 512 723.3995 723.3995 [ 40] + X_POSIX 103 read 12 2064 632 723.4018 723.4019 [ 40] + X_POSIX 103 read 13 136 544 723.4036 723.4036 [ 40] + X_POSIX 103 read 14 680 512 723.4045 723.4045 [ 40] + X_POSIX 103 read 15 1504 328 723.4529 723.4531 [ 40] + X_POSIX 103 read 16 0 8 724.2698 724.3678 [ 40] + X_POSIX 103 read 17 0 9 724.3678 724.3678 [ 40] + X_POSIX 103 read 18 9 87 724.3678 724.3678 [ 40] + X_POSIX 103 read 19 96 512 724.3678 724.3679 [ 40] + X_POSIX 103 read 20 2064 632 724.3679 724.3679 [ 40] + X_POSIX 103 read 21 136 544 724.3679 724.3679 [ 40] + X_POSIX 103 read 22 680 512 724.3679 724.3679 [ 40] + X_POSIX 103 read 23 1504 328 724.3722 724.3726 [ 40] + X_POSIX 103 read 24 0 8 726.4743 726.6192 [ 40] + X_POSIX 103 read 25 0 9 726.6223 726.6224 [ 40] + X_POSIX 103 read 26 9 87 726.6227 726.6227 [ 40] + X_POSIX 103 read 27 96 512 726.6283 726.6283 [ 40] + X_POSIX 103 read 28 2064 632 726.6307 726.6307 [ 40] + X_POSIX 103 read 29 136 544 726.6324 726.6325 [ 40] + X_POSIX 103 read 30 680 512 726.6333 726.6334 [ 40] + X_POSIX 103 read 31 1504 328 726.6567 726.6568 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 103, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 103 read 0 0 8 1497.1296 1497.2508 [209] + X_POSIX 103 read 1 0 9 1497.2511 1497.2513 [209] + X_POSIX 103 read 2 9 87 1497.2513 1497.2514 [209] + X_POSIX 103 read 3 96 512 1497.2514 1497.2515 [209] + X_POSIX 103 read 4 2064 632 1497.2515 1497.2516 [209] + X_POSIX 103 read 5 136 544 1497.2516 1497.2516 [209] + X_POSIX 103 read 6 680 512 1497.2516 1497.2516 [209] + X_POSIX 103 read 7 1504 328 1497.2669 1497.2672 [209] + X_POSIX 103 read 8 0 8 1497.9567 1497.9758 [209] + X_POSIX 103 read 9 0 9 1497.9789 1497.9790 [209] + X_POSIX 103 read 10 9 87 1497.9793 1497.9793 [209] + X_POSIX 103 read 11 96 512 1497.9849 1497.9849 [209] + X_POSIX 103 read 12 2064 632 1497.9872 1497.9873 [209] + X_POSIX 103 read 13 136 544 1497.9890 1497.9890 [209] + X_POSIX 103 read 14 680 512 1497.9899 1497.9899 [209] + X_POSIX 103 read 15 1504 328 1498.0139 1498.0139 [209] + X_POSIX 103 read 16 0 8 1498.7100 1498.7953 [209] + X_POSIX 103 read 17 0 9 1498.7953 1498.7954 [209] + X_POSIX 103 read 18 9 87 1498.7954 1498.7954 [209] + X_POSIX 103 read 19 96 512 1498.7954 1498.7954 [209] + X_POSIX 103 read 20 2064 632 1498.7955 1498.7955 [209] + X_POSIX 103 read 21 136 544 1498.7955 1498.7955 [209] + X_POSIX 103 read 22 680 512 1498.7955 1498.7955 [209] + X_POSIX 103 read 23 1504 328 1498.8198 1498.8201 [209] + X_POSIX 103 read 24 0 8 1500.6000 1500.6968 [209] + X_POSIX 103 read 25 0 9 1500.7001 1500.7002 [209] + X_POSIX 103 read 26 9 87 1500.7005 1500.7005 [209] + X_POSIX 103 read 27 96 512 1500.7063 1500.7064 [209] + X_POSIX 103 read 28 2064 632 1500.7088 1500.7088 [209] + X_POSIX 103 read 29 136 544 1500.7106 1500.7106 [209] + X_POSIX 103 read 30 680 512 1500.7115 1500.7115 [209] + X_POSIX 103 read 31 1504 328 1500.7342 1500.7343 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 104, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 104 read 0 0 342 1.7064 1.7097 [ 33] + X_POSIX 104 read 1 342 0 1.7271 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 104, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 104 read 0 0 8 722.4029 722.4987 [ 40] + X_POSIX 104 read 1 0 9 722.4999 722.4999 [ 40] + X_POSIX 104 read 2 9 87 722.5000 722.5000 [ 40] + X_POSIX 104 read 3 96 512 722.5025 722.5025 [ 40] + X_POSIX 104 read 4 2064 632 722.5047 722.5048 [ 40] + X_POSIX 104 read 5 136 544 722.5065 722.5065 [ 40] + X_POSIX 104 read 6 680 512 722.5074 722.5075 [ 40] + X_POSIX 104 read 7 1504 328 722.5570 722.5570 [ 40] + X_POSIX 104 read 8 0 8 723.3719 723.3931 [ 40] + X_POSIX 104 read 9 0 9 723.3951 723.3952 [ 40] + X_POSIX 104 read 10 9 87 723.3955 723.3955 [ 40] + X_POSIX 104 read 11 96 512 723.4010 723.4011 [ 40] + X_POSIX 104 read 12 2064 632 723.4034 723.4035 [ 40] + X_POSIX 104 read 13 136 544 723.4052 723.4052 [ 40] + X_POSIX 104 read 14 680 512 723.4061 723.4061 [ 40] + X_POSIX 104 read 15 1504 328 723.4531 723.4531 [ 40] + X_POSIX 104 read 16 0 8 724.2702 724.3639 [ 40] + X_POSIX 104 read 17 0 9 724.3639 724.3640 [ 40] + X_POSIX 104 read 18 9 87 724.3640 724.3640 [ 40] + X_POSIX 104 read 19 96 512 724.3640 724.3640 [ 40] + X_POSIX 104 read 20 2064 632 724.3640 724.3641 [ 40] + X_POSIX 104 read 21 136 544 724.3641 724.3641 [ 40] + X_POSIX 104 read 22 680 512 724.3641 724.3641 [ 40] + X_POSIX 104 read 23 1504 328 724.3726 724.3729 [ 40] + X_POSIX 104 read 24 0 8 726.4748 726.6192 [ 40] + X_POSIX 104 read 25 0 9 726.6195 726.6196 [ 40] + X_POSIX 104 read 26 9 87 726.6198 726.6198 [ 40] + X_POSIX 104 read 27 96 512 726.6254 726.6254 [ 40] + X_POSIX 104 read 28 2064 632 726.6278 726.6279 [ 40] + X_POSIX 104 read 29 136 544 726.6297 726.6297 [ 40] + X_POSIX 104 read 30 680 512 726.6306 726.6306 [ 40] + X_POSIX 104 read 31 1504 328 726.6569 726.6569 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 104, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 104 read 0 0 8 1497.1301 1497.2507 [209] + X_POSIX 104 read 1 0 9 1497.2508 1497.2509 [209] + X_POSIX 104 read 2 9 87 1497.2509 1497.2510 [209] + X_POSIX 104 read 3 96 512 1497.2511 1497.2512 [209] + X_POSIX 104 read 4 2064 632 1497.2513 1497.2514 [209] + X_POSIX 104 read 5 136 544 1497.2514 1497.2515 [209] + X_POSIX 104 read 6 680 512 1497.2516 1497.2517 [209] + X_POSIX 104 read 7 1504 328 1497.2672 1497.2675 [209] + X_POSIX 104 read 8 0 8 1497.9569 1497.9761 [209] + X_POSIX 104 read 9 0 9 1497.9791 1497.9792 [209] + X_POSIX 104 read 10 9 87 1497.9795 1497.9795 [209] + X_POSIX 104 read 11 96 512 1497.9851 1497.9851 [209] + X_POSIX 104 read 12 2064 632 1497.9875 1497.9875 [209] + X_POSIX 104 read 13 136 544 1497.9892 1497.9893 [209] + X_POSIX 104 read 14 680 512 1497.9901 1497.9901 [209] + X_POSIX 104 read 15 1504 328 1498.0140 1498.0140 [209] + X_POSIX 104 read 16 0 8 1498.7104 1498.7952 [209] + X_POSIX 104 read 17 0 9 1498.7953 1498.7953 [209] + X_POSIX 104 read 18 9 87 1498.7953 1498.7954 [209] + X_POSIX 104 read 19 96 512 1498.7954 1498.7954 [209] + X_POSIX 104 read 20 2064 632 1498.7954 1498.7955 [209] + X_POSIX 104 read 21 136 544 1498.7955 1498.7956 [209] + X_POSIX 104 read 22 680 512 1498.7956 1498.7956 [209] + X_POSIX 104 read 23 1504 328 1498.8201 1498.8204 [209] + X_POSIX 104 read 24 0 8 1500.6003 1500.6972 [209] + X_POSIX 104 read 25 0 9 1500.7006 1500.7006 [209] + X_POSIX 104 read 26 9 87 1500.7009 1500.7010 [209] + X_POSIX 104 read 27 96 512 1500.7068 1500.7069 [209] + X_POSIX 104 read 28 2064 632 1500.7093 1500.7093 [209] + X_POSIX 104 read 29 136 544 1500.7111 1500.7111 [209] + X_POSIX 104 read 30 680 512 1500.7120 1500.7120 [209] + X_POSIX 104 read 31 1504 328 1500.7344 1500.7344 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 105, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 105 read 0 0 342 1.7060 1.7087 [ 33] + X_POSIX 105 read 1 342 0 1.7269 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 105, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 105 read 0 0 8 722.4026 722.5011 [ 40] + X_POSIX 105 read 1 0 9 722.5044 722.5044 [ 40] + X_POSIX 105 read 2 9 87 722.5047 722.5048 [ 40] + X_POSIX 105 read 3 96 512 722.5104 722.5104 [ 40] + X_POSIX 105 read 4 2064 632 722.5128 722.5128 [ 40] + X_POSIX 105 read 5 136 544 722.5143 722.5143 [ 40] + X_POSIX 105 read 6 680 512 722.5149 722.5149 [ 40] + X_POSIX 105 read 7 1504 328 722.5569 722.5569 [ 40] + X_POSIX 105 read 8 0 8 723.3717 723.3934 [ 40] + X_POSIX 105 read 9 0 9 723.3966 723.3966 [ 40] + X_POSIX 105 read 10 9 87 723.3969 723.3969 [ 40] + X_POSIX 105 read 11 96 512 723.4025 723.4026 [ 40] + X_POSIX 105 read 12 2064 632 723.4048 723.4049 [ 40] + X_POSIX 105 read 13 136 544 723.4066 723.4067 [ 40] + X_POSIX 105 read 14 680 512 723.4075 723.4075 [ 40] + X_POSIX 105 read 15 1504 328 723.4527 723.4528 [ 40] + X_POSIX 105 read 16 0 8 724.2699 724.3611 [ 40] + X_POSIX 105 read 17 0 9 724.3611 724.3612 [ 40] + X_POSIX 105 read 18 9 87 724.3612 724.3612 [ 40] + X_POSIX 105 read 19 96 512 724.3612 724.3612 [ 40] + X_POSIX 105 read 20 2064 632 724.3612 724.3612 [ 40] + X_POSIX 105 read 21 136 544 724.3612 724.3613 [ 40] + X_POSIX 105 read 22 680 512 724.3613 724.3613 [ 40] + X_POSIX 105 read 23 1504 328 724.3723 724.3726 [ 40] + X_POSIX 105 read 24 0 8 726.4745 726.6195 [ 40] + X_POSIX 105 read 25 0 9 726.6228 726.6228 [ 40] + X_POSIX 105 read 26 9 87 726.6231 726.6232 [ 40] + X_POSIX 105 read 27 96 512 726.6291 726.6291 [ 40] + X_POSIX 105 read 28 2064 632 726.6314 726.6315 [ 40] + X_POSIX 105 read 29 136 544 726.6332 726.6333 [ 40] + X_POSIX 105 read 30 680 512 726.6342 726.6342 [ 40] + X_POSIX 105 read 31 1504 328 726.6567 726.6568 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 105, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 105 read 0 0 8 1497.1298 1497.2508 [209] + X_POSIX 105 read 1 0 9 1497.2511 1497.2513 [209] + X_POSIX 105 read 2 9 87 1497.2513 1497.2514 [209] + X_POSIX 105 read 3 96 512 1497.2514 1497.2515 [209] + X_POSIX 105 read 4 2064 632 1497.2515 1497.2516 [209] + X_POSIX 105 read 5 136 544 1497.2516 1497.2516 [209] + X_POSIX 105 read 6 680 512 1497.2516 1497.2517 [209] + X_POSIX 105 read 7 1504 328 1497.2669 1497.2672 [209] + X_POSIX 105 read 8 0 8 1497.9565 1497.9754 [209] + X_POSIX 105 read 9 0 9 1497.9756 1497.9756 [209] + X_POSIX 105 read 10 9 87 1497.9758 1497.9758 [209] + X_POSIX 105 read 11 96 512 1497.9812 1497.9812 [209] + X_POSIX 105 read 12 2064 632 1497.9836 1497.9836 [209] + X_POSIX 105 read 13 136 544 1497.9854 1497.9854 [209] + X_POSIX 105 read 14 680 512 1497.9863 1497.9863 [209] + X_POSIX 105 read 15 1504 328 1498.0135 1498.0136 [209] + X_POSIX 105 read 16 0 8 1498.7100 1498.7948 [209] + X_POSIX 105 read 17 0 9 1498.7949 1498.7949 [209] + X_POSIX 105 read 18 9 87 1498.7949 1498.7949 [209] + X_POSIX 105 read 19 96 512 1498.7949 1498.7950 [209] + X_POSIX 105 read 20 2064 632 1498.7950 1498.7950 [209] + X_POSIX 105 read 21 136 544 1498.7951 1498.7951 [209] + X_POSIX 105 read 22 680 512 1498.7951 1498.7952 [209] + X_POSIX 105 read 23 1504 328 1498.8198 1498.8201 [209] + X_POSIX 105 read 24 0 8 1500.6000 1500.6968 [209] + X_POSIX 105 read 25 0 9 1500.7001 1500.7001 [209] + X_POSIX 105 read 26 9 87 1500.7004 1500.7004 [209] + X_POSIX 105 read 27 96 512 1500.7063 1500.7063 [209] + X_POSIX 105 read 28 2064 632 1500.7087 1500.7087 [209] + X_POSIX 105 read 29 136 544 1500.7105 1500.7106 [209] + X_POSIX 105 read 30 680 512 1500.7114 1500.7115 [209] + X_POSIX 105 read 31 1504 328 1500.7340 1500.7340 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 106, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 106 read 0 0 342 1.7060 1.7093 [ 33] + X_POSIX 106 read 1 342 0 1.7269 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 106, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 106 read 0 0 8 722.4026 722.5026 [ 40] + X_POSIX 106 read 1 0 9 722.5064 722.5064 [ 40] + X_POSIX 106 read 2 9 87 722.5067 722.5067 [ 40] + X_POSIX 106 read 3 96 512 722.5124 722.5124 [ 40] + X_POSIX 106 read 4 2064 632 722.5144 722.5145 [ 40] + X_POSIX 106 read 5 136 544 722.5154 722.5155 [ 40] + X_POSIX 106 read 6 680 512 722.5159 722.5159 [ 40] + X_POSIX 106 read 7 1504 328 722.5566 722.5566 [ 40] + X_POSIX 106 read 8 0 8 723.3717 723.3930 [ 40] + X_POSIX 106 read 9 0 9 723.3961 723.3961 [ 40] + X_POSIX 106 read 10 9 87 723.3964 723.3964 [ 40] + X_POSIX 106 read 11 96 512 723.4020 723.4020 [ 40] + X_POSIX 106 read 12 2064 632 723.4043 723.4044 [ 40] + X_POSIX 106 read 13 136 544 723.4061 723.4061 [ 40] + X_POSIX 106 read 14 680 512 723.4073 723.4073 [ 40] + X_POSIX 106 read 15 1504 328 723.4528 723.4528 [ 40] + X_POSIX 106 read 16 0 8 724.2699 724.3570 [ 40] + X_POSIX 106 read 17 0 9 724.3570 724.3571 [ 40] + X_POSIX 106 read 18 9 87 724.3571 724.3572 [ 40] + X_POSIX 106 read 19 96 512 724.3572 724.3572 [ 40] + X_POSIX 106 read 20 2064 632 724.3572 724.3573 [ 40] + X_POSIX 106 read 21 136 544 724.3573 724.3574 [ 40] + X_POSIX 106 read 22 680 512 724.3574 724.3575 [ 40] + X_POSIX 106 read 23 1504 328 724.3723 724.3725 [ 40] + X_POSIX 106 read 24 0 8 726.4744 726.6190 [ 40] + X_POSIX 106 read 25 0 9 726.6218 726.6218 [ 40] + X_POSIX 106 read 26 9 87 726.6221 726.6221 [ 40] + X_POSIX 106 read 27 96 512 726.6278 726.6278 [ 40] + X_POSIX 106 read 28 2064 632 726.6302 726.6302 [ 40] + X_POSIX 106 read 29 136 544 726.6320 726.6320 [ 40] + X_POSIX 106 read 30 680 512 726.6329 726.6329 [ 40] + X_POSIX 106 read 31 1504 328 726.6568 726.6568 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 106, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 106 read 0 0 8 1497.1298 1497.2506 [209] + X_POSIX 106 read 1 0 9 1497.2509 1497.2510 [209] + X_POSIX 106 read 2 9 87 1497.2510 1497.2512 [209] + X_POSIX 106 read 3 96 512 1497.2513 1497.2514 [209] + X_POSIX 106 read 4 2064 632 1497.2514 1497.2515 [209] + X_POSIX 106 read 5 136 544 1497.2515 1497.2516 [209] + X_POSIX 106 read 6 680 512 1497.2516 1497.2516 [209] + X_POSIX 106 read 7 1504 328 1497.2669 1497.2671 [209] + X_POSIX 106 read 8 0 8 1497.9567 1497.9760 [209] + X_POSIX 106 read 9 0 9 1497.9793 1497.9793 [209] + X_POSIX 106 read 10 9 87 1497.9796 1497.9796 [209] + X_POSIX 106 read 11 96 512 1497.9852 1497.9852 [209] + X_POSIX 106 read 12 2064 632 1497.9876 1497.9876 [209] + X_POSIX 106 read 13 136 544 1497.9893 1497.9894 [209] + X_POSIX 106 read 14 680 512 1497.9902 1497.9903 [209] + X_POSIX 106 read 15 1504 328 1498.0139 1498.0140 [209] + X_POSIX 106 read 16 0 8 1498.7100 1498.7981 [209] + X_POSIX 106 read 17 0 9 1498.7981 1498.7982 [209] + X_POSIX 106 read 18 9 87 1498.7982 1498.7982 [209] + X_POSIX 106 read 19 96 512 1498.7982 1498.7982 [209] + X_POSIX 106 read 20 2064 632 1498.7982 1498.7983 [209] + X_POSIX 106 read 21 136 544 1498.7983 1498.7983 [209] + X_POSIX 106 read 22 680 512 1498.7983 1498.7983 [209] + X_POSIX 106 read 23 1504 328 1498.8198 1498.8201 [209] + X_POSIX 106 read 24 0 8 1500.5998 1500.6962 [209] + X_POSIX 106 read 25 0 9 1500.6978 1500.6978 [209] + X_POSIX 106 read 26 9 87 1500.6981 1500.6981 [209] + X_POSIX 106 read 27 96 512 1500.7039 1500.7039 [209] + X_POSIX 106 read 28 2064 632 1500.7064 1500.7064 [209] + X_POSIX 106 read 29 136 544 1500.7083 1500.7083 [209] + X_POSIX 106 read 30 680 512 1500.7092 1500.7092 [209] + X_POSIX 106 read 31 1504 328 1500.7340 1500.7340 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 107, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 107 read 0 0 342 1.7059 1.7088 [ 33] + X_POSIX 107 read 1 342 0 1.7268 1.7271 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 107, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 107 read 0 0 8 722.4025 722.5029 [ 40] + X_POSIX 107 read 1 0 9 722.5067 722.5067 [ 40] + X_POSIX 107 read 2 9 87 722.5070 722.5071 [ 40] + X_POSIX 107 read 3 96 512 722.5127 722.5127 [ 40] + X_POSIX 107 read 4 2064 632 722.5146 722.5146 [ 40] + X_POSIX 107 read 5 136 544 722.5155 722.5156 [ 40] + X_POSIX 107 read 6 680 512 722.5160 722.5160 [ 40] + X_POSIX 107 read 7 1504 328 722.5565 722.5566 [ 40] + X_POSIX 107 read 8 0 8 723.3714 723.3931 [ 40] + X_POSIX 107 read 9 0 9 723.3963 723.3963 [ 40] + X_POSIX 107 read 10 9 87 723.3966 723.3966 [ 40] + X_POSIX 107 read 11 96 512 723.4022 723.4022 [ 40] + X_POSIX 107 read 12 2064 632 723.4045 723.4046 [ 40] + X_POSIX 107 read 13 136 544 723.4063 723.4063 [ 40] + X_POSIX 107 read 14 680 512 723.4072 723.4072 [ 40] + X_POSIX 107 read 15 1504 328 723.4527 723.4527 [ 40] + X_POSIX 107 read 16 0 8 724.2698 724.3635 [ 40] + X_POSIX 107 read 17 0 9 724.3635 724.3636 [ 40] + X_POSIX 107 read 18 9 87 724.3636 724.3636 [ 40] + X_POSIX 107 read 19 96 512 724.3636 724.3636 [ 40] + X_POSIX 107 read 20 2064 632 724.3637 724.3637 [ 40] + X_POSIX 107 read 21 136 544 724.3637 724.3637 [ 40] + X_POSIX 107 read 22 680 512 724.3637 724.3638 [ 40] + X_POSIX 107 read 23 1504 328 724.3722 724.3726 [ 40] + X_POSIX 107 read 24 0 8 726.4743 726.6192 [ 40] + X_POSIX 107 read 25 0 9 726.6223 726.6223 [ 40] + X_POSIX 107 read 26 9 87 726.6226 726.6226 [ 40] + X_POSIX 107 read 27 96 512 726.6283 726.6283 [ 40] + X_POSIX 107 read 28 2064 632 726.6307 726.6307 [ 40] + X_POSIX 107 read 29 136 544 726.6325 726.6325 [ 40] + X_POSIX 107 read 30 680 512 726.6333 726.6334 [ 40] + X_POSIX 107 read 31 1504 328 726.6564 726.6565 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 107, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 107 read 0 0 8 1497.1296 1497.2507 [209] + X_POSIX 107 read 1 0 9 1497.2510 1497.2512 [209] + X_POSIX 107 read 2 9 87 1497.2512 1497.2513 [209] + X_POSIX 107 read 3 96 512 1497.2513 1497.2514 [209] + X_POSIX 107 read 4 2064 632 1497.2514 1497.2515 [209] + X_POSIX 107 read 5 136 544 1497.2515 1497.2516 [209] + X_POSIX 107 read 6 680 512 1497.2516 1497.2516 [209] + X_POSIX 107 read 7 1504 328 1497.2668 1497.2671 [209] + X_POSIX 107 read 8 0 8 1497.9566 1497.9758 [209] + X_POSIX 107 read 9 0 9 1497.9788 1497.9789 [209] + X_POSIX 107 read 10 9 87 1497.9791 1497.9792 [209] + X_POSIX 107 read 11 96 512 1497.9848 1497.9848 [209] + X_POSIX 107 read 12 2064 632 1497.9872 1497.9872 [209] + X_POSIX 107 read 13 136 544 1497.9889 1497.9890 [209] + X_POSIX 107 read 14 680 512 1497.9898 1497.9899 [209] + X_POSIX 107 read 15 1504 328 1498.0135 1498.0136 [209] + X_POSIX 107 read 16 0 8 1498.7099 1498.7996 [209] + X_POSIX 107 read 17 0 9 1498.7996 1498.7997 [209] + X_POSIX 107 read 18 9 87 1498.7997 1498.7997 [209] + X_POSIX 107 read 19 96 512 1498.7997 1498.7997 [209] + X_POSIX 107 read 20 2064 632 1498.7997 1498.7998 [209] + X_POSIX 107 read 21 136 544 1498.7998 1498.7998 [209] + X_POSIX 107 read 22 680 512 1498.7998 1498.7998 [209] + X_POSIX 107 read 23 1504 328 1498.8197 1498.8200 [209] + X_POSIX 107 read 24 0 8 1500.5997 1500.6962 [209] + X_POSIX 107 read 25 0 9 1500.6984 1500.6985 [209] + X_POSIX 107 read 26 9 87 1500.6988 1500.6988 [209] + X_POSIX 107 read 27 96 512 1500.7046 1500.7046 [209] + X_POSIX 107 read 28 2064 632 1500.7070 1500.7071 [209] + X_POSIX 107 read 29 136 544 1500.7089 1500.7089 [209] + X_POSIX 107 read 30 680 512 1500.7098 1500.7098 [209] + X_POSIX 107 read 31 1504 328 1500.7342 1500.7343 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 108, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 108 read 0 0 342 1.7061 1.7095 [ 33] + X_POSIX 108 read 1 342 0 1.7268 1.7270 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 108, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 108 read 0 0 8 722.4026 722.4984 [ 40] + X_POSIX 108 read 1 0 9 722.4995 722.4996 [ 40] + X_POSIX 108 read 2 9 87 722.4996 722.4997 [ 40] + X_POSIX 108 read 3 96 512 722.5022 722.5022 [ 40] + X_POSIX 108 read 4 2064 632 722.5043 722.5044 [ 40] + X_POSIX 108 read 5 136 544 722.5061 722.5061 [ 40] + X_POSIX 108 read 6 680 512 722.5070 722.5070 [ 40] + X_POSIX 108 read 7 1504 328 722.5570 722.5570 [ 40] + X_POSIX 108 read 8 0 8 723.3712 723.3930 [ 40] + X_POSIX 108 read 9 0 9 723.3960 723.3960 [ 40] + X_POSIX 108 read 10 9 87 723.3963 723.3963 [ 40] + X_POSIX 108 read 11 96 512 723.4019 723.4019 [ 40] + X_POSIX 108 read 12 2064 632 723.4043 723.4043 [ 40] + X_POSIX 108 read 13 136 544 723.4060 723.4061 [ 40] + X_POSIX 108 read 14 680 512 723.4069 723.4070 [ 40] + X_POSIX 108 read 15 1504 328 723.4528 723.4528 [ 40] + X_POSIX 108 read 16 0 8 724.2699 724.3614 [ 40] + X_POSIX 108 read 17 0 9 724.3614 724.3615 [ 40] + X_POSIX 108 read 18 9 87 724.3615 724.3615 [ 40] + X_POSIX 108 read 19 96 512 724.3615 724.3615 [ 40] + X_POSIX 108 read 20 2064 632 724.3615 724.3615 [ 40] + X_POSIX 108 read 21 136 544 724.3615 724.3616 [ 40] + X_POSIX 108 read 22 680 512 724.3616 724.3616 [ 40] + X_POSIX 108 read 23 1504 328 724.3723 724.3725 [ 40] + X_POSIX 108 read 24 0 8 726.4745 726.6189 [ 40] + X_POSIX 108 read 25 0 9 726.6192 726.6192 [ 40] + X_POSIX 108 read 26 9 87 726.6194 726.6194 [ 40] + X_POSIX 108 read 27 96 512 726.6251 726.6251 [ 40] + X_POSIX 108 read 28 2064 632 726.6275 726.6275 [ 40] + X_POSIX 108 read 29 136 544 726.6293 726.6293 [ 40] + X_POSIX 108 read 30 680 512 726.6302 726.6303 [ 40] + X_POSIX 108 read 31 1504 328 726.6566 726.6567 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 108, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 108 read 0 0 8 1497.1298 1497.2504 [209] + X_POSIX 108 read 1 0 9 1497.2507 1497.2508 [209] + X_POSIX 108 read 2 9 87 1497.2508 1497.2509 [209] + X_POSIX 108 read 3 96 512 1497.2510 1497.2512 [209] + X_POSIX 108 read 4 2064 632 1497.2512 1497.2513 [209] + X_POSIX 108 read 5 136 544 1497.2513 1497.2514 [209] + X_POSIX 108 read 6 680 512 1497.2514 1497.2516 [209] + X_POSIX 108 read 7 1504 328 1497.2669 1497.2672 [209] + X_POSIX 108 read 8 0 8 1497.9567 1497.9759 [209] + X_POSIX 108 read 9 0 9 1497.9791 1497.9791 [209] + X_POSIX 108 read 10 9 87 1497.9794 1497.9794 [209] + X_POSIX 108 read 11 96 512 1497.9850 1497.9850 [209] + X_POSIX 108 read 12 2064 632 1497.9874 1497.9874 [209] + X_POSIX 108 read 13 136 544 1497.9891 1497.9892 [209] + X_POSIX 108 read 14 680 512 1497.9900 1497.9901 [209] + X_POSIX 108 read 15 1504 328 1498.0137 1498.0137 [209] + X_POSIX 108 read 16 0 8 1498.7100 1498.7980 [209] + X_POSIX 108 read 17 0 9 1498.7980 1498.7981 [209] + X_POSIX 108 read 18 9 87 1498.7981 1498.7981 [209] + X_POSIX 108 read 19 96 512 1498.7981 1498.7981 [209] + X_POSIX 108 read 20 2064 632 1498.7981 1498.7982 [209] + X_POSIX 108 read 21 136 544 1498.7982 1498.7982 [209] + X_POSIX 108 read 22 680 512 1498.7982 1498.7982 [209] + X_POSIX 108 read 23 1504 328 1498.8198 1498.8201 [209] + X_POSIX 108 read 24 0 8 1500.5998 1500.6964 [209] + X_POSIX 108 read 25 0 9 1500.6993 1500.6993 [209] + X_POSIX 108 read 26 9 87 1500.6996 1500.6996 [209] + X_POSIX 108 read 27 96 512 1500.7055 1500.7055 [209] + X_POSIX 108 read 28 2064 632 1500.7079 1500.7079 [209] + X_POSIX 108 read 29 136 544 1500.7098 1500.7098 [209] + X_POSIX 108 read 30 680 512 1500.7107 1500.7107 [209] + X_POSIX 108 read 31 1504 328 1500.7342 1500.7342 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 109, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 109 read 0 0 342 1.7059 1.7086 [ 33] + X_POSIX 109 read 1 342 0 1.7269 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 109, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 109 read 0 0 8 722.4026 722.5009 [ 40] + X_POSIX 109 read 1 0 9 722.5040 722.5041 [ 40] + X_POSIX 109 read 2 9 87 722.5044 722.5044 [ 40] + X_POSIX 109 read 3 96 512 722.5100 722.5100 [ 40] + X_POSIX 109 read 4 2064 632 722.5124 722.5124 [ 40] + X_POSIX 109 read 5 136 544 722.5140 722.5140 [ 40] + X_POSIX 109 read 6 680 512 722.5146 722.5146 [ 40] + X_POSIX 109 read 7 1504 328 722.5570 722.5570 [ 40] + X_POSIX 109 read 8 0 8 723.3687 723.3926 [ 40] + X_POSIX 109 read 9 0 9 723.3941 723.3942 [ 40] + X_POSIX 109 read 10 9 87 723.3944 723.3945 [ 40] + X_POSIX 109 read 11 96 512 723.4000 723.4000 [ 40] + X_POSIX 109 read 12 2064 632 723.4024 723.4024 [ 40] + X_POSIX 109 read 13 136 544 723.4042 723.4042 [ 40] + X_POSIX 109 read 14 680 512 723.4050 723.4051 [ 40] + X_POSIX 109 read 15 1504 328 723.4527 723.4527 [ 40] + X_POSIX 109 read 16 0 8 724.2698 724.3657 [ 40] + X_POSIX 109 read 17 0 9 724.3657 724.3657 [ 40] + X_POSIX 109 read 18 9 87 724.3657 724.3657 [ 40] + X_POSIX 109 read 19 96 512 724.3657 724.3658 [ 40] + X_POSIX 109 read 20 2064 632 724.3658 724.3658 [ 40] + X_POSIX 109 read 21 136 544 724.3658 724.3658 [ 40] + X_POSIX 109 read 22 680 512 724.3658 724.3658 [ 40] + X_POSIX 109 read 23 1504 328 724.3722 724.3726 [ 40] + X_POSIX 109 read 24 0 8 726.4744 726.6190 [ 40] + X_POSIX 109 read 25 0 9 726.6217 726.6217 [ 40] + X_POSIX 109 read 26 9 87 726.6220 726.6220 [ 40] + X_POSIX 109 read 27 96 512 726.6277 726.6277 [ 40] + X_POSIX 109 read 28 2064 632 726.6301 726.6301 [ 40] + X_POSIX 109 read 29 136 544 726.6319 726.6319 [ 40] + X_POSIX 109 read 30 680 512 726.6327 726.6328 [ 40] + X_POSIX 109 read 31 1504 328 726.6570 726.6570 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 109, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 109 read 0 0 8 1497.1296 1497.2507 [209] + X_POSIX 109 read 1 0 9 1497.2510 1497.2512 [209] + X_POSIX 109 read 2 9 87 1497.2512 1497.2513 [209] + X_POSIX 109 read 3 96 512 1497.2513 1497.2514 [209] + X_POSIX 109 read 4 2064 632 1497.2514 1497.2515 [209] + X_POSIX 109 read 5 136 544 1497.2515 1497.2516 [209] + X_POSIX 109 read 6 680 512 1497.2516 1497.2516 [209] + X_POSIX 109 read 7 1504 328 1497.2669 1497.2673 [209] + X_POSIX 109 read 8 0 8 1497.9565 1497.9754 [209] + X_POSIX 109 read 9 0 9 1497.9757 1497.9757 [209] + X_POSIX 109 read 10 9 87 1497.9759 1497.9759 [209] + X_POSIX 109 read 11 96 512 1497.9814 1497.9814 [209] + X_POSIX 109 read 12 2064 632 1497.9838 1497.9838 [209] + X_POSIX 109 read 13 136 544 1497.9855 1497.9856 [209] + X_POSIX 109 read 14 680 512 1497.9864 1497.9865 [209] + X_POSIX 109 read 15 1504 328 1498.0136 1498.0137 [209] + X_POSIX 109 read 16 0 8 1498.7100 1498.7962 [209] + X_POSIX 109 read 17 0 9 1498.7962 1498.7962 [209] + X_POSIX 109 read 18 9 87 1498.7962 1498.7963 [209] + X_POSIX 109 read 19 96 512 1498.7963 1498.7963 [209] + X_POSIX 109 read 20 2064 632 1498.7963 1498.7963 [209] + X_POSIX 109 read 21 136 544 1498.7963 1498.7964 [209] + X_POSIX 109 read 22 680 512 1498.7964 1498.7964 [209] + X_POSIX 109 read 23 1504 328 1498.8198 1498.8201 [209] + X_POSIX 109 read 24 0 8 1500.5997 1500.6964 [209] + X_POSIX 109 read 25 0 9 1500.6994 1500.6994 [209] + X_POSIX 109 read 26 9 87 1500.6997 1500.6998 [209] + X_POSIX 109 read 27 96 512 1500.7056 1500.7056 [209] + X_POSIX 109 read 28 2064 632 1500.7080 1500.7080 [209] + X_POSIX 109 read 29 136 544 1500.7098 1500.7098 [209] + X_POSIX 109 read 30 680 512 1500.7107 1500.7107 [209] + X_POSIX 109 read 31 1504 328 1500.7342 1500.7343 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 110, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 110 read 0 0 342 1.7060 1.7092 [ 33] + X_POSIX 110 read 1 342 0 1.7268 1.7270 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 110, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 110 read 0 0 8 722.4026 722.5010 [ 40] + X_POSIX 110 read 1 0 9 722.5042 722.5042 [ 40] + X_POSIX 110 read 2 9 87 722.5045 722.5046 [ 40] + X_POSIX 110 read 3 96 512 722.5102 722.5102 [ 40] + X_POSIX 110 read 4 2064 632 722.5126 722.5126 [ 40] + X_POSIX 110 read 5 136 544 722.5141 722.5141 [ 40] + X_POSIX 110 read 6 680 512 722.5147 722.5148 [ 40] + X_POSIX 110 read 7 1504 328 722.5567 722.5567 [ 40] + X_POSIX 110 read 8 0 8 723.3715 723.3927 [ 40] + X_POSIX 110 read 9 0 9 723.3953 723.3953 [ 40] + X_POSIX 110 read 10 9 87 723.3956 723.3956 [ 40] + X_POSIX 110 read 11 96 512 723.4012 723.4012 [ 40] + X_POSIX 110 read 12 2064 632 723.4036 723.4036 [ 40] + X_POSIX 110 read 13 136 544 723.4053 723.4054 [ 40] + X_POSIX 110 read 14 680 512 723.4062 723.4063 [ 40] + X_POSIX 110 read 15 1504 328 723.4529 723.4530 [ 40] + X_POSIX 110 read 16 0 8 724.2698 724.3569 [ 40] + X_POSIX 110 read 17 0 9 724.3570 724.3570 [ 40] + X_POSIX 110 read 18 9 87 724.3570 724.3571 [ 40] + X_POSIX 110 read 19 96 512 724.3571 724.3572 [ 40] + X_POSIX 110 read 20 2064 632 724.3572 724.3572 [ 40] + X_POSIX 110 read 21 136 544 724.3573 724.3573 [ 40] + X_POSIX 110 read 22 680 512 724.3573 724.3574 [ 40] + X_POSIX 110 read 23 1504 328 724.3722 724.3726 [ 40] + X_POSIX 110 read 24 0 8 726.4744 726.6190 [ 40] + X_POSIX 110 read 25 0 9 726.6217 726.6217 [ 40] + X_POSIX 110 read 26 9 87 726.6220 726.6221 [ 40] + X_POSIX 110 read 27 96 512 726.6277 726.6277 [ 40] + X_POSIX 110 read 28 2064 632 726.6301 726.6301 [ 40] + X_POSIX 110 read 29 136 544 726.6319 726.6319 [ 40] + X_POSIX 110 read 30 680 512 726.6328 726.6328 [ 40] + X_POSIX 110 read 31 1504 328 726.6566 726.6567 [ 40] + +# DXT, file_id: 12739794350715252166, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00001.hdf5 +# DXT, rank: 110, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 25 137 47 217 17 39 59 171 69 173 37 203 125 131 87 19 195 65 45 139 105 241 83 159 73 197 2 216 234 218 222 246 220 226 232 244 206 212 236 228 240 242 60 204 230 66 132 52 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 110 read 0 0 8 1497.1298 1497.2505 [209] + X_POSIX 110 read 1 0 9 1497.2508 1497.2509 [209] + X_POSIX 110 read 2 9 87 1497.2509 1497.2510 [209] + X_POSIX 110 read 3 96 512 1497.2510 1497.2512 [209] + X_POSIX 110 read 4 2064 632 1497.2513 1497.2514 [209] + X_POSIX 110 read 5 136 544 1497.2514 1497.2515 [209] + X_POSIX 110 read 6 680 512 1497.2515 1497.2515 [209] + X_POSIX 110 read 7 1504 328 1497.2668 1497.2672 [209] + X_POSIX 110 read 8 0 8 1497.9566 1497.9756 [209] + X_POSIX 110 read 9 0 9 1497.9785 1497.9786 [209] + X_POSIX 110 read 10 9 87 1497.9789 1497.9789 [209] + X_POSIX 110 read 11 96 512 1497.9845 1497.9845 [209] + X_POSIX 110 read 12 2064 632 1497.9868 1497.9869 [209] + X_POSIX 110 read 13 136 544 1497.9886 1497.9886 [209] + X_POSIX 110 read 14 680 512 1497.9895 1497.9895 [209] + X_POSIX 110 read 15 1504 328 1498.0140 1498.0140 [209] + X_POSIX 110 read 16 0 8 1498.7100 1498.7949 [209] + X_POSIX 110 read 17 0 9 1498.7950 1498.7950 [209] + X_POSIX 110 read 18 9 87 1498.7950 1498.7951 [209] + X_POSIX 110 read 19 96 512 1498.7951 1498.7951 [209] + X_POSIX 110 read 20 2064 632 1498.7951 1498.7952 [209] + X_POSIX 110 read 21 136 544 1498.7952 1498.7952 [209] + X_POSIX 110 read 22 680 512 1498.7952 1498.7953 [209] + X_POSIX 110 read 23 1504 328 1498.8198 1498.8199 [209] + X_POSIX 110 read 24 0 8 1500.5998 1500.6962 [209] + X_POSIX 110 read 25 0 9 1500.6990 1500.6990 [209] + X_POSIX 110 read 26 9 87 1500.6993 1500.6993 [209] + X_POSIX 110 read 27 96 512 1500.7051 1500.7051 [209] + X_POSIX 110 read 28 2064 632 1500.7076 1500.7076 [209] + X_POSIX 110 read 29 136 544 1500.7094 1500.7094 [209] + X_POSIX 110 read 30 680 512 1500.7103 1500.7103 [209] + X_POSIX 110 read 31 1504 328 1500.7340 1500.7340 [209] + +# DXT, file_id: 12448935322639952455, file_name: /global/cscratch1/sd/asim/amrex/a24/probin +# DXT, rank: 111, hostname: nid00538 +# DXT, write_count: 0, read_count: 2 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 1048576, Lustre stripe_count: 1 +# DXT, Lustre OST obdidx: 33 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 111 read 0 0 342 1.7059 1.7090 [ 33] + X_POSIX 111 read 1 342 0 1.7269 1.7272 + +# DXT, file_id: 17297210694753096990, file_name: /global/cscratch1/sd/asim/amrex/a24/plt00000.hdf5 +# DXT, rank: 111, hostname: nid00538 +# DXT, write_count: 0, read_count: 32 +# DXT, mnt_pt: /global/cscratch1, fs_type: lustre +# DXT, Lustre stripe_size: 67108864, Lustre stripe_count: 128 +# DXT, Lustre OST obdidx: 40 14 184 196 172 18 12 174 116 162 64 120 50 166 56 26 192 180 178 104 170 124 42 122 152 130 70 100 160 88 247 243 227 219 215 177 233 221 223 207 89 229 91 213 237 199 205 245 209 193 155 189 123 149 211 169 235 145 201 81 157 21 97 165 175 179 143 161 31 53 41 181 231 225 183 67 129 119 85 71 77 5 29 107 61 9 113 11 147 103 13 111 133 33 63 121 127 141 35 93 101 109 75 23 99 117 167 49 185 115 7 135 3 57 95 43 27 191 1 163 51 15 153 187 55 151 239 79 +# Module Rank Wt/Rd Segment Offset Length Start(s) End(s) [OST] + X_POSIX 111 read 0 0 8 722.402