frontend performance: beginner to expert to crazy person

49
FE Performance: Beginner to Expert to Crazy Person Philip Tellis / [email protected] Midwest.io / 2014-07-14 Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 1

Upload: philip-tellis

Post on 08-Sep-2014

786 views

Category:

Technology


1 download

DESCRIPTION

http://www.midwest.io/sessions/#monday-7a

TRANSCRIPT

Page 1: Frontend Performance: Beginner to Expert to Crazy Person

FE Performance: Beginner to Expert to CrazyPerson

Philip Tellis / [email protected]

Midwest.io / 2014-07-14

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 1

Page 2: Frontend Performance: Beginner to Expert to Crazy Person

• Philip Tellis• @bluesmoon• [email protected]• SOASTA• boomerang

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 2

Page 3: Frontend Performance: Beginner to Expert to Crazy Person

Get the most benefit with the least effort

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 3

Page 4: Frontend Performance: Beginner to Expert to Crazy Person

Bandwidth

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 4

Page 5: Frontend Performance: Beginner to Expert to Crazy Person

Bandwidth

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 5

Page 6: Frontend Performance: Beginner to Expert to Crazy Person

Patience

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 6

Page 7: Frontend Performance: Beginner to Expert to Crazy Person

0Beginning Web Performance

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 7

Page 8: Frontend Performance: Beginner to Expert to Crazy Person

Start with a really slow site

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 8

Page 9: Frontend Performance: Beginner to Expert to Crazy Person

0.1 Start Measuring

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 9

Page 10: Frontend Performance: Beginner to Expert to Crazy Person

Or use RUM for real user data (old skool)

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 10

Page 11: Frontend Performance: Beginner to Expert to Crazy Person

Or use RUM for real user data (boomerang/mPulse)

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 11

Page 12: Frontend Performance: Beginner to Expert to Crazy Person

0.2 enable gzip

http://slideshare.net/billwscott/improving-netflix-performance-experience

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 12

Page 13: Frontend Performance: Beginner to Expert to Crazy Person

You can pre-gzip

gzip_static in nginx

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 13

Page 14: Frontend Performance: Beginner to Expert to Crazy Person

0.3 ImageOptim

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 14

Page 15: Frontend Performance: Beginner to Expert to Crazy Person

0.4 Cache

Cache-control: public, max-age=31415926

http://www.mnot.net/cache_docs/

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 15

Page 16: Frontend Performance: Beginner to Expert to Crazy Person

Yes, that was 10 million pies

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 16

Page 17: Frontend Performance: Beginner to Expert to Crazy Person

0 Congratulations

You’ve just been promoted

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 17

Page 18: Frontend Performance: Beginner to Expert to Crazy Person

1What the Experts Do

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 18

Page 19: Frontend Performance: Beginner to Expert to Crazy Person

1.1 CDN

Serve your root domain through a CDN

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 19

Page 20: Frontend Performance: Beginner to Expert to Crazy Person

1.1 CDN

And make sure your CSS is on the same domain

http://www.jonathanklein.net/2014/02/revisiting-cookieless-domain.html

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 20

Page 21: Frontend Performance: Beginner to Expert to Crazy Person

1.1 CDN

Google Chrome will open two TCP connections tothe primary host, one for the page, and the second

"just in case"

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 21

Page 22: Frontend Performance: Beginner to Expert to Crazy Person

1.2 Split JavaScript

"critical": in the HEAD,"enhancements": loaded async

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 22

Page 23: Frontend Performance: Beginner to Expert to Crazy Person

1.3 Audit your CSS

Chrome WebDev tools

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 23

Page 24: Frontend Performance: Beginner to Expert to Crazy Person

Also checkout uncss for a command line option

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 24

Page 25: Frontend Performance: Beginner to Expert to Crazy Person

1.4 Parallelise downloads/use sprites

You can have higher bandwidth, you cannot have lower latency.

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 25

Page 26: Frontend Performance: Beginner to Expert to Crazy Person

1.5 Flush Early and Often

Get bytes to the client ASAP to avoid TCP SlowStart, and speed up CSS

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 26

Page 27: Frontend Performance: Beginner to Expert to Crazy Person

1.6 Increase initcwnd

Initial Congestion Window: Number of packets tosend before waiting for an ACK

http://www.cdnplanet.com/blog/tune-tcp-initcwnd-for-optimum-

performance/

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 27

Page 28: Frontend Performance: Beginner to Expert to Crazy Person

1.6 Increase initcwnd

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 28

Page 29: Frontend Performance: Beginner to Expert to Crazy Person

1.6b Also...

net.ipv4.tcp_slow_start_after_idle=0

http://www.lognormal.com/blog/2012/09/27/linux-tcpip-tuning/

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 29

Page 30: Frontend Performance: Beginner to Expert to Crazy Person

1.7 PageSpeed

mod_pagespeed and ngx_pagespeed

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 30

Page 31: Frontend Performance: Beginner to Expert to Crazy Person

Relax

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 31

Page 32: Frontend Performance: Beginner to Expert to Crazy Person

2You’ve reached crazyland

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 32

Page 33: Frontend Performance: Beginner to Expert to Crazy Person

Sort in ascending order of signal latency

• Electrons through copper• Light through fibre• Pulsars• Station Wagons• Smoke Signals

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 33

Page 34: Frontend Performance: Beginner to Expert to Crazy Person

Sort in ascending order of signal latency

1 Pulsars (light through vacuum)2 Smoke Signals (light through air)3 Electrons through copper / Light through fibre4 Station Wagons (possibly highest bandwidth)

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 34

Page 35: Frontend Performance: Beginner to Expert to Crazy Person

Study real user data

Look for potential places to parallelise, predict orcache

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 35

Page 36: Frontend Performance: Beginner to Expert to Crazy Person

2.1 Pre-load

Pre-fetch assets required for the next page in aprocess flow

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 36

Page 37: Frontend Performance: Beginner to Expert to Crazy Person

2.1b pre-render

<link rel="prerender" href="url">

<link rel="subresource" href="">

<link rel="dns-prefetch" href="">

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 37

Page 38: Frontend Performance: Beginner to Expert to Crazy Person

2.1c onVisibilityChange

And while you’re at it, don’t do expensive work if thepage is hidden

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 38

Page 39: Frontend Performance: Beginner to Expert to Crazy Person

2.2 Post-load

Fetch optional assets after onload

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 39

Page 40: Frontend Performance: Beginner to Expert to Crazy Person

2.3 Detect broken accept-encoding

Many Windows anti-viruses and firewalls disablegzip by munging the Accept-Encoding header

http://www.lognormal.com/blog/2012/08/17/accept-encoding-stats/

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 40

Page 41: Frontend Performance: Beginner to Expert to Crazy Person

2.4 Prepare for HTTP/2.0

Multiple assets on the same connection and TLS bydefault.

Breaks many of our rules.

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 41

Page 42: Frontend Performance: Beginner to Expert to Crazy Person

2.5 Understand 3PoFs

Use blackhole.webpagetest.org

http://blog.patrickmeenan.com/2011/10/testing-for-frontend-spof.html

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 42

Page 43: Frontend Performance: Beginner to Expert to Crazy Person

2.6 Understand the IFrame Loader Technique

Take required but non-critical assets out of thecritical path

http://www.lognormal.com/blog/2012/12/12/the-script-loader-pattern/

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 43

Page 44: Frontend Performance: Beginner to Expert to Crazy Person

Can you predict round-trip-time?

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 44

Page 45: Frontend Performance: Beginner to Expert to Crazy Person

Can you predict round-trip-time?

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 45

Page 46: Frontend Performance: Beginner to Expert to Crazy Person

References

• WebPageTest – http://webpagetest.org

• Boomerang – http://lognormal.github.io/boomerang/doc/

• SOASTA mPulse – http://www.soasta.com/free

• Netflix gzip study – http://www.slideshare.net/billwscott/improving-netflix-performance-experience

• Nginx gzip_static – http://wiki.nginx.org/HttpGzipStaticModule

• ImageOptim – http://imageoptim.com/

• uncss – https://github.com/giakki/uncss

• Caching – http://www.mnot.net/cache_docs/

• Same domain CSS – http://www.jonathanklein.net/2014/02/revisiting-cookieless-domain.html

• initcwnd – http://www.cdnplanet.com/blog/tune-tcp-initcwnd-for-optimum-performance/

• Linux TCP Tuning – http://www.lognormal.com/blog/2012/09/27/linux-tcpip-tuning/

• Prerender – https://developers.google.com/chrome/whitepapers/prerender

• DNS prefetching – https://developer.mozilla.org/en-US/docs/Controlling_DNS_prefetching

• Subresource – http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource

• FE SPoF – http://blog.patrickmeenan.com/2011/10/testing-for-frontend-spof.html

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 46

Page 47: Frontend Performance: Beginner to Expert to Crazy Person

Thank You!Questions?

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 47

Page 48: Frontend Performance: Beginner to Expert to Crazy Person

• Philip Tellis• @bluesmoon• [email protected]• www.SOASTA.com• boomerang• LogNormal Blog

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 48

Page 49: Frontend Performance: Beginner to Expert to Crazy Person

Image Credits

• Jean-Antoine Nollethttp://en.wikipedia.org/wiki/Jean-Antoine_Nollet

• Apple Piehttp://www.flickr.com/photos/24609729@N00/3353226142/

• Kittens in a PChttp://www.flickr.com/photos/43525343@N08/6417971383/

Midwest.io / 2014-07-14 FE Performance: Beginner to Expert to Crazy Person 49