We’re seeing very long SSL negotiation times of 2-9 seconds that are blowing out results and are not reflective of real world results. It happens for services like Facebook and New Relic.
Is it just us or a wider problem?
Screenshot attached. Can send through specific test if required.
Try running the same test with Chrome to see if the delay is because of certificate revocation checks (they will show up as additional requests in the SSL negotiation time).
We had a bug that we fixed recently (few weeks ago) where the OS certificate caches were not getting cleared so IE was showing faster SSL times than Firefox and Chrome because of cached certificate results.
Real world results will be somewhere in between depending on the user’s operating system and how recently they have visited a site that establishes SSL connections to the given domain (Windows XP doesn’t do revocation checks but Windows 7 and later do).
Hi,
I’m also facing similar issues. For my https pages, the SSL negotiation time taken is around 3 to 9 seconds which makes the total page load time between 12 - 20 seconds which is wrong.
When I test the same pages through other tools such as GTMetrix, gomez etc, the total page load time is well under 7 seconds.
It’s not a bug, what you see is actually the result of a bug being fixed where webpagetest was not clearing the OS OCSP and CRL caches. The reason a lot of the other tools are not showing it is that they are not using IE on Windows Vista+ or if they are then they are also not clearing the certificate caches and the certificate verification is being cached across tests.
For private instances I may be able to provide a config setting that allows you to disable the certificate cache clearing but it is absolutely something you should pay attention to (it is actually a recent optimization that Cloudflare implemented - http://blog.cloudflare.com/ocsp-stapling-how-cloudflare-just-made-ssl-30 ).
It is a bit unfortunate that the OCSP/CRL requests are not displayed in the waterfall. If you capture a tcpdump then you can see them happening and the SSL negotiation is completely blocked until the additional requests complete. The IE 10 agent uses a different method for capturing the waterfall data and you can clearly see the certificate validation requests: http://www.webpagetest.org/result/130107_7D_48e1073a699d102c1dc1516fe9820fc7/1/details/
Having to do 6 certificate validations for your base page is what is making the negotiation time so long. If you look further down the waterfall you can see the omniture request has 1 validation check and the doubleclick negotiations each generate 2 CRL requests (which are more expensive than OCSP)
I was trying to check the speed difference in my site when loading jQuery from https or http of Google’s CDN that contains the jQuery library among others.
1.4 seconds is a lot, when in my own PC, chrome dev tools shows the total time 140 ms (55 ms for SSL).
I tried resetting the SSL certs (win7) with the code the have put in this thread:
[code]certutil -urlcache * delete
clear IE cache
[/code]
and of course, clearing Chrome caches. Still same result (55ms for SSL)
Because googleapis is a popular CDN , it’s quite unrealistic that for someone will take as much as 1.4s
Chrome does not do OCSP or CRL checks which is why it is so much faster. IE does.
That said, I’m working on an update that will only clear the cert caches if explicitly requested. Should be available later today in the advanced settings.
Patrick, is it in current version possible to disable cache clearing? I have similar issue and it seems that it does not represent typical use case when users do not have cleared cerfificate caches.
The current code shouldn’t be clearing the certificate caches. Are you seeing it on the public instance or a private instance? If it’s a private instance you might want to update the agent since I think the change was made after the 2.12 release.