Replies: 6 comments
-
Looks interesting! It'd be great if you can share more docs or more details to help us understand it. :) |
Beta Was this translation helpful? Give feedback.
-
This concept is taken from https://rethinkdb.com/. It is descried in https://rethinkdb.com/blog/realtime-web/. |
Beta Was this translation helpful? Give feedback.
-
Sounds like noria, https://www.youtube.com/watch?v=s19G6n0UjsM&t=1934s |
Beta Was this translation helpful? Give feedback.
-
Yes. Noria looks similar. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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.
Beta Was this translation helpful? Give feedback.
All reactions