Merge pull request #266 from gyuho/format

*: update results README
This commit is contained in:
Gyu-Ho Lee 2017-02-04 22:15:19 -08:00 committed by GitHub
commit 7ec51542fb
3 changed files with 7 additions and 4 deletions

View File

@ -43,7 +43,7 @@ All logs and results can be found at https://console.cloud.google.com/storage/br
| NETWORK-RECEIVE-DATA-SUM | 5.1 GB | 5.0 GB | 5.5 GB |
| NETWORK-TRANSMIT-DATA-SUM | 3.9 GB | 4.0 GB | 4.2 GB |
| MAX-CPU-USAGE | 451.00 % | 800.00 % | 409.33 % |
| MAX-MEMORY-USAGE | 1316.36 MB | 3596.23 MB | 4691.18 MB |
| MAX-MEMORY-USAGE | 1.3 GB | 3.7 GB | 4.7 GB |
| TOTAL-SECONDS | 324.5626 sec | 335.0999 sec | 667.9389 sec |
| MAX-THROUGHPUT | 36,479 req/sec | 41,799 req/sec | 15,969 req/sec |
| AVG-THROUGHPUT | 3,081 req/sec | 2,961 req/sec | 1,497 req/sec |
@ -101,3 +101,4 @@ All logs and results can be found at https://console.cloud.google.com/storage/br
<img src="https://storage.googleapis.com/dbtester-results/2017Q1-02-etcd-zookeeper-consul/01-write-1M-keys-client-variable/AVG-TRANSMIT-BYTES-NUM-DELTA.svg" alt="2017Q1-02-etcd-zookeeper-consul/01-write-1M-keys-client-variable/AVG-TRANSMIT-BYTES-NUM-DELTA">

View File

@ -211,9 +211,11 @@ func do(configPath string) error {
row07TransmitBytesSum = append(row07TransmitBytesSum, humanize.Bytes(uint64(transmitBytesNumDeltaSum)))
row08MaxCPUUsage = append(row08MaxCPUUsage, fmt.Sprintf("%.2f %%", maxAvgCPU))
// TODO: linux sometimes returns overflowed value...
// TODO: handle overflowed memory value?
sort.Float64s(maxAvgVMRSSMBs)
row09MaxMemoryUsage = append(row09MaxMemoryUsage, fmt.Sprintf("%.2f MB", maxAvgVMRSSMBs[len(maxAvgVMRSSMBs)-2]))
mv := maxAvgVMRSSMBs[len(maxAvgVMRSSMBs)-1]
mb := uint64(mv * 1000000)
row09MaxMemoryUsage = append(row09MaxMemoryUsage, humanize.Bytes(mb))
}
row05AverageDatasize := []string{"AVG-DATA-SIZE-ON-DISK"} // TOTAL-DATA-SIZE

View File

@ -27,7 +27,7 @@
| NETWORK-RECEIVE-DATA-SUM | 5.1 GB | 5.0 GB | 5.5 GB |
| NETWORK-TRANSMIT-DATA-SUM | 3.9 GB | 4.0 GB | 4.2 GB |
| MAX-CPU-USAGE | 451.00 % | 800.00 % | 409.33 % |
| MAX-MEMORY-USAGE | 1316.36 MB | 3596.23 MB | 4691.18 MB |
| MAX-MEMORY-USAGE | 1.3 GB | 3.7 GB | 4.7 GB |
| TOTAL-SECONDS | 324.5626 sec | 335.0999 sec | 667.9389 sec |
| MAX-THROUGHPUT | 36,479 req/sec | 41,799 req/sec | 15,969 req/sec |
| AVG-THROUGHPUT | 3,081 req/sec | 2,961 req/sec | 1,497 req/sec |