-
Notifications
You must be signed in to change notification settings - Fork 65
/
smallfile_rsptimes_stats.py
executable file
·357 lines (290 loc) · 11.6 KB
/
smallfile_rsptimes_stats.py
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#!/usr/bin/env python3
#
# smallfile_rsptimes_stats.py -- python program to reduce response time sample data from smallfile benchmark to
# statistics.
#
# in addition to stats for individual thread, it shows per-client and cluster-wide stats
# smallfile at present produces response time data in the /var/tmp/ directory
# within each workload generator
# it is the user's responsibility to copy the data back
# to a directory (on the test driver perhaps).
# this means that the files from each workload generator have to have
# the workload generator hostname embedded in them
# so that they can all be co-located in a single directory.
# since there is no standard method for this yet,
# this program has to be adjusted to parse the filenames
# and extract 2 fields, thread number and short hostname
#
# the start-time parameter is optional but if it is specified
# the percentiles-vs-time time column will have this added to it
# this could be useful for ingesting data into a repository like
# elastic search and displaying it side-by-side with other performance
# data collected during a test run. The default of 0 just outputs
# time since start of test (like before). The start time as
# seconds since the epoch (1970) can be obtained from the JSON
# output in the 'start-time' field.
import bisect
import os
import re
import sys
from sys import argv
import numpy
import scipy
import scipy.stats
time_infinity = 1 << 62
# edit this list if you want additional percentiles
percentiles = [50, 90, 95, 99]
min_rsptime_samples = 5
start_time = 0.0
def usage(msg):
print("ERROR: %s" % msg)
print("usage: python smallfile_rsptimes_stats.py ")
print(" [--common-hostname-suffix my.suffix] ")
print(" [--time-interval positive-integer-seconds] ")
print(" [--start-time seconds-since-1970] ")
print(" directory")
sys.exit(1)
# parse files once, we assume here that we can hold them in RAM
# so we don't have to keep reading them
# by keeping them in RAM we allow binary search for starting
# time since we want to isolate set of samples in a time interval
def parse_rsptime_file(result_dir, csv_pathname):
samples = []
with open(os.path.join(result_dir, csv_pathname), "r") as f:
records = [line.strip() for line in f.readlines()]
for sample in records:
components = sample.split(",")
op = components[0]
at_time = float(components[1])
if start_time > 0:
at_time += start_time
rsp_time = float(components[2])
samples.append((op, at_time, rsp_time))
return samples
# to be used for sorting based on tuple components
def get_at_time(rsptime_tuple):
(_, at_time, _) = rsptime_tuple
return at_time
def get_rsp_time(rsptime_tuple):
(_, _, rsp_time) = rsptime_tuple
return rsp_time
def do_sorting(sample_set, already_sorted=False):
"""
this function avoids duplication of sorting
"""
if not already_sorted:
sorted_samples = sorted(sample_set, key=get_at_time)
else:
sorted_samples = sample_set
sorted_keys = list(map(get_at_time, sorted_samples))
sorted_rsptimes = sorted(list(map(get_rsp_time, sample_set)))
return (sorted_samples, sorted_keys, sorted_rsptimes)
# leverage python binary search module "bisect"
# obtained from https://docs.python.org/2/library/bisect.html#searching-sorted-lists
def find_le(a, x):
# find highest index with value < x
i = bisect.bisect_right(a, x)
return i
def find_gt(a, x):
# find lowest index with value >= x
i = bisect.bisect_left(a, x)
if i < len(a):
return i
# since the only thing we are doing with this result
# is to extract a slice of an array,
# returning len(a) is a valid thing
# raise ValueError
# if you want this to calculate stats for a time_interval
# t specify from_time and to_time
def reduce_thread_set(sorted_samples_tuple, from_time=0, to_time=time_infinity):
# FIXME: need binary search to
# efficiently find beginning of time interval
(sorted_samples, sorted_keys, sorted_times) = sorted_samples_tuple
if to_time < time_infinity:
start_index = find_le(sorted_keys, from_time)
end_index = find_gt(sorted_keys, to_time)
# replace sorted_times with just the response times in time interval
sorted_times = sorted(map(get_rsp_time, sorted_samples[start_index:end_index]))
sample_count = len(sorted_times)
if sample_count < min_rsptime_samples:
return None
mintime = sorted_times[0]
maxtime = sorted_times[-1]
mean = scipy.stats.tmean(sorted_times)
stdev = scipy.stats.tstd(sorted_times)
pctdev = 100.0 * stdev / mean
pctiles = []
for p in percentiles:
pctiles.append(numpy.percentile(sorted_times, float(p), overwrite_input=True))
return (sample_count, mintime, maxtime, mean, pctdev, pctiles)
# format the stats for output to a csv file
def format_stats(all_stats):
if all_stats is None:
return " 0,,,,," + ",,,,,,,,,,,,,,,,"[0 : len(percentiles) - 1]
(sample_count, mintime, maxtime, mean, pctdev, pctiles) = all_stats
partial_record = "%d, %f, %f, %f, %f, " % (
sample_count,
mintime,
maxtime,
mean,
pctdev,
)
for p in pctiles:
partial_record += "%f, " % p
return partial_record
# FIXME: convert to argparse module, more compact and standard
# define default parameter values
hosts = {}
suffix = ""
argindex = 1
argcount = len(argv)
time_interval = 10
# parse any optional parameters
while argindex < argcount:
pname = argv[argindex]
if not pname.startswith("--"):
break
if argindex == argcount - 1:
usage("every parameter consists of a --name and a value")
pval = argv[argindex + 1]
argindex += 2
pname = pname[2:]
if pname == "common-hostname-suffix":
suffix = pval
if not suffix.startswith("."):
suffix = "." + pval
elif pname == "time-interval":
time_interval = int(pval)
elif pname == "start-time":
start_time = float(pval)
else:
usage("--%s: no such optional parameter defined" % pname)
if suffix != "":
print("filtering out suffix %s from hostnames" % suffix)
print("time interval is %d seconds" % time_interval)
# this regex plucks out a tuple of 2 values:
#
# thread number
# hostname
regex = r"rsptimes_([0-9]{2})_([0-9,a-z,\-,\.]*)%s_[-,a-z]*_[.,0-9]*.csv"
# filter out redundant suffix, if any, in hostname
new_regex = regex % suffix
# now parse hostnames and files
if argindex != argcount - 1:
usage("need directory where response time files are")
directory = argv[argindex]
if not os.path.isdir(directory):
usage("%s: directory containing result csv files was not provided" % directory)
# process the results
# we show individual threads, per-host groupings and all threads together
samples_by_thread = {}
hosts = {}
pathnames = filter(
lambda path: path.startswith("rsptimes") and path.endswith(".csv"),
os.listdir(directory),
)
max_thread = 0
for p in pathnames:
m = re.match(new_regex, p)
if not m:
sys.stderr.write("warning: pathname could not be matched by regex: %s\n" % p)
continue
(threadstr, host) = m.group(1, 2)
thread = int(threadstr)
if max_thread < thread:
max_thread = thread
try:
perhost_dict = hosts[host]
except KeyError:
perhost_dict = {}
hosts[host] = perhost_dict
# load response times for this file into memory
# save what file it came from too
samples = parse_rsptime_file(directory, p)
perhost_dict[threadstr] = (p, samples)
hostcount = len(hosts.keys())
if hostcount == 0:
usage("%s: no .csv response time log files were found" % directory)
summary_pathname = os.path.join(directory, "stats-rsptimes.csv")
header = "host:thread, samples, min, max, mean, %dev, "
for p in percentiles:
header += "%d%%ile, " % p
with open(summary_pathname, "w") as outf:
outf.write(header + "\n")
# aggregate response times across all threads and whole test duration
# if there is only 1 host, no need for cluster-wide stats
cluster_sample_set = None
if len(hosts.keys()) > 1:
outf.write("cluster-wide stats:\n")
cluster_sample_set = []
for per_host_dict in hosts.values():
for _, samples in per_host_dict.values():
cluster_sample_set.extend(samples)
sorted_cluster_tuple = do_sorting(cluster_sample_set)
cluster_results = reduce_thread_set(sorted_cluster_tuple)
outf.write("all-hosts:all-thrd," + format_stats(cluster_results) + "\n")
outf.write("\n")
# show them if there is variation amongst clients (could be network)
# if there is only 1 thread per host, no need for per-host stats
# assumption: all hosts have 1 thread/host or all hosts have > 1 thread/host
host_keys = list(hosts.keys())
first_host = host_keys[0]
if len(first_host) > 1:
outf.write("per-host stats:\n")
for h in sorted(hosts.keys()):
sample_set = []
for _, samples in hosts[h].values():
sample_set.extend(samples)
sorted_host_tuple = do_sorting(sample_set)
host_results = reduce_thread_set(sorted_host_tuple)
outf.write(h + ":" + "all-thrd" + "," + format_stats(host_results) + "\n")
outf.write("\n")
# show per-thread results so we can see if client Cephfs mountpoint is fair
outf.write("per-thread stats:\n")
for h in sorted(hosts.keys()):
threadset = hosts[h]
for t in sorted(threadset.keys()):
(_, samples) = threadset[t]
sorted_thrd_tuple = do_sorting(samples, already_sorted=True)
thrd_results = reduce_thread_set(sorted_thrd_tuple)
outf.write(h + ":" + t + "," + format_stats(thrd_results) + "\n")
outf.write("\n")
# generate cluster-wide percentiles over time
# to show if latency spikes occur
# first get max end time of any request,
# round that down to quantized time interval
end_time = -1
for h in hosts.keys():
threadset = hosts[h]
for t in threadset.keys():
(_, samples) = threadset[t]
if len(samples) > 0:
(_, max_at_time, max_rsp_time) = samples[-1]
else:
max_at_time = 0.0
max_rsp_time = 0.0
end_time = max(end_time, max_at_time + max_rsp_time)
quantized_end_time = (int(end_time) // time_interval) * time_interval
# if there is only 1 interval, cannot do percentiles vs time
# else for each time interval calculate percentiles of samples
# in that time interval
if quantized_end_time > 0:
outf.write("cluster-wide response time stats over time:\n")
outf.write("time-since-start(sec), " + header + "\n")
# avoid re-sorting all response time samples
# if possible (and it often is)
if cluster_sample_set is None:
cluster_sample_set = []
for per_host_dict in hosts.values():
for _, samples in per_host_dict.values():
cluster_sample_set.extend(samples)
sorted_cluster_tuple = do_sorting(cluster_sample_set)
for from_t in range(int(start_time), quantized_end_time, time_interval):
to_t = from_t + time_interval
results_in_interval = reduce_thread_set(
sorted_cluster_tuple, from_time=from_t, to_time=to_t
)
outf.write("%-8d, all-hosts:all-thrd, " % from_t)
outf.write(format_stats(results_in_interval) + "\n")
outf.write("\n")
print("rsp. time result summary at: %s" % summary_pathname)