r2dbc-migrate
r2dbc-migrate copied to clipboard
R2DBC database migration library
R2DBC migration tool
Inspired by this announcement. R2DBC page.
Supported databases
- PostgreSQL
- Microsoft SQL Server
- MySQL
- H2
- MariaDB
It also supports user-provided dialect. You can pass implementation of SqlQueries
interface to the migrate()
method. If you use Spring Boot, just define a bean of type SqlQueries
. Example SimplePostgresqlDialect.
Features
- Convention-based file names, for example
V3__insert_to_customers__split,nontransactional.sql
- Pre-migration scripts, for example
V0__create_schemas__premigration.sql
. Those scripts are invoked every time before entire migration process(e. g. before migration tables created), so you need to make them idempotent. You can use zero or negative version number(s):V-1__create_schemas__nontransactional,premigration.sql
- It waits until database has been started, then performs test query, and validates its result. This can be useful for the initial data loading into database with docker-compose
- Supports migrations files larger than
-Xmx
: file will be split line-by-line (split
modifier), then it will be loaded by chunks into the database - Supports lock, that make you able to start number of replicas your microservice, without care of migrations collide each other
- Each migration runs in the separated transaction by default
- It also supports
nontransactional
migrations, due to SQL Server 2017 prohibitsCREATE DATABASE
in the transaction - Docker image
- First-class Spring Boot integration, see example below
- Also you can use this library without Spring (Boot), see library example below
- This library tends to be non-invasive, consequently it intentionally doesn't try to parse SQL and make some decisions relying on. So (in theory) you can freely update database and driver's version
All available configuration options are in R2dbcMigrateProperties class. Their descriptions are available in your IDE Ctrl+Space help or in spring-configuration-metadata.json file.
Limitations
- Currently, this library heavy relies on upsert-like syntax like
CREATE TABLE .. ON CONFLICT DO NOTHING
. As a result, this library doesn't support run against H2 withMODE=PostgreSQL
. Use testcontainers with real PostgreSQL. - Only migration forward is supported. No
migration back
. - No checksum validation. So no repeatable migrations.
Download
Docker
docker pull nkonev/r2dbc-migrate:latest
Spring Boot Starter
<dependency>
<groupId>name.nkonev.r2dbc-migrate</groupId>
<artifactId>r2dbc-migrate-spring-boot-starter</artifactId>
<version>VERSION</version>
</dependency>
Only library
<dependency>
<groupId>name.nkonev.r2dbc-migrate</groupId>
<artifactId>r2dbc-migrate-core</artifactId>
<version>VERSION</version>
</dependency>
If you use library, you need also use some implementation of r2dbc-migrate-resource-reader-api
, for example:
<dependency>
<groupId>name.nkonev.r2dbc-migrate</groupId>
<artifactId>r2dbc-migrate-resource-reader-reflections</artifactId>
<version>VERSION</version>
</dependency>
See Library example
below.
Standalone application
If you want to build your own docker image you will be able to do this
curl -Ss https://repo.maven.apache.org/maven2/name/nkonev/r2dbc-migrate/r2dbc-migrate-standalone/VERSION/r2dbc-migrate-standalone-VERSION.jar > /tmp/migrate.jar
Spring Boot Example
https://github.com/nkonev/r2dbc-migrate-example
Library example
https://github.com/nkonev/r2dbc-migrate-example/tree/library
docker-compose v3 example
version: '3.7'
services:
migrate:
image: nkonev/r2dbc-migrate:VERSION
environment:
_JAVA_OPTIONS: -Xmx128m
spring.r2dbc.url: "r2dbc:pool:mssql://mssqlcontainer:1433"
spring.r2dbc.username: sa
spring.r2dbc.password: "yourSuperStrong(!)Password"
r2dbc.migrate.resourcesPath: "file:/migrations/*.sql"
r2dbc.migrate.validationQuery: "SELECT collation_name as result FROM sys.databases WHERE name = N'master'"
r2dbc.migrate.validationQueryExpectedResultValue: "Cyrillic_General_CI_AS"
volumes:
- ./migrations:/migrations