Replies: 6 comments
|
Looks interesting! It'd be great if you can share more docs or more details to help us understand it. :) |
0 replies
|
This concept is taken from https://rethinkdb.com/. It is descried in https://rethinkdb.com/blog/realtime-web/. |
0 replies
|
Sounds like noria, https://www.youtube.com/watch?v=s19G6n0UjsM&t=1934s |
0 replies
|
Real-time Data Warehouse and real-time ETL can be realized only with SQL. Some commercial data warehouse products have launched this function, such as Alibaba Cloud AnalyticDB PostgreSQL and Alibaba Cloud Hologres. You can refer to the real-time materialized views of these two products. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Generally database queries and pull based where the database would poll to see any updates. For ultra low latency high throughput real time applications this is in efficient. Ideally we should have push based continuous queries. Here when data changes the changes are notified to application.
All reactions