Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fredbi/gooseplus
goose DB migrations, extended
https://github.com/fredbi/gooseplus
Last synced: about 1 month ago
JSON representation
goose DB migrations, extended
- Host: GitHub
- URL: https://github.com/fredbi/gooseplus
- Owner: fredbi
- License: apache-2.0
- Created: 2023-11-07T06:11:12.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-18T14:37:18.000Z (9 months ago)
- Last Synced: 2024-04-18T16:02:23.969Z (8 months ago)
- Language: Go
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# gooseplus
![Lint](https://github.com/fredbi/gooseplus/actions/workflows/01-golang-lint.yaml/badge.svg)
![CI](https://github.com/fredbi/gooseplus/actions/workflows/02-test.yaml/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/fredbi/gooseplus/badge.svg?branch=master)](https://coveralls.io/github/fredbi/gooseplus?branch=master)
![Vulnerability Check](https://github.com/fredbi/gooseplus/actions/workflows/03-govulncheck.yaml/badge.svg)
[![Go Report Card](https://goreportcard.com/badge/github.com/fredbi/gooseplus)](https://goreportcard.com/report/github.com/fredbi/gooseplus)![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/fredbi/gooseplus)
[![Go Reference](https://pkg.go.dev/badge/github.com/fredbi/gooseplus.svg)](https://pkg.go.dev/github.com/fredbi/gooseplus)
[![license](http://img.shields.io/badge/license/License-Apache-yellow.svg)](https://raw.githubusercontent.com/fredbi/gooseplus/master/LICENSE.md)Goose DB migrations, on steroids.
## Purpose
`gooseplus` extends the great DB migration tool [`goose`](https://github.com/pressly/goose) to support
a few advanced use cases:1. Leaves a failed deployment in its initial state: upon failure, rollbacks migrations back to when the deployment started
2. Support environment-specific migrations, so we can add migrations for tests, etc.
3. A global locking mechanism to run migrations once, even in a parallel deployment
4. More options: structured zap logger, fined-grained timeouts ...`gooseplus` is primarily intended to be used as a library, and does not come with a CLI command.
## Usage
```go
db, _ := sql.Open("postgres", "test")
migrator := New(db)err := migrator.Migrate(context.Background())
...
```Feel free to look at the various [`examples`](examples/README.md).
## Features
* Everything `goose/v3` does out of the box.
* Rollback to the state at the start of the call to `Migrate()` after a failure.
* Environment-specific migration folders
* Global lock table## Concepts
### Defaults
I've tried to define sensible defaults as follows:
* default DB driver: `postgres` (like `goose`)
* default base path for migrations: `sql`
* default FS: `os.DirFS(".")`
* default timeout on the whole migration process: 5m
* default timeout on any single migration: 1m### Environment-specific folders
Migrations are stored in a base directory as a linear sequence of SQL scripts or go migration programs.
In this directory, the `base` folder contains migrations that apply to all environments.
Additional folders may be defined to run migrations for specific environments (i.e. specific deployment contexts).
> This comes in handy in situations where we want data initialization scripts
> (not just schema changes) to run under different environments.Example:
```
sql/base/
sql/base/20231103204811_populate_example.sql
sql/base/20231102204811_create_example.sqlsql/production/
sql/production/20231103204911_populate_prod.sqlsql/test/
sql/test/20231103204911_populate_test.sql
```You can change the `base` folder by setting the new list of folders: `SetEnvironments([]string{"default", "production", "test")`.
If you don't want to manage sub-folders _at all_, you can disable it with the option `SetEnvironments(nil)`.
In this case, no `base` folder will be used.> *Attention point*: if you use go migrations these folders become go packages,
> and folder names should not be reserved names with a special meaning for golang.
> Hence `default`, `xxx_test` are names to be avoided for package names.### Embedded file system
`goose/v3` supports embedded file systems at build time.
You can use it with `gooseplus` like so:
```go
//go:embed sql/*/*.sql
var embedMigrations embed.FSdb, _ := sql.Open("postgres", "test")
migrator := gooseplus.New(
db,
gooseplus.WithFS(embedMigrations),
)
```### Global lock
This is enabled with option `WithGlobalLock(true)`. It doesn't work with non-locking environments, such as `sqlite3`.
It should work with `postgres` and `mysql`.An additional technical table, `goose_db_version_lock` is created to hold the outcome of the currently running migration.
Note that if you change the name of the version table, the lock table is created as `{goose version table name}_lock`.Whenever a process or go routine starts the migration process, a single record in this table is created and locked
until the migration completes.* any other competing migration process would wait until the lock is released
* if the migration fails, it rolls back to the starting point before deployment. Other instances will resume from there and try again.Example: let's suppose that a deployment starts 3 instances of a service that starts by applying DB migrations.
The first deployment acquires the lock, then runs the migrations.
Other instances also attempt to run migrations, and wait on the lock.
When the first deployment is done, the lock is released.
The other deployments, one by one, acquire a lock, verify that the current version is up to date and release the lock.If the migration process of the first deployment failed at some point, the other ones attempt to run the sequence again.
> *Attention point*: since migrations wait each other, make sure the global timeout can support this waiting.
### Logging
`gooseplus` injects a structured `zap` logger from `go.uber.org/zap`
### Caveats
* Concurrent usage is not supported: `goose/v3` relies on a lot of globals. Migrations should normally run once.
* Minimal locking has ben added so you can run your tests with `-race`