Skip to content

Bukama/flywaytest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Evaluating Flyway

In this project I want to evaluate Flyway for automatic schema migrations. My goal is to find out if and how automatic migrations can be used having some real world requirements in mind (like not using a local H2 database, but an Oracle database). Non-obvious requirements are listed in the Requirements and Questions section.

Environment

I want to evaluate a real world environment where you have multiple stages (DEV, TST, INT, PROD, maybe more). Each stage has one main schema, but especially on DEV level there are additional ones (one for each developer). Furthermore, I investigate dynamic object creation, e.g. creating users depending on the schemas name, as it's a best practice that each component uses an own, specialized user with individual rights. Where I work, the names of those application users are aligned to the schema, e.g. <schema><application>.

I did not investigated SSL connections, as I'm not aware of the requirements at my work. However, the Flayway documentation states, that SSL connections are support in general.

For the evaluation I've created a local Oracle database using the official Oracle 18 XE installer. Because I didn't want to spend too much time creating Oracle databases, I simulated different schemas by using different users (as each user gets an own schema automatically).

The connection string of my local database is jdbc:oracle:thin:@localhost:1521/xe.

Basic script

Up to now the basic schema creation, including defining the user c##schemaowner as a simulation of a main schema, is done manually before starting with Flyway.

CREATE USER c##schemauser
   IDENTIFIED BY _Oracle_;
 
 GRANT CONNECT TO c##schemauser;
 GRANT create session TO c##schemauser;
 GRANT create table TO c##schemauser;
 GRANT create view TO c##schemauser;
 GRANT create any trigger TO c##schemauser;
 GRANT create any procedure TO c##schemauser;
 GRANT create sequence TO c##schemauser;
 GRANT create synonym TO c##schemauser;
 
 GRANT UNLIMITED TABLESPACE TO c##schemauser;

Maven setup

My goal was to define and store only the general, non-critical database information (e.g. the connection URL) inside the project.

Note: Of course, the user and password should not be stored inside the repository at all! Call me lazy that I've done it during the evaluation, after I tried it (successfully) using the CLI.

Usage

To migrate a database using Flyway and Maven on the command line:

mvn flyway:migrate -Dflyway.url=... -Dflyway.user=... -Dflyway.password=...

On the first usage, Flyway creates the flyway_schema_history table.

[INFO] Flyway Community Edition 6.5.6 by Redgate
[INFO] Database: jdbc:oracle:thin:@localhost:1521/xe (Oracle 18.0)
[INFO] Successfully validated 1 migration (execution time 00:00.018s)
[INFO] Creating Schema History table "C##SCHEMAUSER"."flyway_schema_history" ...
[INFO] Current version of schema "C##SCHEMAUSER": << Empty Schema >>
[INFO] Migrating schema "C##SCHEMAUSER" to version 1 - Create person table
[INFO] Successfully applied 1 migration to schema "C##SCHEMAUSER" (execution time 00:00.415s)

It can also be created by defining a baseline.

Requirements and questions

The following requirements (next to the one listed in the Environment section) and questions were investigated during the evaluation.

How to support multiple schemas?

The easiest (and I think most comfortable) way is to define different Maven profiles. Each profile defines the non-critical (in terms of SCM) values, like the URL, but of course not any credentials. So when working on a schema only the profile's name, and the credentials must be passed. The credentials can even be stored in a personal settings.xml, but of course it then should be encrypted using Maven's password encryption.

Flyway offers the three different default variations to support multiple schemas. They only work, when the same credentials are used everywhere, see Flyway FAQ: Multiple schemas. Of course, the schema name(s) must be defined (e.g. by using the schemas property), when working on another user's schema.

In my example evaluation mainly the schema owner is used for migration, resulting in using the schema owner's schema. I also tried using a different user (in my example the system user), by using an own profile for the user.

How to connect to Oracle databases?

As the API is plain JAVA, it is possible to use a regular JDBC connection: jdbc:oracle:thin:@//<host>:<port>/<service>

It's also possible to use an entry of the tnsames.ora file: jdbc:oracle:thin:@<tns_entry>. For this the value of TNS_ADMIN environment variable must point to the folder containing the tnsames.ora file.

Source: Flyway documentation: configfiles

The driver for the connection can be defined in the Maven project and automatically downloaded from Maven central. So there's no driver handling needed.

What's the default encoding?

The default encoding is UTF-8 for migration scripts.

Source: Flyway documentation: command migrate

Is it possible to use placeholders to create dynamic names / values?

By using placeholders it is possible to create dynamic values inside the scripts. The value for those can be passed from the commandline, using this option:

-Dflyway.placeholders.<name_of_the_placeholder>=<value_to_be_passed>

Flyway also provides some default placeholder, e.g. ${flyway:defaultSchema}, which can perfectly used to create schema-related objects, e.g. users for applications.

Source: Flyway documentation: placeholders

How is the migrating user identified (for storage in history table)?

By default, the user which is used to open the connection and executes the migration is stored inside the history table. This means that a personalized user shall be used for connections and not a technical one.

Are migrations done in transactions and are rollbacks possible?

In general Flyway executes all migrations in transactions. However, Oracle does not support executing DDL statements in transactions.

Other databases such as Oracle will implicitly sneak in a commit before and after each DDL statement, drastically reducing the effectiveness of this roll back. One alternative if you want to work around this, is to include only a single DDL statement per migration. This solution however has the drawback of being quite cumbersome.

Source: Flyway FAQ: Rollback

Depending on the changes made, migrations can be undone using the undo command (in combination with an undo-script). The command needs a Flyway Pro version.

Is Oracle SQL*Plus Syntax supported?

When using the Flyway Pro version, Flyway supports several commands, see Flyway documentation: SQL*Plus commands

To activate SQL*Plus support the following setting must be placed: <OracleSqlplus>true<OracleSqlplus>

Warning: Interactions, which are possible in SQLPlus, are not supported! Such statements just take null as input which can result in heavy problems. Scripts must not contain such interactions to work probably. This may effort work if a project already has interactive SQLPlus scripts.

Is a clean database needed to start using Flyway?

No. An already existing database can be used to, using the baseline command. Caution: All scripts that resides inside the project's migration folder are ignored! Only scripts added after the baseline was created are taken into migration!

If there's the need to clean a database, e.g. to rebuild a developer's one, the clean command can be used, which deletes all objects inside the schema. Note: To use the clean command, the cleanDisabled setting must be set to false. In this project I set it to true to not allow (unwanted) deletions. Of course the setting can be overwritten from the command line.

What Oracle databases does Flyway support?

Flyway supports all Oracle databases since version 10.1. However, the not all Flyway versions support all versions. Only the Flyway Enterprise version supports older databases up to (including) 12.1.

Which licence does Flyway required for enterprise usage?

According to the editions overview the Pro and Enterprise version "only" differ in Java 7 compatibility, support (including payment methods) and pricing. The big difference when using Oracle databases lies in the supported database versions (see above), where only the Enterprise version supports 12.1 databases.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published