Why are RSS and Echo pull (or poll) systems?

Jul 3, 2003 22:04 · 936 words · 5 minute read

There has been huge discussion about Echo, the in-progress replacement for RSS and the Blogger API. I agree that the notion of coming up with a new, clean, unambiguous syntax can help the state of blog reading and production tools. Something that has bothered me for some time, however, is the question of “why are RSS feeds provided on a pull basis?”

RSS readers are constantly connecting to web servers and checking for changed files. Let’s say I add a blog entry once per day. It would not be uncommon for people to issue requests every 3 hours. I would probably get 3 requests from them over the course of a working day, despite the fact that I only make one new post. Plus, their RSS reader is potentially polling dozens of blogs every three hours. Gadzooks! What a waste of bandwidth! Sure, modern tools don’t download the whole RSS file if there haven’t been any changes, but that’s still a whole bunch more requests than is needed. It’s to the point where Slashdot has to put limitations on feed readers.

And it isn’t even the best for the user experience. If I update my blog right after the user has polled my RSS feed, they’ll be waiting 3 hours before they actually see that post.

This is really begging to be a “push” application! A new entry in an RSS feed is essentially a broadcast event. The reason that this is not a push application is that creating a push application is hard! Some large portion of internet users are behind firewalls and their computers can’t be contacted directly to push a notice out to them. So, we end up with this very wasteful system.

But, that needn’t be the case and the solutions do not have to conflict with what’s going on with Echo. Here are some ways around the problem:

Aggregators

This model is not entirely unlike Usenet. A single server collects up the RSS or Echo feeds and gets polled periodically by clients.

Pros: Doesn’t really change any existing tools.

Cons: Who’s going to run the aggregator? ISPs are basically the only ones that would benefit from this because of the reduced bandwidth usage. But would they really provide a comprehensive aggregator for their customers, picking up any feed that a customer wants? Have any ISPs even considered this?

Email

We’ve all got programs polling our email servers already, and email already follows the push paradigm. In fact, many RSS feed readers have copped the common 3 pane look of an email program. Wouldn’t it have been better just to integrate with the email program, rather than writing a whole new one?

Why can’t we send new entries in email with an Echo attachment?

Pros: Everyone has an email server, so there is no need for new servers to be deployed. Email protocols are well-understood.

Cons: The email protocol is not particularly high-speed. It would probably take Slashdot a fair bit of time to send out 200,000 email messages every time a post goes up. Support would need to be added to email programs for Echo messages (or people would need a separate program that polls their email for Echo messages).

IM

An instant message could be sent for each new entry, and a feed reading system could store and display the messages in ways that are similar to what we see today.

Pros: Protocols are already designed to handle small bits of information being sent around.

Cons: Hooking up weblog tools to an IM system is more difficult than generating an RSS or Echo file. Supporting all of the popular IM systems may be nontrivial (AOL, ICQ, MSN, Y!), even if Jabber provides gateways. (Would every blog have the access to broadcast out a bunch of Jabber message with each new post?)

Further reading

I am by no means the first person to think that the current way these tools work is crazy.

I’m sure that there have been many, many more commentaries on this subject. Perhaps no one has really taken this problem and run with it because there wasn’t compelling enough money in it, or because they would have to work with other people (like email-client people).

Conclusion

People have already done experiments in all of these areas. What’s really needed is tool support.

At the time that Pyra introduced the Blogger API, the notion of using any tool other than the weblog software you’ve got to post to your blog was nonexistent. Since then, a whole bunch of tools have risen up that allow you to post to your weblog.

Similarly, if we see a major blogging tool and feed aggregator start sporting easy-to-use subscription broadcast systems, other tools will follow suit and we can be free of the RSS bandwidth black hole.