/usr/share/doc/python-tables-doc/bench/stress-test2.py is in python-tables-doc 3.1.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | from __future__ import print_function
import gc
import sys
import time
import random
from tables import *
class Test(IsDescription):
ngroup = Int32Col(pos=1)
ntable = Int32Col(pos=2)
nrow = Int32Col(pos=3)
time = Float64Col(pos=5)
random = Float32Col(pos=4)
def createFile(filename, ngroups, ntables, nrows, complevel, complib, recsize):
# First, create the groups
# Open a file in "w"rite mode
fileh = open_file(filename, mode="w", title="PyTables Stress Test")
for k in range(ngroups):
# Create the group
group = fileh.create_group("/", 'group%04d' % k, "Group %d" % k)
fileh.close()
# Now, create the tables
rowswritten = 0
for k in range(ngroups):
fileh = open_file(filename, mode="a", root_uep='group%04d' % k)
# Get the group
group = fileh.root
for j in range(ntables):
# Create a table
table = fileh.create_table(group, 'table%04d' % j, Test,
'Table%04d' % j,
complevel, complib, nrows)
# Get the row object associated with the new table
row = table.row
# Fill the table
for i in range(nrows):
row['time'] = time.time()
row['random'] = random.random() * 40 + 100
row['ngroup'] = k
row['ntable'] = j
row['nrow'] = i
row.append()
rowswritten += nrows
table.flush()
# Close the file
fileh.close()
return (rowswritten, table.rowsize)
def readFile(filename, ngroups, recsize, verbose):
# Open the HDF5 file in read-only mode
rowsread = 0
for ngroup in range(ngroups):
fileh = open_file(filename, mode="r", root_uep='group%04d' % ngroup)
# Get the group
group = fileh.root
ntable = 0
if verbose:
print("Group ==>", group)
for table in fileh.list_nodes(group, 'Table'):
rowsize = table.rowsize
buffersize = table.rowsize * table.nrowsinbuf
if verbose > 1:
print("Table ==>", table)
print("Max rows in buf:", table.nrowsinbuf)
print("Rows in", table._v_pathname, ":", table.nrows)
print("Buffersize:", table.rowsize * table.nrowsinbuf)
print("MaxTuples:", table.nrowsinbuf)
nrow = 0
time_1 = 0.0
for row in table:
try:
# print "row['ngroup'], ngroup ==>", row["ngroup"], ngroup
assert row["ngroup"] == ngroup
assert row["ntable"] == ntable
assert row["nrow"] == nrow
# print "row['time'], time_1 ==>", row["time"], time_1
assert row["time"] >= (time_1 - 0.01)
#assert 100 <= row["random"] <= 139.999
assert 100 <= row["random"] <= 140
except:
print("Error in group: %d, table: %d, row: %d" %
(ngroup, ntable, nrow))
print("Record ==>", row)
time_1 = row["time"]
nrow += 1
assert nrow == table.nrows
rowsread += table.nrows
ntable += 1
# Close the file (eventually destroy the extended type)
fileh.close()
return (rowsread, rowsize, buffersize)
def dump_garbage():
"""show us waht the garbage is about."""
# Force collection
print("\nGARBAGE:")
gc.collect()
print("\nGARBAGE OBJECTS:")
for x in gc.garbage:
s = str(x)
#if len(s) > 80: s = s[:77] + "..."
print(type(x), "\n ", s)
if __name__ == "__main__":
import getopt
try:
import psyco
psyco_imported = 1
except:
psyco_imported = 0
usage = """usage: %s [-d debug] [-v level] [-p] [-r] [-w] [-l complib] [-c complevel] [-g ngroups] [-t ntables] [-i nrows] file
-d debugging level
-v verbosity level
-p use "psyco" if available
-r only read test
-w only write test
-l sets the compression library to be used ("zlib", "lzo", "ucl", "bzip2")
-c sets a compression level (do not set it or 0 for no compression)
-g number of groups hanging from "/"
-t number of tables per group
-i number of rows per table
"""
try:
opts, pargs = getopt.getopt(sys.argv[1:], 'd:v:prwl:c:g:t:i:')
except:
sys.stderr.write(usage)
sys.exit(0)
# if we pass too much parameters, abort
if len(pargs) != 1:
sys.stderr.write(usage)
sys.exit(0)
# default options
ngroups = 5
ntables = 5
nrows = 100
verbose = 0
debug = 0
recsize = "medium"
testread = 1
testwrite = 1
usepsyco = 0
complevel = 0
complib = "zlib"
# Get the options
for option in opts:
if option[0] == '-d':
debug = int(option[1])
if option[0] == '-v':
verbose = int(option[1])
if option[0] == '-p':
usepsyco = 1
elif option[0] == '-r':
testwrite = 0
elif option[0] == '-w':
testread = 0
elif option[0] == '-l':
complib = option[1]
elif option[0] == '-c':
complevel = int(option[1])
elif option[0] == '-g':
ngroups = int(option[1])
elif option[0] == '-t':
ntables = int(option[1])
elif option[0] == '-i':
nrows = int(option[1])
if debug:
gc.enable()
gc.set_debug(gc.DEBUG_LEAK)
# Catch the hdf5 file passed as the last argument
file = pargs[0]
print("Compression level:", complevel)
if complevel > 0:
print("Compression library:", complib)
if testwrite:
t1 = time.time()
cpu1 = time.clock()
if psyco_imported and usepsyco:
psyco.bind(createFile)
(rowsw, rowsz) = createFile(file, ngroups, ntables, nrows,
complevel, complib, recsize)
t2 = time.time()
cpu2 = time.clock()
tapprows = round(t2 - t1, 3)
cpuapprows = round(cpu2 - cpu1, 3)
tpercent = int(round(cpuapprows / tapprows, 2) * 100)
print("Rows written:", rowsw, " Row size:", rowsz)
print("Time writing rows: %s s (real) %s s (cpu) %s%%" %
(tapprows, cpuapprows, tpercent))
print("Write rows/sec: ", int(rowsw / float(tapprows)))
print("Write KB/s :", int(rowsw * rowsz / (tapprows * 1024)))
if testread:
t1 = time.time()
cpu1 = time.clock()
if psyco_imported and usepsyco:
psyco.bind(readFile)
(rowsr, rowsz, bufsz) = readFile(file, ngroups, recsize, verbose)
t2 = time.time()
cpu2 = time.clock()
treadrows = round(t2 - t1, 3)
cpureadrows = round(cpu2 - cpu1, 3)
tpercent = int(round(cpureadrows / treadrows, 2) * 100)
print("Rows read:", rowsr, " Row size:", rowsz, "Buf size:", bufsz)
print("Time reading rows: %s s (real) %s s (cpu) %s%%" %
(treadrows, cpureadrows, tpercent))
print("Read rows/sec: ", int(rowsr / float(treadrows)))
print("Read KB/s :", int(rowsr * rowsz / (treadrows * 1024)))
# Show the dirt
if debug > 1:
dump_garbage()
|