Hacker News new | ask | show | jobs
by LilBibby2342 3696 days ago
Is Storm still iterated and improved upon regularly? Curious if this is simpler than Storm because it's the single focus of the founders. Could be a big advantage of Concord, right?
2 comments

Yes Storm is still under active development. Yahoo, Baidu and other big players continue to use Storm.

To be honest Storm's API is richer. Our approach however was to make stream processing available to all developers. It doesn't get simpler than four callbacks:

  void init(CtxPtr context);
  void destroy();
  void processRecord(CtxPtr context, FrameworkRecord &&r);
  void processTimer(CtxPtr context, const string &key, int time);
  Metadata metadata();
Yes, it is. Storm 1.0.0 was released on Apr 12.