aholub7x
aholub7x

Reputation: 818

Flyway long migration with parallel process

If I have long migration script with batch of changes, does it run inside transaction? I have suspicion that it is possible to change the current schema in the middle of migration by the parallel migration which uses same dataSource.

Upvotes: 0

Views: 399

Answers (1)

Axel Fontaine
Axel Fontaine

Reputation: 35169

Each Flyway instance uses its own connection and each migration is run within a transaction.

Upvotes: 1

Related Questions