TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Stream processing, Event sourcing, Reactive, CEP… and making sense of it all

31 点作者 martinkl超过 10 年前

3 条评论

turtle4超过 10 年前
Thanks for posting. There&#x27;s one piece of this that hasn&#x27;t quite clicked yet for me, which is UI refresh coupled with the event stream approach. In the article&#x27;s example, for instance, you have the user events going into the stream, which refreshes the cache, db, data warehouse, etc.<p>In a normal UI, the user makes some action, which would update the db, clear the cache for the affected key(s), and display the updated page to the user. In the event stream processing way, if the front end events are what is being logged and the cache refresh for example is running via Samza or some other processor, how does the UI get refreshed appropriately since the processing of the stream is decoupled? Or does the main app cache remain coupled to the form submission and there are just &#x27;other&#x27; uncoupled caches, etc?
评论 #8967586 未加载
rationalthug超过 10 年前
I think this is the best article I&#x27;ve read about stream processing yet. Love how all of the related concepts are tied together and how concepts in one form of stream processing naturally fall out of the structure preferred in another form of stream processing.<p>Great explanations and insights.
评论 #8971375 未加载
nell超过 10 年前
If you&#x27;ve heard of the terms Event Sourcing, Storm, Kafka but don&#x27;t really know what it means this write up explains the concept really well. Take the time to read it.