A collection of broken clocks

Heavy throttling of chained JS timers beginning in Chrome 88

Published on Updated on

Chrome 88 (January 2021) will heavily throttle chained JavaScript timers for hidden pages in particular conditions. This will reduce CPU usage, which will also reduce battery usage. There are some edge cases where this will change behavior, but timers are often used where a different API would be more efficient, and more reliable.

OK, that was pretty jargon heavy, and a bit ambiguous. Let's dig in…

Terminology

Hidden pages

Generally, hidden means a different tab is active, or the window has been minimized, but browsers may consider a page hidden whenever its content is totally not-visible. Some browsers go further than others here, but you can always use the page visibility API to track when the browser thinks visibility has changed.

JavaScript timers

By JavaScript timers I mean setTimeout and setInterval, which allow you to schedule a callback sometime in the future. Timers are useful, and they aren't going away, but sometimes they're used to poll state when an event would be more efficient, and more accurate.

Chained timers

If you call setTimeout in the same task as a setTimeout callback, the second invocation is 'chained'. With setInterval, each iteration is part of the chain. This might be easier to understand with code:

let chainCount = 0;

setInterval(() => {
chainCount++;
console.log(`This is number ${chainCount} in the chain`);
}, 500);

And:

let chainCount = 0;

function setTimeoutChain() {
setTimeout(() => {
chainCount++;
console.log(`This is number ${chainCount} in the chain`);
setTimeoutChain();
}, 500);
}

How the throttling works

The throttling happens in stages:

Minimal throttling

This happens to timers that are scheduled when any of the following is true:

  • The page is visible.
  • The page has made noises in the past 30 seconds. This can be from any of the sound-making APIs, but a silent audio track doesn't count.

The timer isn't throttled, unless the requested timeout is less than 4ms, and the chain count is 5 or greater, in which case the timeout is set to 4ms. This isn't new; browsers have done this for many years.

Throttling

This happens to timers that are scheduled when minimal throttling doesn't apply, and any of the following is true:

  • The chain count is less than 5.
  • The page has been hidden for less than 5 minutes.
  • WebRTC is in use. Specifically, there's an RTCPeerConnection with an 'open' RTCDataChannel or a 'live' MediaStreamTrack.

The browser will check timers in this group once per second. Because they're only checked once per second, timers with a similar timeout will batch together, consolidating the time the tab needs to run code. This isn't new either; browsers have been doing this to some extent for years.

Intensive throttling

OK, here's the new bit in Chrome 88. Intensive throttling happens to timers that are scheduled when none of the minimal throttling or throttling conditions apply, and all of the following conditions are true:

  • The page has been hidden for more than 5 minutes.
  • The chain count is 5 or greater.
  • The page has been silent for at least 30 seconds.
  • WebRTC is not in use.

In this case, the browser will check timers in this group once per minute. Similar to before, this means timers will batch together in these minute-by-minute checks.

Workarounds

There's usually a better alternative to a timer, or timers can be combined with something else to be kinder to CPUs and battery life.

State polling

This is the most common (mis)use of timers, where they're used to continually check or poll to see if something has changed. In most cases there's a push equivalent, where the thing tells you about the change when it happens, so you don't have to keep checking. Look to see if there's an event that achieves the same thing.

Some examples:

There's also notification triggers if you want to show a notification at a particular time.

Animation

Animation is a visual thing, so it shouldn't use CPU time when the page is hidden.

requestAnimationFrame is much better at scheduling animation work than JavaScript timers. It synchronizes with the refresh rate of the device, ensuring you only get one callback per displayable frame, and you get the maximum amount of time to construct that frame. Also, requestAnimationFrame will wait for the page to be visible, so it doesn't use any CPU when the page is hidden.

If you can declare your whole animation up-front, consider using CSS animations or the web animations API. These have the same advantages as requestAnimationFrame, but the browser can perform additional optimizations like automatic compositing, and they're generally easier to use.

If your animation is low-framerate (like a blinking cursor), timers are still the best option right now, but you can combine them with requestAnimationFrame to get the best of both worlds:

function animationInterval(ms, signal, callback) {
const start = document.timeline.currentTime;

function frame(time) {
if (signal.aborted) return;
callback(time);
scheduleFrame(time);
}

function scheduleFrame(time) {
const elapsed = time - start;
const roundedElapsed = Math.round(elapsed / ms) * ms;
const targetNext = start + roundedElapsed + ms;
const delay = targetNext - performance.now();
setTimeout(() => requestAnimationFrame(frame), delay);
}

scheduleFrame(start);
}

Usage:

const controller = new AbortController();

// Create an animation callback every second:
animationInterval(1000, controller.signal, time => {
console.log('tick!', time);
});

// And stop it:
controller.abort();

Testing

This change will be enabled for all Chrome users in Chrome 88 (January 2021). It's currently enabled for 50% of Chrome Beta, Dev, and Canary users. If you want to test it, use this command line flag when launching Chrome Beta, Dev, or Canary:

--enable-features="IntensiveWakeUpThrottling:grace_period_seconds/10,OptOutZeroTimeoutTimersFromThrottling,AllowAggressiveThrottlingWithWebSocket"

The grace_period_seconds/10 argument causes intense throttling to kick in after 10 seconds of the page being hidden, rather than the full 5 minutes, making it easier to see the impact of the throttling.

The future

Since timers are a source of excessive CPU use, we're going to continue to look at ways we can throttle them without breaking web content, and APIs we can add/change to meet use-cases. Personally, I'd like to eliminate the need for animationInterval in favor of efficient low-frequency animation callbacks. If you have any questions, please reach out to me on Twitter!

Header photo by Heather Zabriskie on Unsplash.

Updated on Improve article

Back

SharedArrayBuffer updates in Android Chrome 88 and Desktop Chrome 92

Next

The Chromium Chronicle #16: Updating Google Apps on Desktop

This site uses cookies to deliver and enhance the quality of its services and to analyze traffic. If you agree, cookies are also used to serve advertising and to personalize the content and advertisements that you see. Learn more about our use of cookies.