I want to configure DB migration tool with my j2ee web application. The application is continuously building up by hudson server. I am using both ant and maven with it. So I need compatibility with both of these (if possible).

In future I need support for different databases for this application as well as I need simple and easy configuration with application.

Currently I am looking at Liquibase and Flyway. I want to know depending on the above situation which will be the better one and why?

link|improve this question

0% accept rate
1  
I'd advise choosing Axel's answer. He's given the most balanced response and demonstrated a good understanding of both tools. – Mark O'Connor Dec 15 '11 at 19:43
Thanks very much for your posts. – Naveen Sangwan Dec 20 '11 at 9:41
I have integrated both liquibase & flyway with my application. Both are working fine. Both have their pros & cons. Now my concern is with webservices. Can Rest and Soap be used with these tools. If yes then can you please elaborate in details??? Thanks in advance. – Naveen Sangwan Dec 20 '11 at 9:44
@NaveenSangwan - Please do not ask additional questions as comments on the original one unless they are almost the same. Please ask a separate question. – cdeszaq Dec 20 '11 at 14:18
feedback

3 Answers

Flyaway appears to very similar tool: lightweight, simple to use and has good integration. I think you'll discover less resistance from fellow developers and DBA's, if all changes to the database remain in SQL.

Personally I'll stick with liquibase, it has more powerful features:

link|improve this answer
and you don't pull in spring deps when using liquibase – Karussell Feb 19 at 21:40
Is there any reason liquibase can't run a straight SQL script mode without any meta data tags added like flyaway allows? Seems like liquibase could have a simpler mode to be invoked where it just executes the scripts. – JustBob Mar 14 at 20:44
@JustBob Liquibase supports formatted SQL changelogs (liquibase.org/manual/formatted_sql_changelogs). I prefer to the XML formatted changelogs because I have to support more than one database vendor. – Mark O'Connor Mar 15 at 19:56
Right and you have to add comment tags to your SQL scripts. So you can't really use just a plain old SQL script you have to use a plain old SQL script with Liquibase comment tags. – JustBob Mar 16 at 4:23
@JustBob Liquibase is not flyway.... Comments is the low impact way to specify the changeset's meta data. The only alternative is to use the "sqlFile" refactoring liquibase.org/manual/custom_sql_file – Mark O'Connor Mar 16 at 22:28
show 1 more comment
feedback

As cdeszaq already mentioned the feature comparison matrix on the Flyway Homepage is a good starting point.

Both Liquibase and Flyway have Maven and Ant integration.

The next step is to determine if you can live with Liquibase's XML or annotated SQL formats or whether you prefer or require plain SQL and whether you need Java migrations.

Each has their pros and cons:

  • Liquibase XML: Smallest common denominator DB-independent format. It frees you from writing DDL and is compatible across DBs. Vendor lock-in (may or may not be an issue).
  • Liquibase annotated SQL: SQL with Liquibase metadata in comments (must be present). DDL gets converted to Liquibase XML with custom SQL blocks at runtime. May or may not be compatible across DBs.
  • Plain SQL (supported by Flyway): Regular DDL SQL file. May or may not be compatible across DBs. No special annotations. DB structure dumps using native DB tools may be used as is. No tool specific constructs. No lock in.
  • Java migrations (supported by Flyway): Migrations are Java classes using the JDBC API. Great for dealing with LOBs and complex data transformations. May or may not be compatible across DBs. Vendor lock-in (may or may not be an issue).

A small note on DDL portability: in-memory DBs like H2 have good compatibility modes with "real" DBs. This may eliminate the need for an additional abstraction.

These are other potential differentiators to look for:

  • if you wish to use DB dumps out of the box (including ones using PL/SQL, T-SQL or MySQL and PostgreSQL stored procedures): Go for Flyway.
  • if DDL is incompatible between the databases and you don't mind Liquibase's XML and you don't need advanced vendor specific features: Go for Liquibase.
  • if you need support for a DB not supported by Flyway: Go for Liquibase.
  • if you need support for LOBs (in reference data for example): Go for Flyway.

This leaves us to the issue of simplicity and application integration. This is the area where I believe Flyway shines. It is very lightweight and the application integration couldn't be easier.

To make a long story short and in the spirit of YAGNI: use the simplest tool that fits your needs.

Note: The issue of down migrations is a red herring as I've described here

Disclaimer: I am one of Flyway's developers and I am looking forward to your feedback. :-)

link|improve this answer
Not meaning to start a flame war, but how does Flyway have superior support for PL/SQL? I'm more familiar with liquibase and have found it works great managing my Oracle apps. – Mark O'Connor Dec 13 '11 at 22:25
@Mark O'Connor: Thanks for your feedback. I've slightly restructured my answer. The reason I believe Flyway's support for PL/SQL to be superior is that you can use virtually any script that would run with sqlplus out of the box, including complete DB dumps. No need to divide it manually yourself in individual statements. Hope this helps. – Axel Fontaine Dec 14 '11 at 10:05
Fair enough. I re-read your website documentation, good work on flyway! I'll remain a liquibase advocate, as you've pointed out I need database independence and my customers demand "down migration" scripts.... I understand you sentiments in opposing them, but.... :-) – Mark O'Connor Dec 15 '11 at 19:40
feedback

The Flyway project page seems to have a pretty good comparison table that hits these points...

I would say give them both a try (or at least read through their documentation), and then use whichever seems the best. Then, if it doesn't work, you still have the majority of the work (the actual migrations) and can fairly easily switch.

In both cases, the frameworks are fairly light-weight, so they don't add in much extra cruft in order to get migrations working.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.