Skip to content
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

core(lantern): maximize throughput under HTTP/2 #11666

Merged
merged 5 commits into from
Dec 7, 2020

Conversation

patrickhulce
Copy link
Collaborator

Summary
Basically we were creating too many connections under HTTP/2 simulation in our connection pool that meant warm connections with excess bandwidth didn't get used properly.

It doesn't really have a huge effect in most real-world CLI or DevTools usage because we can usually trust the connectionReused boolean data from the network records there, but the effect in the tests @Beytoven was creating was large because most of our toy examples all share a connection ID (one of the conditions where we discard observed connection warmth).

Metric                    p50 (% Error)        p90 (% Error)        p95 (% Error)
optimisticFCP             29.3% ↔  0.0%        52.9% ↔  0.0%        62.3% ↔  0.0%
pessimisticFCP            27.7% ↔  0.0%        50.1% ↔  0.0%        62.3% ↔  0.0%
roughEstimateOfFCP        29.2% ↔  0.0%        50.1% ↔  0.0%        58.0% ↔  0.0%
optimisticFMP             33.5% ↔  0.2%        66.5% ↔  0.0%        71.1% ↔  0.0%
pessimisticFMP            29.3% ↔  0.0%        51.9% ↔  0.0%        62.3% ↔  0.0%
roughEstimateOfFMP        30.2% ↔  0.0%        53.9% ↔  0.0%        66.4% ↔  0.0%
optimisticTTFCPUI         30.3% ↓  0.8%        66.4% ↔  0.5%        95.0% ↔  0.0%
pessimisticTTFCPUI        25.2% ↔  0.0%        76.9% ↔  0.0%        135.0% ↔  0.0%
roughEstimateOfTTFCPUI    28.5% ↓  1.7%        65.1% ↓  1.5%        81.0% ↓↓ 13.9%
optimisticTTI             40.9% ↑  1.2%        70.3% ↓  1.1%        81.0% ↔  0.0%
pessimisticTTI            24.7% ↔  0.0%        65.3% ↔  0.0%        77.8% ↔  0.0%
roughEstimateOfTTI        30.6% ↑  2.1%        65.8% ↔  0.0%        74.4% ↔  0.0%
optimisticSI              75.7% ↔  0.0%        86.0% ↔  0.0%        89.3% ↔  0.0%
pessimisticSI             38.4% ↔  0.0%        79.6% ↔  0.0%        125.0% ↔  0.0%
roughEstimateOfSI         27.5% ↔  0.0%        70.2% ↔  0.0%        100.8% ↔  0.0%
optimisticLCP             21.9% ↓  1.3%        71.4% ↑↑ 6.9%        87.7% ↔  0.0%
pessimisticLCP            20.8% ↔  0.0%        74.8% ↔  0.0%        96.6% ↔  0.0%
roughEstimateOfLCP        20.4% ↓  0.7%        64.6% ↔  0.0%        87.7% ↔  0.0%

 ------- Bucket Summary -------
Good:      151   ↑  2
OK:        228   ↔  1
Bad:       81    ↓  1

 ------- % Error Summary -------
p50:       28.4% ↔  0.0%
p90:       59.6% ↔  0.1%
p95:       72.4% ↓  0.9%

Related Issues/PRs
Fixes #11657

Copy link
Collaborator

@connorjclark connorjclark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wait for v7

@connorjclark
Copy link
Collaborator

Still good to merge?

@patrickhulce
Copy link
Collaborator Author

yup 👍

@patrickhulce patrickhulce merged commit a582a67 into master Dec 7, 2020
@patrickhulce patrickhulce deleted the simulator_slow_download branch December 7, 2020 21:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Investigate simulator behavior given test data
4 participants