From d75d7848f98fdd857f933600d646dcaa855866f3 Mon Sep 17 00:00:00 2001 From: JiaShuo Date: Thu, 4 Jun 2020 16:58:33 +0800 Subject: [PATCH] fix support read only --- pegasus/bin/parse_result.py | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/pegasus/bin/parse_result.py b/pegasus/bin/parse_result.py index 2c8d365..08acb5e 100755 --- a/pegasus/bin/parse_result.py +++ b/pegasus/bin/parse_result.py @@ -74,23 +74,26 @@ def parseLine(line: str, resultTable): # Insert segments = value.split('\\n[INSERT],') segments = list(map(str.strip, segments)) - # W-QPS - ops = parseNum(findAttrKeyInValue(segments, 'Operations,')) - qps = ops / runTimeSec - # W-AVG-Lat - avg = findAttrKeyInValue(segments, 'AverageLatency(us),') - # W-P95-Lat - p95 = findAttrKeyInValue(segments, '95.0thPercentileLatency(us),') - # W-P99-Lat - p99 = findAttrKeyInValue(segments, '99.0thPercentileLatency(us),') - # W-P999-Lat - p999 = findAttrKeyInValue(segments, '99.9thPercentileLatency(us),') - # W-P9999-Lat - p9999 = findAttrKeyInValue(segments, '99.99thPercentileLatency(us),') - # W-MAX-Lat - maxL = findAttrKeyInValue(segments, 'MaxLatency(us),') - row = row + [int(qps), parseNum(avg), parseNum(p95), parseNum( + if len(segments) > 1: + # W-QPS + ops = parseNum(findAttrKeyInValue(segments, 'Operations,')) + qps = ops / runTimeSec + # W-AVG-Lat + avg = findAttrKeyInValue(segments, 'AverageLatency(us),') + # W-P95-Lat + p95 = findAttrKeyInValue(segments, '95.0thPercentileLatency(us),') + # W-P99-Lat + p99 = findAttrKeyInValue(segments, '99.0thPercentileLatency(us),') + # W-P999-Lat + p999 = findAttrKeyInValue(segments, '99.9thPercentileLatency(us),') + # W-P9999-Lat + p9999 = findAttrKeyInValue(segments, '99.99thPercentileLatency(us),') + # W-MAX-Lat + maxL = findAttrKeyInValue(segments, 'MaxLatency(us),') + row = row + [int(qps), parseNum(avg), parseNum(p95), parseNum( p99), parseNum(p999), parseNum(p9999), parseNum(maxL)] + else: # else: load mode, no write result. + row = row + [0, 0, 0, 0, 0, 0, 0] # Read segments = value.split('\\n[READ],')