Migration tool
There is a migration tool that is useful if you would like to migrate from another Akka Persistence plugin to the R2DBC plugin. It has been tested with Akka Persistence JDBC as source plugin, but it should work with any plugin that has support for CurrentPersistenceIdsQuery
and CurrentEventsByPersistenceIdQuery
.
The migration tool can be run while the source system is still active, and it can be run multiple times with idempotent result. Full rolling update when switching database or Persistence plugin is not supported, but you can migrate most of the data while the system is online and then have a short full shutdown while migrating the remaining data that was written after the previous online migration.
Dependencies
The Akka dependencies are available from Akka’s library repository. To access them there, you need to configure the URL for this repository.
- Maven
<project> ... <repositories> <repository> <id>akka-repository</id> <name>Akka library repository</name> <url>https://repo.akka.io/maven</url> </repository> </repositories> </project>
- sbt
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
- Gradle
repositories { mavenCentral() maven { url "https://repo.akka.io/maven" } }
Additionally, add the dependency as below.
- Maven
<properties> <scala.binary.version>2.13</scala.binary.version> </properties> <dependencies> <dependency> <groupId>com.lightbend.akka</groupId> <artifactId>akka-persistence-r2dbc-migration_${scala.binary.version}</artifactId> <version>1.1.2</version> </dependency> </dependencies>
- sbt
libraryDependencies += "com.lightbend.akka" %% "akka-persistence-r2dbc-migration" % "1.1.2"
- Gradle
def versions = [ ScalaBinary: "2.13" ] dependencies { implementation "com.lightbend.akka:akka-persistence-r2dbc-migration_${versions.ScalaBinary}:1.1.2" }
Progress table
To speed up processing of subsequent runs it stores migrated persistence ids and sequence numbers in the table migration_progress
. In a subsequent run it will only migrate new events and snapshots compared to what was stored in migration_progress
. It will also find and migrate new persistence ids in a subsequent run. You can delete from migration_progress
if you want to re-run the full migration.
It’s recommended that you create the migration_progress
table before running the migration tool, but if it doesn’t exist the tool will try to create the table.
CREATE TABLE IF NOT EXISTS migration_progress(
persistence_id VARCHAR(255) NOT NULL,
event_seq_nr BIGINT,
snapshot_seq_nr BIGINT,
PRIMARY KEY(persistence_id)
Configuration
The migration tool can be run as main class akka.persistence.r2dbc.migration.MigrationTool
provided by the above akka-persistence-r2dbc-migration
dependency.
You need to provide configuration for the source persistence plugin and the target Rd2BC plugin in your application.conf
. An example of such configuration for migration from Akka Persistence JDBC:
sourceakka.persistence.r2dbc.migration {
source {
query-plugin-id = "jdbc-read-journal"
snapshot-plugin-id = "jdbc-snapshot-store"
}
}
akka.persistence.r2dbc {
# use different table names or schema
journal.table = "event_journal2"
snapshot.table = "snapshot2"
state.table = "durable_state2"
}
akka.persistence.r2dbc.connection-factory {
driver = "postgres"
host = "localhost"
port = 5432
user = "postgres"
password = "postgres"
database = "postgres"
}
akka-persistence-jdbc {
shared-databases {
default {
profile = "slick.jdbc.PostgresProfile$"
db {
host = "localhost"
url = "jdbc:postgresql://localhost:5432/postgres?reWriteBatchedInserts=true"
user = postgres
password = postgres
driver = "org.postgresql.Driver"
numThreads = 20
maxConnections = 20
minConnections = 5
}
}
}
}
jdbc-journal {
use-shared-db = "default"
}
jdbc-snapshot-store {
use-shared-db = "default"
}
jdbc-read-journal {
use-shared-db = "default"
}
# application specific serializers for events and snapshots
# must also be configured and included in classpath
Application specific serializers for events and snapshots must also be configured and included in classpath.
Reference configuration
The following can be overridden in your application.conf
for the migration tool specific settings:
sourceakka.persistence.r2dbc.migration {
# Akka Persistence plugin to migrate from.
# You must also define plugin specific configuration
# and application specific serializers for events and snapshots.
source {
query-plugin-id = "jdbc-read-journal"
snapshot-plugin-id = "jdbc-snapshot-store"
}
# R2DBC Akka Persistence plugin to migrate to.
# You must also define akka-persistence-r2dbc specific configuration.
target {
# this must be a configuration path of akka-persistence-r2dbc
persistence-plugin-id = "akka.persistence.r2dbc"
# Events are stored in batches of this size.
batch = 10
}
# How many persistence ids to migrate concurrently.
parallelism = 10
}