-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reported results are not feasible #9168
Comments
Strangely though, the official benchmarks do not show any results for |
There is currently no cloud environment. The current environment is 40gbit. Have to update the docs. |
When you click cloud, the results should probably be empty then to not confuse people. |
There are many explanations here: #7402 Here I repeated the results on 99% identical hardware for the There I also showed the throughput when using a 25Gbit network: 21387110 req/sec |
Understood. The docs stated it was 10gbit Ethernet which is what made them infeasible. |
The vast majority of the
plaintext
results are not possible on 10 Gbit ethernet.The maximum transfer speed of 10gbit ethernet is 1,250 megabytes per second.
The minimum valid http response for
plaintext
is 142 bytes, the headers are 129 bytes, and the payload 13 bytes.You could reduce it a bit will a smaller server name.
so, the top result of
28,733,734
bymrhttp
is not possible, as this would equate to:28733734 * 142 / (1024*1024) = 3891 megabytes per second
The approximate theoretical maximum requests per second between a single client and single server machine on 10gbit ethernet is 9230422 requests per second - which would mean everything above 70th place is impossible. This also assumes that the packet rate is not exceeded (i.e. that every ethernet frame is filled to capacity).
The only way this would be possible is using multiple coordinated client machines with dedicated ethernet connections to multiple server machines - but the
latest environment
documentation does not describe this as being the case.Can you provide more details on how these numbers are achieved? Thanks.
The text was updated successfully, but these errors were encountered: