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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Quine – streaming graph with materialized views

8 点作者 purplerabbit将近 3 年前

2 条评论

rrwright将近 3 年前
I&#x27;m the original creator of this tool. In case it helps, the usage model is:<p>1. Plug Quine into Kafka or some streaming source of data (blockchain, SSE events, etc. or stream in batch data from CSV&#x2F;JSON) and write one query to build those into a graph.<p>2. Set a &quot;standing query&quot; on that graph, which monitors the ever-changing graph for matches to your standing query. Each match triggers a custom action to publish it out to another system, or call back into the graph to make another update.<p>3. If you need a consistent unchanging view of the graph, you can issue a normal query any time and include a timestamp. You will get results to your query from the graph as it was at that historical moment in time.<p>The system scales horizontally. We&#x27;ve tested it on a resilient cluster ingesting over 1 million events per second.
purplerabbit将近 3 年前
No affiliation. Haven&#x27;t investigated much yet, but I&#x27;m blown away by the prospect of &quot;standing queries&quot; that you can subscribe to.<p>It looks like this could provide many of the benefits of Flink&#x2F;Spark&#x2F;ksqlDB with much less complexity.