Everything You Need to Know About Incremental View Maintenance
materializedview.io
Everything You Need to Know About Incremental View Maintenance
1–7 of 7 posts
Re: Everything You Need to Know About Incremental View Maintenance
#2Re: Everything You Need to Know About Incremental View Maintenance
#3> DBSP does make some tradeoffs when compared to differential dataflow. It simplifies the programming model by constraining how time and state management occur. This simplification limits some of the concurrency gains we see in timely and differential dataflow.
FWIW there are no fundamental big differences between dbsp and dd in terms of concurrency. Both models can concurrently process data on many threads/machines and both do it in similar ways (sharding things).
Re: Everything You Need to Know About Incremental View Maintenance
#4I wonder what the authors mean with > DBSP does make some tradeoffs when compared to differential dataflow. It simplifies the programming model by constraining how time and state management occur. This simplification limits some of the concurrency gains we see in timely and differential dataflow. FWIW there are no fundamental big differences between dbsp and dd in terms of concurrency. Both models can concurrently pr…
Re: Everything You Need to Know About Incremental View Maintenance
#5I wonder what the authors mean with > DBSP does make some tradeoffs when compared to differential dataflow. It simplifies the programming model by constraining how time and state management occur. This simplification limits some of the concurrency gains we see in timely and differential dataflow. FWIW there are no fundamental big differences between dbsp and dd in terms of concurrency. Both models can concurrently pr…
DD supports lattices that allow it to compute at multiple points in time simultaneously. As I understand it, DBSP limits time to one diff at a time. Lalith can correct me if I’m off base on this. :)
Re: Everything You Need to Know About Incremental View Maintenance
#6Earlier quoted context omitted.
DD supports lattices that allow it to compute at multiple points in time simultaneously. As I understand it, DBSP limits time to one diff at a time. Lalith can correct me if I’m off base on this. :)
I'd say the difference is in the type of transaction isolation guarantees each system provides. DBSP can process multiple diffs in parallel, and when it's done it outputs a single diff that captures the effects of all the input diffs. DD can additionally attribute each output diff to a specific input diff by assigning each input diff and matching output diff a logical timestamp. This has a cost in terms of complexity…
Re: Everything You Need to Know About Incremental View Maintenance
#7I wonder what the authors mean with > DBSP does make some tradeoffs when compared to differential dataflow. It simplifies the programming model by constraining how time and state management occur. This simplification limits some of the concurrency gains we see in timely and differential dataflow. FWIW there are no fundamental big differences between dbsp and dd in terms of concurrency. Both models can concurrently pr…
DD supports lattices that allow it to compute at multiple points in time simultaneously. As I understand it, DBSP limits time to one diff at a time. Lalith can correct me if I’m off base on this. :)