Tuesday, December 07, 2010

The Pipes Are Calling

On the osgi-dev list, there was an interest raised into having a Planet OSGi feed aggregator like the Planet Eclipse and other similar planets.

So initially I looked into planet software I could run on the OSGi server. I found Planet 2.0 and Venus which is a fork or successor to Planet 2.0. Both of these are Python scripts which of course depend upon other python scripts. However I could get neither of them to work on the RHEL 4 based OSGi server. The runtests.py sanity test failed for each choice. The failures were different and are probably based upon the Python version on the RHEL 4 system and possibly some dependent python scripts I did not have installed. Given that RHN manages the OS including the Python version, I was not keen to attempt to update it to a later version of Python that I would have to manage myself. And so I gave up on the python scripts. I have the feeling that if these tools were written in Java (or some JVM based language) it would have been mush easier to get them to run on different machines since there is a uniform basic machine and libraries to depend upon.

In any case, I needed some other solution. Some more use of a popular search engine lead me to Yahoo Pipes. I was fairly easily able to create a "pipe" to collect a bunch of feeds, sort the feeds by publication date and generate a new feed of the aggregate! I had heard of Yahoo Pipes before but never played with them. They are pretty cool and it was quite easy to mash up a bunch of feeds into a new feed.

So checkout the new Planet OSGi feed served up by Yahoo Pipes.

2 comments:

Wolfgang Schell said...

If you're looking for a blog aggregator running on a JVM, you might have a look at GroovyBlogs (http://www.groovyblogs.org/), which is a blog aggregator for Groovy-related blogs implemented as a Grails application. The code is available at http://code.google.com/p/groovyblogs/.

I don't know, if it's currently generic enough to work as a general blog aggreagtor, but I think it would be easy enough to adapt. Glen Smith (http://blogs.bytecode.com.au/glen/), the author, would probably be willing to give some hints on what to change for an OSGi blog aggregator.

BTW, there's an OSGi plugin for Grails, which makes the Grails app running in an OSGi container (disclaimer: I'm the author of the plugin), if you would like to adhere to the motto "eat your own dogfoot" :-)

BJ Hargrave said...

Interesting. But at this point I am out of time to work on this any more. If I get any free time in the future, I can look into this more. But thanks for the pointers.