hypopg VS noria

Compare hypopg vs noria and see what are their differences.

noria

Fast web applications through dynamic, partially-stateful dataflow (by mit-pdos)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
hypopg noria
6 26
1,239 4,874
13.1% 0.0%
5.0 0.0
10 days ago over 2 years ago
C Rust
GNU General Public License v3.0 or later Apache License 2.0
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.

hypopg

Posts with mentions or reviews of hypopg. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-13.
  • Show HN: PostgreSQL Index Advisor
    6 projects | news.ycombinator.com | 13 Apr 2024
    It works particularly well with pg_stat_statements[0] which tracks execution statistics of all SQL statements executed on your Postgres database.

    It leans heavily on HypoPG[1], an excellent extension to determine if PostgreSQL will use a given index without spending resources to create them.

    [0] pg_stat_statements: https://www.postgresql.org/docs/current/pgstatstatements.htm...

    [1] https://github.com/HypoPG/hypopg

  • YugabyteDB hypopg: hypothetical indexes
    1 project | dev.to | 4 Nov 2022
    This is an introduction to the hypopg PostgreSQL extension for YugabyteDB 2.15.3.0. Hypopg allows the creation of hypothetical indexes, so indexes that do not really exist. This means this allows you to see what an index would do if it were created, without it actually being created, and therefore not influencing anything on the database. YugabyteDB 2.15.3.0 is a preview version of the YugabyteDB database.
  • The SQLite Index Suggester
    2 projects | news.ycombinator.com | 5 Jul 2022
  • Why Can't Database Tables Index Themselves?
    2 projects | news.ycombinator.com | 5 Jul 2022
    There's a lot of good ecosystem stuff around this:

    https://github.com/HypoPG/hypopg

    HypoPG is a PostgreSQL extension adding support for hypothetical indexes.

    An hypothetical -- or virtual -- index is an index that doesn't really exists, and thus doesn't cost CPU, disk or any resource to create. They're useful to know if specific indexes can increase performance for problematic queries, since you can know if PostgreSQL will use these indexes or not without having to spend resources to create them.

    With one approach to using it here: https://www.percona.com/blog/2019/07/22/automatic-index-reco...

  • Postgres Indexes for Newbies
    1 project | news.ycombinator.com | 19 Jan 2022
  • PostgreSQL Explain Output Explained
    2 projects | news.ycombinator.com | 28 May 2021

noria

Posts with mentions or reviews of noria. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-16.
  • Relational is more than SQL
    11 projects | news.ycombinator.com | 16 Sep 2023
    > Automatically managed, application-transparent, physical denormalisation entirely managed by the database is something I am very, very interested in.

    Sounds a bit like Noria: https://github.com/mit-pdos/noria

  • JetBrains Noria
    2 projects | news.ycombinator.com | 21 Jun 2023
    It feels more than a little bit coincidental to call it Noria when https://github.com/mit-pdos/noria exists (and has been posted about here on HN)... especially with the whole bit about incrementally computing changes.
  • Uplevel database development with DataSQRL: A compiler for the data layer
    1 project | news.ycombinator.com | 16 May 2023
    Is this similar in spirit to Noria?

    https://github.com/mit-pdos/noria

  • Dozer: A scalable Real-Time Data APIs backend written in Rust
    6 projects | /r/rust | 10 Apr 2023
    I assume you have studied Noria? https://github.com/mit-pdos/noria
  • What are the Rust databases and their benefits?
    3 projects | /r/rust | 29 Mar 2023
    If you want to look how databases are implemented in rust try https://github.com/mit-pdos/noria
  • Materialized View: SQL Queries on Steroids
    6 projects | news.ycombinator.com | 31 Dec 2022
  • Measuring how much Rust's bounds checking actually costs
    3 projects | /r/rust | 30 Nov 2022
    Only tangentially related, but I wondered what were the difference between ReadySet and Noria, and they address this exact question in their repository I'm really glad to know that the ideas behind Noria didn't die when Noria was abandoned after /u/jonhoo graduated.
  • PlanetScale Boost serves your SQL queries instantly
    3 projects | news.ycombinator.com | 15 Nov 2022
    :wave: Author of the paper this work is based on here.

    I'm so excited to see dynamic, partially-stateful data-flow for incremental materialized view maintenance becoming more wide-spread! I continue to think it's a _great_ idea, and the speed-ups (and complexity reduction) it can yield are pretty immense, so seeing more folks building on the idea makes me very happy.

    The PlanetScale blog post references my original "Noria" OSDI paper (https://pdos.csail.mit.edu/papers/noria:osdi18.pdf), but I'd actually recommend my PhD thesis instead (https://jon.thesquareplanet.com/papers/phd-thesis.pdf), as it goes much deeper about some of the technical challenges and solutions involved. It also has a chapter (Appendix A) that covers how it all works by analogy, which the less-technical among the audience may appreciate :) A recording of my thesis defense on this, which may be more digestible than the thesis itself, is also online at https://www.youtube.com/watch?v=GctxvSPIfr8, as well as a shorter talk from a few years earlier at https://www.youtube.com/watch?v=s19G6n0UjsM. And the Noria research prototype (written in Rust) is on GitHub: https://github.com/mit-pdos/noria.

    As others have already mentioned in the comments, I co-founded ReadySet (https://readyset.io/) shortly after graduating specifically to build off of Noria, and they're doing amazing work to provide these kinds of speed-ups for general-purpose relational databases. If you're using one of those, it's worth giving ReadySet a look to get these kinds of speedups there! It's also source-available @ https://github.com/readysettech/readyset if you're curious.

  • PlanetScale Boost
    6 projects | news.ycombinator.com | 15 Nov 2022
    It seems similar to MIT's Noria [1]

    > Noria is a new streaming data-flow system designed to act as a fast storage backend for read-heavy web applications based on Jon Gjengset's Phd Thesis, as well as this paper from OSDI'18. It acts like a database, but precomputes and caches relational query results so that reads are blazingly fast. Noria automatically keeps cached results up-to-date as the underlying data, stored in persistent base tables, change. Noria uses partially-stateful data-flow to reduce memory overhead, and supports dynamic, runtime data-flow and query change.

    [1] https://github.com/mit-pdos/noria

  • OctoSQL allows you to join data from different sources using SQL
    13 projects | news.ycombinator.com | 14 Jul 2022
    Materialize is really neat, also checkout https://github.com/mit-pdos/noria. It inverts the query problem and processes the data on insert. Exactly like what most applications end up doing using a no-sql solution.

What are some alternatives?

When comparing hypopg and noria you can also consider the following projects:

pev2 - Postgres Explain Visualizer 2

zombodb - Making Postgres and Elasticsearch work together like it's 2023

ruby-pg - A PostgreSQL client library for Ruby

timely-dataflow - A modular implementation of timely dataflow in Rust

sqlite-wf - Simple visual ETL tool

realtime - Broadcast, Presence, and Postgres Changes via WebSockets

orafce - The "orafce" project implements in Postgres some of the functions from the Oracle database that are missing (or behaving differently).Those functions were verified on Oracle 10g, and the module is useful for production work.

TablaM - The practical relational programing language for data-oriented applications

idx - maps, sets and vectors with on-demand secondary indexes.

readyset - Readyset is a MySQL and Postgres wire-compatible caching layer that sits in front of existing databases to speed up queries and horizontally scale read throughput. Under the hood, ReadySet caches the results of cached select statements and incrementally updates these results over time as the underlying data changes.

postgresql-unit - SI Units for PostgreSQL

mysql-live-select - NPM Package to provide events on updated MySQL SELECT result sets