Slashdot Log In
How Much Are Ad Servers Slowing the Web?
Posted by
kdawson
on Fri Aug 17, 2007 11:56 AM
from the but-not-for-firefox dept.
from the but-not-for-firefox dept.
vipermac writes "Most of the times I have a problem with a Web page loading slow or freezing temporarily, I look down at the status bar and see that it's waiting on an ad server, Google Analytics, or the like. It seems to me that on popular Web sites the bottleneck is overwhelmingly on the ad servers now and not on the servers of the site itself. In my opinion we need a better model for serving ads — or else these services need to add more servers/bandwidth. Are there any studies on the delay that 3rd-party ad servers are introducing, or any new models that are being introduced to serve ads?"
Related Stories
This discussion has been archived.
No new comments can be posted.
How Much Are Ad Servers Slowing the Web?
|
Log In/Create an Account
| Top
| 363 comments
(Spill at 50!) | Index Only
| Search Discussion
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
use firefox and adblocker! (Score:5, Funny)
Re:use firefox and adblocker! (Score:4, Funny)
(http://keleus.freeshell.org/ | Last Journal: Sunday October 28, @02:17PM)
Re:use firefox and adblocker! (Score:5, Funny)
Re:use firefox and adblocker! (mod up parent) (Score:5, Funny)
(http://www.xs4all.nl/~dverbeek)
Re:use firefox and adblocker! (Score:4, Interesting)
(http://vftp.net/ | Last Journal: Saturday December 09 2006, @09:52PM)
Advertisements are an opportunity to make an impression on a customer. While there will always be technologies that make it difficult to ignore the ad, in most cases you are not obligated to be impressioned. Just because the advertisers get upset that you are stealing the cheese from their trap, it's your prerogative.
I'm a little surprised that we don't see more "banner" ads on TV. Imagine all these people with the widescreen sets that are viewing content with black sides because it's 4x3 formatted instead of widescreen. Imagine banners on both of those dead zones on the sides, that change every 20-30 seconds and adjust their product to something related to the main feature. Y know I think I would prefer that to the "four miniutes of commercials every 10 minutes" we get now. Also, even though a lot of shows are timed for like 49 minutes for the hour to accomodate commercials, a lot of stations trim out scenes or cut them short to insert more ads, so we would be getting more content. I wouldn't mind them doing this so long as they were not animated. Sort of like how I can't stand the animated shockwave banners here and at other sites. I don't understand why no one is doing this already. Though I have seen a few isolated examples of banner ads being shot across the bottom of the screen briefly during some shows - those are overlays though and degrade the content so maybe that's why those have been unsuccessful.
Re:use firefox and adblocker! (Score:5, Insightful)
(http://pitabred.dyndns.org/)
Re:use firefox and adblocker! (Score:5, Informative)
(http://kadin.sdf-us.org/ | Last Journal: Tuesday October 16, @01:46PM)
This was OK on narrowband/dialup connections (in fact, most browsers used to render the page between elements by default, so that it would show you the whole page, then re-render as various images or other elements were downloaded and ready to display -- although as connections got faster relative to rendering time, most browsers switched to only rendering the page once when it was complete), but it sucks on broadband. As the amount of time each data transfer takes drops relative to the time required to establish the connection, the establishment and resetting of the connections for each page element becomes more "expensive."
So in HTTP/1.1 they introduced a way of making multiple requests in one connection. (It may have predated HTTP/1.1 but I think that was when it was first formalized). Basically the web browser opens a connection to the server and make multiple requests at once. Then the server will respond with all the requested elements. Then the connection will close. This is considered kosher and non-abusive because it doesn't require spawning a whole lot of connections at the server; everything is done in one.
However this isn't enabled in default in Firefox; you have to go into the about:config page and turn it on, and set the number of requests per connection to something reasonable (I think 8 is the max).
Also, it requires a certain amount of intelligence on the part of the browser to do this correctly. There are certain kinds of requests that shouldn't be pipelined (PUT requests, for instance), and some older servers may not like it. However, I think we're moving pretty quickly towards a time where it can be made the default.
Re:use firefox and adblocker! (Score:5, Informative)
(http://geekspeak.org/ | Last Journal: Sunday October 27 2002, @03:17PM)
Good introductory overview in general. Kudos.
Re:use firefox and adblocker! (Score:5, Funny)
(Last Journal: Wednesday October 24, @07:10AM)
By the way, I set pipelining.tube.maxrequests to 128. The googles, they do nothing...
Re:use firefox and adblocker! (Score:4, Insightful)
Sheesh (Score:4, Insightful)
(http://slashdot.org/)
Must be 'cause I'm using Firefox...
Like slashdot? (Score:4, Funny)
Jokes aside, I do notice waiting for ads on slashdot quite often but it is one of the few sites that I allow more to get through.
Browser's fault? (Score:5, Interesting)
I realize this means performing some speculative page layout that may need to be re-done when the dimensions of the ads are served. But it sure would beat waiting tens of seconds to see the page's real content.
Re:Browser's fault? (Score:5, Interesting)
(http://russ.innereyes.com/ | Last Journal: Sunday August 22 2004, @06:19AM)
Re:Browser's fault? (Score:5, Insightful)
Re:Browser's fault? (Score:4, Interesting)
Don't see THAT many ad driven web site made in MS Word these days...
Re:Browser's fault? (Score:5, Informative)
It depends how the ad is served. If it's served as an external piece of JavaScript (using a script element), then most browsers will reach the script tag and won't render anything else until the script has been downloaded [blogspot.com]. This can cause a delay if the ad server is slow or down.
If the ad is served using an img, iframe or object element, you generally don't have this problem, as the browser can leave a space for the advert and carry on rendering the rest of the page.
I work for an ad serving company and most of the ads we serve are in iframe elements. The growing popularity of script elements (they seem to be used for most third-party ads now) confounds me. Generally, I'm continually surprised at how much control over the user experience most websites are willing to give to ad serving companies.
Re:Browser's fault? (Score:5, Funny)
Re:Browser's fault? (Score:5, Interesting)
(http://www.nexusuk.org/)
Most ad systems seem to work by placing a <script> tag where you want the ad to appear which loads a script from the ad server that does a document.write() to insert the actual code. This is very bad practice (and explicitly disallowed for XHTML) but even Google do it (which sucks since I have to jump through all sorts of hoops to get AdSense to work on my XHTML site).
document.write() works by actually writing out HTML and feeding it into the parser and thus parsing the page must be suspended at that point until it's finished executing, so you can't render the page until the advert has loaded.
The _correct_ way to do this is for the ad-serving Javascript to actually modify the DOM tree. But that requires the ad server developers to not be lazy and have clue, which seems to be asking too much. (or alternatively, don't use Javascript at all).
0 slowdown for me (Score:5, Informative)
(http://www.ceyah.org/~jandrese/ | Last Journal: Thursday September 13, @11:11AM)
Abusers aren't satisfied with one kind of abuse. (Score:5, Interesting)
(http://www.futurepower.net/)
So now I don't see the ads at all, thanks to Firefox's AdBlock Plus [mozilla.org] and NoScript [mozilla.org] add-ons. (I recommend NoScript only for people who don't mind fiddling with permissions for each new web site.)
I guess abusers aren't satisfied with only one kind of abuse. I can dimly remember some of the Slashdot ads. When they weren't misleading, they were generally stupidly written. People with no technical knowledge shouldn't work for technical companies.
Re:0 slowdown for me (Score:5, Informative)
(Last Journal: Wednesday February 15 2006, @01:31PM)
Re:0 slowdown for me (Score:5, Informative)
These are wanted and are not crappy adverts
ahem..
Re:0 slowdown for me (Score:4, Insightful)
(http://www.thomas-galvin.com/)
Agreed. For the most part, I'm happy to let ads load, but there are four things that will get you added to my killfile real quick:
* Boobies (or anything else that might get me fired)
* Shaking, flashing, screen grabbing, "look at me!" type stuff
* Fake dialogs and error messages
* Slowdown
I just started filtering for the last one recently. For about a week straight I kept seeing "waiting for ads.doubleclick.so.goram.slow" in my status bar, and eventually I just adblocked their entire domain.
Also, slashcode is apparently unable to figure out what to do with ul and li tags.
no slowdown at all... (Score:3, Interesting)
(ftp://127.0.0.1/etc/password)
Display the page before the data's all loaded (Score:3, Insightful)
So why don't all web browsers start displaying the data they do have, rather than waiting for the ad server to submit it's data first? If there's a delay in downloading an image on the site or a style sheet it still starts displaying and when the image/stylesheet is downloaded the page is re-rendered to reflect that. So what is it about the page design that forces web browsers to not display anything if the delay is due to an ad server?
Re:Display the page before the data's all loaded (Score:5, Informative)
High-CPU Flash Ads (Score:5, Insightful)
(http://lunarworks.ca/)
Some Flash ads barely take any CPU at all, and those are honestly fine by me, but some just hog my resources. The problem is that the people who DESIGN these ads typically have cutting-edge machines, so they don't know what it's like to run them on a shitty office machine. So, please, TEST your ads on a shitbox average computer before you force them on us!
Agreed (Score:4, Interesting)
(http://www.spencley.com/)
Then I realized that it would completely fail because the ad is geo-IP. So the cache will always display the location of my server, and not the user.
The obvious solution is for ad companies to offer scripts to their affiliates that could be run on the servers hosting the sites. Of course that opens up new problems, like security issues. But if the code were open we could spot such issues.
In fact, that seems to me like such a simple and obvious solution. The only reason that ad companies don't do that (that I can think of) is that they want to appeal to people running on free hosts where they can't run server-side scripts. But there's no reason not to offer both IMO. I also thought that they wanted to keep things as absolutely simple as possible, and there's nothing simpler than saying "just copy/paste this into your html document". But any web master who rents hosting (shared or dedicated) knows how to upload a php script.
what ads? (Score:5, Funny)
Ads? or Webmasters? (Score:3, Interesting)
(http://www.stevekallestad.com/ | Last Journal: Thursday May 31, @03:02AM)
Google isn't always up. Plenty of times, I see issues because my comcast connection can't see the google servers even though everyone else can get to them just fine.
It's entirely feasible to write your page in such a way that it can display data before any other files are loaded. Serve up ads in an iframe, include tracking images in an iframe or as the last element of a page, etc.
But ads aren't the only thing causing page load problems. Third party widgets, crazy fat CSS and JS files, and pages with way too many images are still a problem.
That is the reason I use a filter (Score:5, Insightful)
(Last Journal: Friday August 17, @05:34AM)
Back in ages long gone, when firefox did not exist you had (still have perhaps) a company called doubleclick whose adservers would sometimes choke freezing the loading of the rest of the page. Why and how this happens? Do I look like someone who gives a shit?
I wanted it gone, and finally I bit the bullet and read up on squid and available plugins and setup my linux router to just filter all http traffic. Haven't looked back since.
Browsing without a blocker is like... well it just sucks. At times I am offcourse forced to browse the web without such blocking software and my god, the internet has become as bad as tv. Do they really think that if you saturate people with advertising to the point the original content becomes unusable people are really going to be more inclined to buy?
Apparently so. However not to me. This story offcourse neatly links to the story below about a site block firefox because of adblocker.
Well, who gives a shit. You went to far, now you gotta pay the price. If you don't get revenue from me, blame doubleclick and all those others who just pushed me over the edge.
At the moment I recommend bfilter to people who are fed up as well, it is browser neutral, works out of the box and does a lot more then just ad-blocking. Granted some flash bits require you to click them before they actually load but that is okay, because 99% of flash stuff I don't want to load.
So yes, ad-servers are slowing the net, by adding stuff to webpages I do not want. Can this be solved? It has been solved, not to the liking of those who depend on those ads being seen, but hey, fuck them. Do they care when I have to reload a page over and over again because some server borked?
Blocked because I'm paying for the pipe (Score:5, Insightful)
Re:Blocked because I'm paying for the pipe (Score:4, Insightful)
It's funny that both the user and the website owner share the same argument. As usual in life, it's the few who make it rough for the many. Most people don't mind reasonable ads, and they don't mind contributing financially to a site they enjoy. Unfortunately all it takes is a few greedy jackass types taking the ads to extremes and ruin the concept entirely.
It's too bad there isn't a advertising standard that sites can be certified with and filters can be aware of. An ad whitelisting service, that legitimate companies would value as much as a BBB or google page ranking.
Re:Blocked because I'm paying for the pipe (Score:5, Insightful)
How about they give you free content instead of paying in cash?
How about just fewer ads? (Score:3, Insightful)
I know that this doesn't speak specifically to the rest of your question, but IMHO, we need a better model than having ads. Just because we can have 'em doesn't mean we should all the time. It seems to me that the click-throughs, browser-tracking, etc., benefit the ad companies themselves far more than the individual content providers.
I realize I'm tilting at windmills here, but the current web ad-model has even city and local community web pages (like libraries) littering their pages with 'ads' for other parts of the same site, etc. It is really quite annoying.
/...and stay off my lawn!
Re:Use Adblock with my subscription... (Score:3, Insightful)