Building Databases over a Weekend
denormalized.io
Building Databases over a Weekend
1–10 of 16 posts
Re: Building Databases over a Weekend
#2Thought it was gonna be a "build your own SQLite" or something
Re: Building Databases over a Weekend
#3Re: Building Databases over a Weekend
#4Re: Building Databases over a Weekend
#5Re: Building Databases over a Weekend
#6I remember 2 years ago someone proposed adding stream processing in datafusion and PRs followed. But IMO stream processing is an entirely different beast, some people could use the sql engine of df for it though. There are rust projects like Arroyo
Our approach has been to take pieces of DF (including the SQL frontend and expression engine) but embedding them in our own dataflow and operators. This allows us to support low latency, distribution, watermark processing, and consistent checkpointing.
But the great thing about DF is that it’s designed as a toolkit for SQL-oriented data processing, so it’s relatively easy to pick and use just the pieces you need.
Re: Building Databases over a Weekend
#7this post feels like it's skipping over a lot of code that could be included
Re: Building Databases over a Weekend
#8this post feels like it's skipping over a lot of code that could be included
Re: Building Databases over a Weekend
#9this post feels like it's skipping over a lot of code that could be included
Re: Building Databases over a Weekend
#10I remember 2 years ago someone proposed adding stream processing in datafusion and PRs followed. But IMO stream processing is an entirely different beast, some people could use the sql engine of df for it though. There are rust projects like Arroyo