pgrx VS omnigres

Compare pgrx vs omnigres 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
pgrx omnigres
13 15
3,245 1,268
3.3% 2.6%
9.5 9.7
6 days ago 10 days ago
Rust C
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.

pgrx

Posts with mentions or reviews of pgrx. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-08.
  • Building a Managed Postgres Service in Rust
    5 projects | news.ycombinator.com | 8 Apr 2024
    Consider also the companies and work behind pgrx [0] and pgzx [1]:

    [0] https://github.com/pgcentralfoundation/pgrx

    [1] https://github.com/xataio/pgzx

  • UUIDv7 is coming in PostgreSQL 17
    5 projects | news.ycombinator.com | 5 Feb 2024
    If you like this (I do very much), you might also like pg_idkit[0] which is a little extension with a bunch of other kinds of IDs that you can generate inside PG, thanks to the seriously awesome pgrx[1] and Rust.

    [0]: https://github.com/VADOSWARE/pg_idkit

    [1]: https://github.com/pgcentralfoundation/pgrx

  • 90x Faster Than Pgvector – Lantern's HNSW Index Creation Time
    7 projects | news.ycombinator.com | 2 Jan 2024
    (disclosure, i work at supabase and have been developing TLEs with the RDS team)

    Trusted Language Extensions refer to an extension written in any trusted language. In this case Rust, but it also includes: plpgsql, plv8, etc. See [0]

    > PL/Rust is a more performant and more feature-rich alternative to PL/pgSQL

    This is only partially true. plpgsql has bindings to low-level Postgres APIs, so in some cases it is just as fast (or faster) than Rust.

    > Building a vector index (or any index for that matter) inside Postgres is a more involved process and can not be done via the UDF interface, be it Rust, C or PL/pgSQL

    Most PG Rust extensions are written with the excellent pgrx framework [1]. While it doesn't have index bindings right now, I can certainly imagine a future where this is possible[2].

    All that said - I think there are a lot of hoops to jump through right now and I doubt it's worth it for the Latern team. I think they are right to focus on developing a separate C extension

    [0] TLE: https://supabase.com/blog/pg-tle

    [1] pgrx: https://github.com/pgcentralfoundation/pgrx

    [2] https://github.com/pgcentralfoundation/pgrx/issues/190#issue...

  • SQL as API
    7 projects | news.ycombinator.com | 25 Dec 2023
    I’m currently playing with PostgreSQL, foreign data wrappers, and pgrx rust extensions. My development experience has been surprisingly smooth and enjoyable.

    My main issue is that joins will be processed locally, so all the foreign data will be fetched before the join happens. But otherwise basic CRUD is easy.

    https://wiki.postgresql.org/wiki/Foreign_data_wrappers

    https://github.com/pgcentralfoundation/pgrx

    https://github.com/supabase/wrappers

  • Postgres: The Next Generation
    4 projects | news.ycombinator.com | 10 Oct 2023
    I think maybe what you’re really looking for are the files here: https://github.com/pgcentralfoundation/pgrx/tree/c2eac033856...

    Those are the internals we currently expose as unsafe “sys” bindings.

    As we/contributors identify more that are desired we add them.

    pgrx’ focus is on providing safe wrappers and general interfaces to the Postgres internals, which is the bulk of our work and is what will take many years.

    As unsafe bindings go, we could just expose everything, and likely eventually will. There’s just some practical management concerns around doing that without a better namespace organization —- something we’ve been working.

    The Postgres sources are not small. They are very complex, inconsistent in places, and often follow patterns that are specific to Postgres and not easy to generalize.

    If you’ve never built an extension with pgrx, give it a shot one afternoon. It’s very exciting to see your own code running in your database.

  • Pgrx – Build Postgres Extensions with Rust
    1 project | news.ycombinator.com | 8 Oct 2023
  • Pg_bm25: Elastic-Quality Full Text Search Inside Postgres
    6 projects | news.ycombinator.com | 8 Oct 2023
    pgrx is one of the greatest enabling innovations in the PG ecosystem in a long time.

    Awesome to see so many high quality extensions come out of it.

    https://github.com/pgcentralfoundation/pgrx

  • PGRX v0.9.7
    1 project | /r/rust | 29 Jun 2023
  • Let's make PostgreSQL multi-threaded (pgsql-hackers)
    1 project | /r/PostgreSQL | 18 Jun 2023
  • Build high-performance functions in Rust on Amazon RDS for PostgreSQL
    2 projects | /r/rust | 24 May 2023
    If you're interested in what my Threadripper 3970X does with it, there's some numbers in this PR: https://github.com/tcdi/pgrx/pull/1147

omnigres

Posts with mentions or reviews of omnigres. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-08.
  • Building a Managed Postgres Service in Rust
    5 projects | news.ycombinator.com | 8 Apr 2024
    I've been writing Postgres extensions for a few years now (mostly in C and Python), and I have to say that an important contribution from companies like Tembo and Omnigres is in the area of tooling and boilerplate. From workflows to Dockerfiles [0], that's important for the future of Postgres.

    This has been discussed in the past [1], but the Postgres tooling ecosystem has been primarily C-Makefile—mailing list driven, and there used to be a lot of Makefile targets copy-pasting. Whenever major Postgres providers wanted to open source some of their extensions / sub-products. I still feel, however, that a lot of Postgres C-know-how is being slowly forgotten / lost, and I think it will be necessary again soon. Internal things as how Postgres handles varlena, StringInfo, JsonbValue, etc. The core abstractions that make Postgres work.

    0: https://github.com/omnigres/omnigres/blob/master/Dockerfile

  • PostgREST: Providing HTML Content Using Htmx
    12 projects | news.ycombinator.com | 18 Dec 2023
    If you think that's cool, you might also want to check out Omnigres:

    https://github.com/omnigres/omnigres

  • Ask HN: Who is hiring? (December 2023)
    17 projects | news.ycombinator.com | 1 Dec 2023
    At Omnigres, our north star is to enable developers to laser-focus on business needs instead of fighting technological challenges.

    We're fighting the complexity and inefficiencies of contemporary stacks by removing them instead of hiding them.

    At the core, we are turning Postgres into an Application Runtime. Why? Because we believe that code and data are inseparable in pretty much all of the line-of-business application systems. Turns out, when done this way, applications work a lot faster, require a lot less maintenance and are simply easier to write.

    Our foundation is open source and is available at https://github.com/omnigres/omnigres

    We're backed by some great early-stage VCs and looking to onboard people who can move quickly, learn on the go and maintain the focus on the goals. Another way to look at it: we want to meet other pragmatic idealists.

    Email: [email protected]

  • Ask HN: Who's looking for contributors for OSS Projects
    2 projects | news.ycombinator.com | 4 Nov 2023
    Check out Omnigres: https://github.com/omnigres/omnigres/wiki/Bounties

    They just launched a bounty program recently.

  • Ask HN: Who is hiring? (November 2023)
    15 projects | news.ycombinator.com | 1 Nov 2023
    Omnigres | Founding Engineer | SF Bay Area HQ | REMOTE

    At Omnigres, our north star is to enable developers to laser-focus on business needs instead of fighting technological challenges.

    We're fighting the complexity and inefficiencies of contemporary stacks by removing them instead of hiding them.

    At the core, we are turning Postgres into an Application Runtime. Why? Because we believe that code and data are inseparable in pretty much all of the line-of-business application systems. Turns out, when done this way, applications work a lot faster, require a lot less maintenance and are simply easier to write.

    Our foundation is open source and is available at https://github.com/omnigres/omnigres

    We're backed by some great early-stage VCs and looking to onboard people who can move quickly, learn on the go and maintain the focus on the goals. Another way to look at it: we want to meet other pragmatic idealists.

    You can apply here https://wellfound.com/jobs/2832133-founding-engineer

  • Show HN: Pg_yregress, Structured Testing for Postgres
    1 project | /r/hypeurls | 17 Oct 2023
    2 projects | news.ycombinator.com | 15 Oct 2023
  • Omnigres: Postgres as a Platform
    3 projects | news.ycombinator.com | 15 Oct 2023
    Couple of questions (with notes): Yes, I'd really like to write code next to the db with more suitable (for task) languages like Python. But at the moment SQL alone is supported..? Could one connect with Jupyter notebook somehow and have a REPL like experience with Omnigres instance?

    Also, this [1] seems intriguing. How do containers connect to the db? What would the performance differences to the "internal" approach? Is this feature more like Lambda or for long running processes? Or something else? In any case very interesting.

    Thank you!

    [1] https://github.com/omnigres/omnigres/tree/master/extensions/...

    1 project | /r/PostgreSQL | 27 Mar 2023
  • The Database Package Manager for PostgreSQL Trusted Language Extensions
    9 projects | news.ycombinator.com | 14 Apr 2023
    Very much in the same vein: https://github.com/omnigres/omnigres

What are some alternatives?

When comparing pgrx and omnigres you can also consider the following projects:

api - 🚀 Core REST API & Gateway for Zaun

hyperdx - Resolve production issues, fast. An open source observability platform unifying session replays, logs, metrics, traces and errors powered by Clickhouse and OpenTelemetry.

plrust - A Rust procedural language handler for PostgreSQL

pg_tle - Framework for building trusted language extensions for PostgreSQL

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.

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

mimir - ⚡ Supercharged Flutter/Dart Database

langfuse - 🪢 Open source LLM engineering platform: Observability, metrics, evals, prompt management, playground, datasets. Integrates with LlamaIndex, Langchain, OpenAI SDK, LiteLLM, and more. 🍊YC W23

paradedb - Postgres for Search and Analytics

examples - Your one-stop-shop to try Xata out. From packages to apps, whatever you need to get started.

influxdb_iox - Pronounced (influxdb eye-ox), short for iron oxide. This is the new core of InfluxDB written in Rust on top of Apache Arrow.

langchain - 🦜🔗 Build context-aware reasoning applications