refinery VS pgroll

Compare refinery vs pgroll 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
refinery pgroll
6 14
1,213 2,524
2.5% 4.3%
7.1 9.4
9 days ago 5 days ago
Rust Go
MIT License 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.

refinery

Posts with mentions or reviews of refinery. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-01.
  • Database Migrations
    2 projects | news.ycombinator.com | 1 Oct 2023
    Great write up! At PeerDB, we’ve been using refinery https://github.com/rust-db/refinery to handle database migrations of our catalog Postgres database from Rust. It is easy, typesafe and gets the job done. Thought this would be useful for users building apps with Rust!
  • Sqlx, diesel, orm or other sqlx query ?
    3 projects | /r/rust | 18 May 2023
    I don't think migrations need to be tied to ORM. We have refinery that allows you to write migrations in rust. I, personally, didn't like and prefer writing them in SQL - why learn how to migrations in X when you already know the SQL dialect that you're using.
  • Ask HN: ORM or Native SQL?
    10 projects | news.ycombinator.com | 6 Jan 2023
    The best solution I've ever seen is this Rust library https://github.com/cornucopia-rs/cornucopia

    You write plain SQL for you schema (just a schema.sql is enough) and plain SQL functions for your queries. Then it generates Rust types and Rust functions from from that. If you don't use Rust, maybe there's a library like that for your favorite language.

    Optionally, pair it with https://github.com/bikeshedder/tusker or https://github.com/blainehansen/postgres_migrator (both are based off https://github.com/djrobstep/migra) to generate migrations by diffing your schema.sql files, and https://github.com/rust-db/refinery to perform those migrations.

    Now, if you have simple crud needs, you should probably use https://postgrest.org/en/stable/ and not an ORM. There are packages like https://www.npmjs.com/package/@supabase/postgrest-js (for JS / typescript) and probably for other languages too.

    If you insist on an ORM, the best of the bunch is prisma https://www.prisma.io/ - outside of the typescript/javascript ecosystem it has ports for some other languages (with varying degrees of completion), the one I know about is the Rust one https://prisma.brendonovich.dev/introduction

  • New to PostgreSQL - Best way to use it?
    6 projects | /r/PostgreSQL | 25 Jan 2022
    What I personally use here is Refinery, but it's within the Rust ecosystem. It lets you write your migrations in pure SQL - which is what I prefer - but still requires about 5 lines of boilerplate Rust code.
  • Part of SQLx will become proprietary
    5 projects | /r/rust | 1 Feb 2021
    Example refinery migrations

pgroll

Posts with mentions or reviews of pgroll. 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 thought I recognized xataio - they submitted pgroll a few months back https://news.ycombinator.com/item?id=37752366 (https://github.com/xataio/pgroll - Apache 2)
  • Revolutionizing PostgreSQL Schema Changes with pg-osc
    1 project | news.ycombinator.com | 18 Feb 2024
  • PostgreSQL zero-downtime and reversible migrations
    1 project | news.ycombinator.com | 30 Jan 2024
  • How pgroll works under the hood
    1 project | dev.to | 7 Dec 2023
    At the start of October we released pgroll, an open source tool for zero-downtime, reversible schema migrations for Postgres.
  • Introducing pgroll: zero-downtime, reversible, schema migrations for Postgres
    1 project | dev.to | 3 Oct 2023
    If you have any suggestions or questions, please open an issue in our GitHub repo, reach out to us on Discord or follow us on X / Twitter. We'd love to hear from you and keep you up to date with the latest progress on pgroll.
  • Pgroll: zero-downtime, undoable, schema migrations for Postgres
    15 projects | news.ycombinator.com | 3 Oct 2023
    Any pgroll operations[0] that require a change to an existing column, such as adding a constraint, will create a new copy of the column and backfill it using 'up' SQL defined in the migration and apply the change to that new column.

    There are no operations that will modify the data of an existing column in-place, as this would violate the invariant that the old schema must remain usable alongside the new one.

    [0] - https://github.com/xataio/pgroll/tree/main/docs#operations-r...

  • Database Migrations
    2 projects | news.ycombinator.com | 1 Oct 2023
    This is a fantastic article! It shows that even simple migrations (like adding or removing a column) can be quite tricky to deploy in concert with the application deployement.

    We (at Xata) have tried for a while to come up with a generic schema migration system for PostgreSQL that makes this easier. We ended up using views and temporary columns in such a way that we can provide both the "old" and the "new" schema simultaneously. Up/down triggers convert newly inserted data from old to new and the other way around. This also has the advantage the it can do rollbacks instantly by just dropping the "new" view.

    We were just planning to announce this as an open source project this week, but actually it is already public, so if you are curious: https://github.com/xataio/pgroll

What are some alternatives?

When comparing refinery and pgroll you can also consider the following projects:

sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.

migrate - Database migrations. CLI and Golang library.

serde_postgres - Easily Deserialize Postgres rows.

reshape - An easy-to-use, zero-downtime schema migration tool for Postgres

postgres_migrator - A postgres migration generator and runner that uses raw declarative sql.

bob - SQL query builder and ORM/Factory generator for Go with support for PostgreSQL, MySQL and SQLite

pggen - Generate type-safe Go for any Postgres query. If Postgres can run the query, pggen can generate code for it.

tusker - PostgreSQL migration management tool

safeql - Composable / async / functional / type-safe / parallel-pipelined queries and relations without SQL injection or N+1s.

migra - Like diff but for PostgreSQL schemas