Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YCSB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adnan Ahmad
YCSB
Commits
36ff72b1
Commit
36ff72b1
authored
12 years ago
by
nixon
Browse files
Options
Downloads
Patches
Plain Diff
Added variance calculation of histogram latency reporting.
parent
0caa77fe
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/java/com/yahoo/ycsb/measurements/OneMeasurementHistogram.java
+41
-6
41 additions, 6 deletions
.../com/yahoo/ycsb/measurements/OneMeasurementHistogram.java
with
41 additions
and
6 deletions
core/src/main/java/com/yahoo/ycsb/measurements/OneMeasurementHistogram.java
+
41
−
6
View file @
36ff72b1
...
...
@@ -36,11 +36,39 @@ public class OneMeasurementHistogram extends OneMeasurement
public
static
final
String
BUCKETS
=
"histogram.buckets"
;
public
static
final
String
BUCKETS_DEFAULT
=
"1000"
;
/**
* Specify the range of latencies to track in the histogram.
*/
int
_buckets
;
/**
* Groups operations in discrete blocks of 1ms width.
*/
int
[]
histogram
;
/**
* Counts all operations outside the histogram's range.
*/
int
histogramoverflow
;
/**
* The total number of reported operations.
*/
int
operations
;
long
totallatency
;
/**
* The sum of each latency measurement over all operations.
* Calculated in ms.
*/
double
totallatency
;
/**
* The sum of each latency measurement squared over all operations.
* Used to calculate variance of latency.
* Calculated in ms.
*/
double
totalsquaredlatency
;
//keep a windowed version of these stats for printing status
int
windowoperations
;
...
...
@@ -58,6 +86,7 @@ public class OneMeasurementHistogram extends OneMeasurement
histogramoverflow
=
0
;
operations
=
0
;
totallatency
=
0
;
totalsquaredlatency
=
0
;
windowoperations
=
0
;
windowtotallatency
=
0
;
min
=-
1
;
...
...
@@ -86,6 +115,7 @@ public class OneMeasurementHistogram extends OneMeasurement
*/
public
synchronized
void
measure
(
int
latency
)
{
//latency reported in us and collected in bucket by ms.
if
(
latency
/
1000
>=
_buckets
)
{
histogramoverflow
++;
...
...
@@ -95,10 +125,11 @@ public class OneMeasurementHistogram extends OneMeasurement
histogram
[
latency
/
1000
]++;
}
operations
++;
totallatency
+=
latency
;
totallatency
+=
((
double
)
latency
)
/
1000
;
totalsquaredlatency
+=
((
double
)
latency
)
*
((
double
)
latency
)
/
1000000
;
windowoperations
++;
windowtotallatency
+=
latency
;
windowtotallatency
+=
latency
;
if
(
(
min
<
0
)
||
(
latency
<
min
)
)
{
min
=
latency
;
...
...
@@ -112,10 +143,14 @@ public class OneMeasurementHistogram extends OneMeasurement
@Override
public
void
exportMeasurements
(
MeasurementsExporter
exporter
)
throws
IOException
public
void
exportMeasurements
(
MeasurementsExporter
exporter
)
throws
IOException
{
double
mean
=
totallatency
/((
double
)
operations
);
double
variance
=
totalsquaredlatency
/((
double
)
operations
)
-
(
mean
*
mean
);
exporter
.
write
(
getName
(),
"Operations"
,
operations
);
exporter
.
write
(
getName
(),
"AverageLatency(us)"
,
(((
double
)
totallatency
)/((
double
)
operations
)));
exporter
.
write
(
getName
(),
"AverageLatency(ms)"
,
mean
);
exporter
.
write
(
getName
(),
"LatencyVariance(ms)"
,
variance
);
exporter
.
write
(
getName
(),
"MinLatency(us)"
,
min
);
exporter
.
write
(
getName
(),
"MaxLatency(us)"
,
max
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment