Database Migration in Continuous Integration Processes

Source – Dzone.com
How to use the open source tool Flyway to automatically migrate databases in your CI pipelines.

 

When talking aboutĀ source code migration, everything is simple. My team uses Git, Maven, and Jenkins to deliver code to the production server. But what do we do with database migration? How do we track it make sure that everything works properly after a new build? Flyway is a perfect tool that greatly simplifies our data migration process, and as a result, the whole development process.

What is Flyway?

So, what exactly is Flyway, and why is it so cool? Simply put, it helps you evolve your database schema easily and is reliable in all instances. The main idea of this tool is that it scans an appropriate folder with QSL scripts, executes them on a project startup or by command, calculates the checksums of executed files, and finally stores this info in a special table. This way, you don’t need to execute them manually. The common file structures from your project should look like those in the picture below:

Where the name convention of a file is:

V{version_number}_{subversion number}_{description}.sql

After that you can easily integrate Flyway into your Java project as a Spring bean and run on project startup:

<beans:bean id=”flyway” class=”org.flywaydb.core.Flyway” init-method=”migrate”>

<beans:propertyname=”dataSource”ref=”dataSource”/>

<beans:propertyname=”locations”value=”classpath:db/migration”/>

<beans:propertyname=”initOnMigrate”value=”true”/>

<beans:propertyname=”outOfOrder”value=”true”/>

</beans:bean>

The result of execution will look like this:

That’s all! Everytime the need to upgrade the database arises, whether it is the structure (ddl) or reference data (dml), simply create a new migration with a version number higher than the current one. Each time Flyway starts, it will find that migration and upgrade the database accordingly.

Tips and Tricks

But the real life is a little bit more painful than theory is! In the next section I will show you some common issues our team faced when using Flyway and their solutions.

The first issue was the version number during parallel teamwork, when two developers got source code from a repository, created a new file with the same version name, and committed them back. Obviously, after code synchronization, Flyway threw an exception because there were two different files with the same version.

Solution: Use Subversion names. Moreover, this subversion should be unique. We recommend to use task numbers. This way, your SQL file name should look likeĀ V5_2343_users.sql

The second issue followed after the first one, when SQL with name Ā V5_2343_users.sqlĀ has been committed and executed beforeĀ sql V5_2344_users.sql. Flyway threw an exception in version control. This could happen because developers worked in parallel, and didn’t know about the current status of other team members.

Solution: use the outOfOrder=trueĀ flag in Flyway.

The third issue was the migration checksum mismatch for developers with different environment platforms. As it appears, calculation of checksum is platform dependent. A developer on Mac/Linux can create a SQL migration file and check it into Git. It runs on production (which is on Linux) just fine. Then, a Windows developer takes a copy of the production database and loads it to their local machine. But when they pulled the SQL migration file from Git, it automatically converted the line endings to CRLF (Windows style). Now Flyway validates and migrates fail to say there is a checksum mismatch.

Solution: use Git withĀ core.autocrlf=inputĀ and run Flyway with init-mathod=”repair”.

This approach gives an opportunity to recalculate checksums according to the current platform. After that you can use Flyway in the usual way.

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x