Ask HN: Is there a list of open event streams to do stream processing on?

32 points by b5u ↗ HN
There are curated lists of open datasets (like https://datahub.io/) for anyone to in (side) projects and/or visualizations. I couldn't find a list of open streams of events (like https://wikitech.wikimedia.org/wiki/EventStreams or https://github.com/HackerNews/API or https://dev.twitter.com/streaming/overview ) that I could use for developing stream processing jobs. If you know any other, please share :)

5 comments

[ 1.8 ms ] story [ 26.1 ms ] thread
Would this work? https://www.satori.com/
I assumed this Ask HN was a ploy for free research toward the $1M Satori contest.
Nah, my brother sent me that link because he thought I might be interested in the contest and this question just happened to pop up soon after
Didn't know about that Juan! Thanks But those are only samples and available for limited period of time...
Perhaps not a perfect fit, but what I've done in the past, and found to work quite well, is to turn those big datasets you mention into an event stream.

You can do it quite trivially by simply raising an event on every line read, or you can add some kind of transform to the data beforehand, etc. Whatever you need. You can obviously take this further and turn it into a service or something, but that's up to you.

Here's a simple example in C# - https://ghostbin.com/paste/bzgez