diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-10-16 14:27:10 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-10-16 14:27:10 +0200 |
commit | ad9e3074f2949a0ea604bc191109fa0ad7b8e2e4 (patch) | |
tree | d37909a4c869b55fbe3f887a1dcad25bd7358b31 /hawd_defs | |
parent | 44837ee20acfdb0fe5f86826481fd708b19859bb (diff) | |
download | sink-ad9e3074f2949a0ea604bc191109fa0ad7b8e2e4.tar.gz sink-ad9e3074f2949a0ea604bc191109fa0ad7b8e2e4.zip |
Updated the information we collect for dummyresourcewritebenchmark
Diffstat (limited to 'hawd_defs')
-rw-r--r-- | hawd_defs/dummy_write_in_process | 11 | ||||
-rw-r--r-- | hawd_defs/dummy_write_in_process_summary | 10 |
2 files changed, 19 insertions, 2 deletions
diff --git a/hawd_defs/dummy_write_in_process b/hawd_defs/dummy_write_in_process index 5f0a3e6..548ff95 100644 --- a/hawd_defs/dummy_write_in_process +++ b/hawd_defs/dummy_write_in_process | |||
@@ -1,9 +1,16 @@ | |||
1 | { | 1 | { |
2 | "name": "In process write using DummyResource", | 2 | "name": "In process write using DummyResource", |
3 | "description": "Measures performance of the DummyResource class", | 3 | "description": "Measures performance, memory usage and disk usage of writing to the db.", |
4 | "columns": [ | 4 | "columns": [ |
5 | { "name": "rows", "type": "int" }, | 5 | { "name": "rows", "type": "int" }, |
6 | { "name": "append", "type": "float", "unit": "ops/ms" }, | 6 | { "name": "append", "type": "float", "unit": "ops/ms" }, |
7 | { "name": "total", "type": "float", "unit": "ops/ms" } | 7 | { "name": "total", "type": "float", "unit": "ops/ms" }, |
8 | { "name": "onDisk", "type": "float", "unit": "kb" }, | ||
9 | { "name": "bufferSize", "type": "float", "unit": "kb" }, | ||
10 | { "name": "writeAmplification", "type": "float"}, | ||
11 | { "name": "rss", "type": "int", "unit": "kb" }, | ||
12 | { "name": "peakRss", "type": "int", "unit": "kb" }, | ||
13 | { "name": "rssGrowthPerEntity", "type": "int", "unit": "byte" }, | ||
14 | { "name": "rssWithoutDb", "type": "int", "unit": "kb" } | ||
8 | ] | 15 | ] |
9 | } | 16 | } |
diff --git a/hawd_defs/dummy_write_in_process_summary b/hawd_defs/dummy_write_in_process_summary new file mode 100644 index 0000000..878a386 --- /dev/null +++ b/hawd_defs/dummy_write_in_process_summary | |||
@@ -0,0 +1,10 @@ | |||
1 | { | ||
2 | "name": "Summary values for in process write using DummyResource", | ||
3 | "description": "Summary values that should remain stable over dataset sized.", | ||
4 | "columns": [ | ||
5 | { "name": "rssStandardDeviation", "type": "float", "unit": "SD" }, | ||
6 | { "name": "rssMaxDifference", "type": "float", "unit": "byte" }, | ||
7 | { "name": "timeStandardDeviation", "type": "float", "unit": "SD" }, | ||
8 | { "name": "timeMaxDifference", "type": "float", "unit": "ms" } | ||
9 | ] | ||
10 | } | ||