risingwave VS mssql-changefeed

Compare risingwave vs mssql-changefeed and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
risingwave mssql-changefeed
27 4
6,309 14
2.2% -
10.0 6.6
5 days ago 5 months ago
Rust Go
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

risingwave

Posts with mentions or reviews of risingwave. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-30.

mssql-changefeed

Posts with mentions or reviews of mssql-changefeed. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-14.
  • How to Listen to Database Changes Using Postgres Triggers in Elixir
    10 projects | news.ycombinator.com | 14 Jun 2023
    We made mssql-changefeed for this purpose:

    https://github.com/vippsas/mssql-changefeed

    V1 requires to run a sweeper procedure in the background, but an upcoming v2 version does without the sweep loop. Unfortunately too fresh for readme to be updated, but relevant lines in tests to show it off:

    https://github.com/vippsas/mssql-changefeed/blob/v1-lazy/go/...

    https://github.com/vippsas/mssql-changefeed/blob/v1-lazy/go/...

    https://github.com/vippsas/mssql-changefeed/blob/v1-lazy/go/...

    Library itself:

    https://github.com/vippsas/mssql-changefeed/blob/v1-lazy/mig...

  • Push-Based Outbox Pattern with Postgres Logical Replication
    6 projects | news.ycombinator.com | 28 Oct 2022
    Not OP, but there is an approach here of using a dedicated loop worker to assign post-commit ID sequence. I.e. using the outbox pattern once, simply to assign a post-commit ID.

    https://github.com/vippsas/mssql-changefeed/blob/main/MOTIVA...

    I wish DBs had this more built in, it seems a critical feature of a DB these days and the commit log already have very similar sequence numbers internally...

  • The Next Generation of Materialize
    9 projects | news.ycombinator.com | 3 Oct 2022
    We do something similar, but in 2), instead of using the outbox pattern, we make use (in several different settings) of integers that are guaranteed to increment in commit order, then each consumer can track where their cursor is on the feed of changes. This requires some more coordination but it means that publishers of changes don't need one outbox per consumer or similar.

    Then you can have "processes" that query for new data in an input table, and update aggregates/derived tables from that simply by "select * ... where ChangeSequenceNumber > @MaxSequenceNumberFromPreviousExecution"...

    The idea here implemented for Microsoft SQL for the OLTP case:

    https://github.com/vippsas/mssql-changefeed

What are some alternatives?

When comparing risingwave and mssql-changefeed you can also consider the following projects:

materialize - The data warehouse for operational workloads.

marmot - A distributed SQLite replicator built on top of NATS

datafuse - An elastic and reliable Cloud Warehouse, offers Blazing Fast Query and combines Elasticity, Simplicity, Low cost of the Cloud, built to make the Data Cloud easy [Moved to: https://github.com/datafuselabs/databend]

supavisor - A cloud-native, multi-tenant Postgres connection pooler.

ksql - The database purpose-built for stream processing applications.

pgcat - PostgreSQL pooler with sharding, load balancing and failover support.

greptimedb - An open-source, cloud-native, distributed time-series database with PromQL/SQL/Python supported. Available on GreptimeCloud.

zeroeventhub

chdb - chDB is an embedded OLAP SQL Engine πŸš€ powered by ClickHouse

rust-postgres - Native PostgreSQL driver for the Rust programming language

roapi - Create full-fledged APIs for slowly moving datasets without writing a single line of code.

postgrex_pubsub - A helper to turn postgres mutations into a pubsub channel