documentation: Correct calculation of QPS
QPS is queries-per-second, but I had computed it as queries-per-minute as I failed to account for 60 minutes in an hour. Change-Id: I706c81d3d7fd6677aaf4727c064d5aedf7230aa5 Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
parent
5d5d200f9f
commit
57c4ba8e81
@ -524,8 +524,8 @@ per second (QPS).
|
||||
QPD = Changes_Day * Revisions_Change * Reviewers_Change * (4 + F + F * C)
|
||||
= 400 * 2.0 * 1.0 * (4 + 4 + 4 * 2)
|
||||
= 12,800
|
||||
QPS = QPD / 8_Hours / 60_Seconds
|
||||
= 26
|
||||
QPS = QPD / 8_Hours / 60_Minutes / 60_Seconds
|
||||
= 0.43
|
||||
----
|
||||
|
||||
Gerrit serves most requests in under 60 ms when using the loopback
|
||||
|
Loading…
x
Reference in New Issue
Block a user