-
Notifications
You must be signed in to change notification settings - Fork 110
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
URL Metric compression during pagehide
event results in no storage request
#1928
Comments
@westonruter diff --git a/plugins/optimization-detective/detect.js b/plugins/optimization-detective/detect.js
index cd42fd58..63ecb0c4 100644
--- a/plugins/optimization-detective/detect.js
+++ b/plugins/optimization-detective/detect.js
@@ -725,6 +725,11 @@ export default async function detect( {
log( 'Current URL Metric:', urlMetric );
+ let compressedPayloadBlob;
+ if ( gzdecodeAvailable ) {
+ compressedPayloadBlob = await compress( JSON.stringify( urlMetric ) );
+ }
+
// Wait for the page to be hidden.
await new Promise( ( resolve ) => {
win.addEventListener( 'pagehide', resolve, { once: true } );
@@ -826,7 +831,7 @@ export default async function detect( {
}
const payloadBlob = gzdecodeAvailable
- ? await compress( jsonBody )
+ ? compressedPayloadBlob
: new Blob( [ jsonBody ], { type: 'application/json' } );
const percentOfBudget =
( payloadBlob.size / ( maxBodyLengthKiB * 1000 ) ) * 100; Alternatively we could also disable URL metrics compression for the diff --git a/plugins/optimization-detective/detect.js b/plugins/optimization-detective/detect.js
index cd42fd58..4bce19ea 100644
--- a/plugins/optimization-detective/detect.js
+++ b/plugins/optimization-detective/detect.js
@@ -727,7 +727,14 @@ export default async function detect( {
// Wait for the page to be hidden.
await new Promise( ( resolve ) => {
- win.addEventListener( 'pagehide', resolve, { once: true } );
+ win.addEventListener(
+ 'pagehide',
+ function () {
+ gzdecodeAvailable = false; // Prevent sending compressed data.
+ resolve();
+ },
+ { once: true }
+ );
win.addEventListener( 'pageswap', resolve, { once: true } );
doc.addEventListener(
'visibilitychange',
|
@b1ink0 Due to the client-side extension script modules, the URL Metric data may be modified at any point up until performance/plugins/optimization-detective/detect.js Lines 751 to 810 in 47eef00
This used by Image Prioritizer to populate the performance/plugins/image-prioritizer/detect.js Lines 143 to 160 in 47eef00
(Granted, this might be able to be refactored so that it happens at However, this also used by Embed Optimizer to populate the performance/plugins/embed-optimizer/detect.js Lines 57 to 89 in 47eef00
This latter example is more important here because the resize observer will fire only when the embeds get resized, which due to them being lazy loaded, will only happen after the user scrolls down in the page and thus at an indeterminate time after the page has loaded. While the LCP metric happens around when the page loads, normally, the CLS metric is cumulative across the life of the page, so we need to be able to keep capturing the data. The reason for sending the URL Metric at
But this would entail sending the URL Metric data twice, once when the page loads and then again to try doing when leaving the page, right? |
No, this would only disable the URL metrics compression logic, ensuring that |
@b1ink0 OK, it seems that could work since I understand the performance/plugins/optimization-detective/detect.js Lines 732 to 741 in 47eef00
I can't remember why I added the |
@b1ink0 Here's another idea, which is somewhat a variant of your idea: #1893 (comment) The only downside is it means compression would happen potentially multiple times in the life of the page to re-compress the URL Metric data after each modification (with debouncing). |
While carefully and extensively testing #1924 on my site, I was noticing that the URL Metric data was not consistently being submitted when navigating between pages. It would be sent if I changed tabs (when the
visibilitychange
event fires), but it would not be sent at thepagehide
event.I tested in Chrome, Firefox, and Safari. (For Safari, I had to remove the
onLCP
part due to #1925.) My debugging approach was to addsessionStorage.setItem( 'lastLineExecuted', '{lineNumber}' )
calls at various points in thedetect()
function after thepagehide
,pageswap
, andvisibilitychange
events occur:detect.js.diff
(Note that I didn't use
console.trace()
because Chrome doesn't seem to put these in the console when the page is being navigated away from, even when console persistence is enabled.)In all three browsers, when gzip compression is enabled, the
lastLineExecuted
is usually832
which is right before compression occurs:performance/plugins/optimization-detective/detect.js
Lines 828 to 830 in 47eef00
(I say usually because Chrome sometimes will go ahead and finish executing to the end of the function.)
Safari also produces an actual error in the console:
This error in Safari with the
Blob
doesn't occur when switching tabs to cause the URL Metric to be sent at thevisibilitychange
event.However, when I try disabling gzip compression via:
Then the
lastLineExecuted
is901
for all three browsers consistently, which is the very end of the function in Chrome, Safari, and Firefox. And more importantly, when compression is disabled, URL Metrics are consistently submitted when navigating away from a page in each of the three browsers.This seems to indicate that it is not feasible to compress the URL Metric for submission (proposed in #1893 and implemented in #1905). Nevertheless, there is one way I tried which would allow compression to be used reliably (in Firefox and Chrome): using the
beforeunload
event instead of thepagehide
event. There is a big downside to using thebeforeunload
event, however: It disables bfcache. Nevertheless, it would only be disabling bfcache when the current client is gathering URL Metrics, which should be a small percentage of the actual visitors (depending on the amount of traffic to the site, of course), for example three visitors to a given page using a mobile device would have bfcache disabled while URL Metrics are collected for their visits. I think this is an acceptable tradeoff. All this being said, Safari throws a different error related to the compressedBlob
when using thebeforeunload
event:Therefore, it seems using gzip compression is not going to be viable at least for the near future. This will need to be reverted for the next release.
The text was updated successfully, but these errors were encountered: