Can Google.com and other heavily trafficked websites get a “fast” rank using Google's PSI API?

后端 未结 3 2133
野趣味
野趣味 2021-02-19 10:46

Google changed its PSI definition of fast-ranking FCP from 90-percentile to 75-percentile below 1000ms

From PSI documentation:

相关标签:
3条回答
  • 2021-02-19 11:33

    To directly answer the question, no it's not impossible to get a fast FCP label. There's more to the question so I'll try to elaborate.

    Another way to phrase the "fast" criteria is: "Do at least 90% of user experiences have an FCP less than 1 second?"

    Why 90%? Because it's inclusive of a huge proportion of user experiences. As the PSI docs say:

    Our goal is to make sure that pages work well for the majority of users. By focusing on 90th and 95th percentile values for our metrics, this ensures that pages meet a minimum standard of performance under the most difficult device and network conditions.

    Why 1 second? It's a subjective value for how quickly users expect the page to start showing meaningful progress. After 1 second, users may become distracted or even frustrated. Of course the holy grail is to have instant loading, but this is chosen as a realistic benchmark to strive towards.

    So at worst 10% of the FCP experience is 1 second or slower. That specific kind of guarantee is a high enough bar to be confident that users ~consistently have a fast experience.

    That explains why the bar is set where it is. To the question of how realistic it is to achieve, we can actually answer that using the publicly available CrUX data on BigQuery.

    #standardSQL
    SELECT
      p90,
      COUNT(0) AS numOrigins
    FROM (
      SELECT
        origin,
        MIN(start) AS p90
      FROM (
        SELECT
          origin,
          bin.start,
          SUM(bin.density) OVER (PARTITION BY origin ORDER BY bin.start) AS cdf
        FROM
          `chrome-ux-report.all.201901`,
          UNNEST(first_contentful_paint.histogram.bin) AS bin)
      WHERE
        cdf >= 0.9
      GROUP BY
        origin)
    GROUP BY
      p90
    ORDER BY
      p90
    

    This is a query that counts where in the FCP histogram origins have their 90th percentile. If that sounds confusing, here's a visualization:

    Where the red cumulative distribution line crosses the 1000ms mark tells us the percent of origins who would be labelled as fast. It isn't very many; just 2% or 110153 origins in the dataset.

    Anecdotally, browsing through the list of "fast FCP" origins, many of them have .jp and .kr TLDs. It's reasonable to assume they are localized Japanese and Korean websites whose users are almost entirely from those countries. And these are countries with fast internet speeds. So naturally it'd be easier to serve a fast website 90+% of the time when your users have consistently fast connection speeds.

    Another thing we can do to get a sense of origin popularity is join it with the Alexa Top 1 Million Domains list:

    #standardSQL
    SELECT
      Alexa_rank,
      Alexa_domain,
      COUNT(0) AS numOrigins,
      ARRAY_AGG(origin LIMIT 3) AS originSample
    FROM (
      SELECT
        origin,
        MIN(start) AS p90
      FROM (
        SELECT
          origin,
          bin.start,
          SUM(bin.density) OVER (PARTITION BY origin ORDER BY bin.start) AS cdf
        FROM
          `chrome-ux-report.all.201901`,
          UNNEST(first_contentful_paint.histogram.bin) AS bin)
      WHERE
        cdf >= 0.9
      GROUP BY
        origin)
    JOIN
      `httparchive.urls.20170315`
    ON
      NET.REG_DOMAIN(origin) = Alexa_domain
    WHERE
      p90 < 1000
    GROUP BY
      Alexa_rank,
      Alexa_domain
    ORDER BY
      Alexa_rank
    

    There are 35985 origins whose domains are in the top 1M. You can run the query for yourself to see the full results.

    You can see that there are ~100 origins on top 20 domains that qualify as fast for FCP. Cherrypicking some interesting examples further down the list:

    • [#139] https://mobile.alibaba.com
    • [#178] https://www.google.se
    • [#422] http://www.design.samsung.com
    • [#744] http://taxes.ca.gov

    Big caveat that these origins are not necessarily top ranked, just their domains. Without having origin ranking data this is the best approximation I can do.

    Lesser caveat that BigQuery and PSI are slightly different datasets and PSI segments by desktop/mobile while my analysis combines them together. So this research is not a perfect representation of what to expect on PSI.

    Finally, I just want to address something else that was in the question about getting 100 scores in Lighthouse. A score of 100 doesn't necessarily mean that there isn't anything left to improve. Synthetic tests like that need to be calibrated to be representative of the actual user experience. So for example the performance audits might start failing if tested under conditions representative of user experiences in the Philippines. Actually running the test from that location might turn up performance problems, eg content distribution issues, in addition to the conditions that we could simulate anywhere like connection speed.

    To summarize everything:

    • The bar is set high because we want to ensure that a vast majority of user experiences are fast
    • Many websites are already exceeding this bar, albeit a small proportion of the overall dataset
    • The Alexa ranking shows us that it's possible to have a heavily trafficked website and also provide consistently fast experiences
    0 讨论(0)
  • 2021-02-19 11:44

    Will a page like nytimes.com ever be considered fast with this standard, when even google.com's desktop page is ranked slow based on field data?

    The answer is: YES, absolutely.

    I get your confusion. It is caused by the false assumption that Google has a well-performing website. Please note that Googles homepage is ridiculously large. The HTML alone is over 200kb. The javascript it loads weighs a massive 436kb. The total weight of the page is over 1Mb. And what do we see on this page? Absolutely nothing. It is literally an empty white page. One megabyte is the amount of code that could fill 500 pages of a book. The code in these two Harry Potter novels needs to be executed by your browser as soon as you load this empty page.

    Just to give you another idea of how rediculously large this is: I own a web development agency in Amsterdam and my website (front page) is just as emtpy as this Google page. However, it weighs only 41kb (including a completely unnecessary custom woff2 font file, which takes up 17kb).

    When you connect to the Google homepage with a regular 3G connection, the page takes over 3.5 seconds to load. Just think about what that means for people in Jamaica or Cuba! They will have close to no access to Google on desktop, or at least a very bad experience. As a comparison: my website loads in 0.7 seconds over regular 3G. It is important to know that size is the main speed influencer when you have slow(er) internet (which is half of the world).

    So... the Google homepage on desktop is a very bad example and more than deserves its low (speed) score. The New York Times can easily get a better score, simply by reducing the weight of its pages below the weight of the Google homepage.

    Performance score versus FCP

    Last time I checked (early Feb. 2018), the Desktop google.com received a 100 Lighthouse synthetic score, which is supposed to be interpreted as "there is little room for improvement," and yet, the page is ranked "slow" because the 90th percentile FCP is way over 3s.

    In the part above you relate the score of 100 to the FCP. It is not as simple as that (anymore). The performance score is a complex metric. It is the weighted avarage of the variables below (note that the FCP is no longer part of this).

    First meaningful paint - weight: 5
    First interactive - weight: 5
    Consistently interactive - weight: 5
    Speed index metric - weight: 1
    Estimated input latency - weight: 1

    Note that the Google homepage takes 3.5 seconds to be interactive (according to Lighthouse). However, it currently still scores 97 on performance, due to the way the metric is calculated, which is at least remarkable. This confirms that the (near) 100 score can be a misleading figure.

    0 讨论(0)
  • 2021-02-19 11:48

    You are misinterpreting the google lighthouse results. First of all, no performance test is absolute. It's impossible to have a fully 100% performant page simply because even if it loads in 1 second for me, it might not load in 1 second for a person in Ghana due to network issues and delays. Even if I have a pure HTML page with no javascript which is served as a static file from a super fast web server, that page might load in 10 seconds for a person with a dial up internet somewhere in Cuba or Jamaica.

    Heavy traffic simply means "I get traffic not just from USA or Europe where the internet is blazing fast, I also get traffic from Jamaica where internet speed is a joke". Every serious web application has this issue. So yes, there is little room for improvement because you do everything right - it's a local internet issue.

    I guess this immediately translates to a sociological/political "first world problem" mind set issue. You are obviously living in a first world country or at least have 3G/4G internet and you can't imagine that people in Jamaica have 2G internet. So don't fret about the lighthouse percentages. Making a web site fully 100% performant which loads in under 1 second anywhere on the globe is impossible due to technical limitations of that country - impossible for you to fix.

    0 讨论(0)
提交回复
热议问题