Back to Flyway

Ignite

documentation/Reference/Database Driver Reference/Ignite.md

latest2.0 KB
Original Source
  • Verified Versions: N/A
  • Maintainer: {% include community-db.html %}

Supported Versions and Support Levels

{% include database-boilerplate.html %}

Driver

ItemDetails
URL format<code>jdbc:ignite:thin://<i>host</i>:<i>port</i>/<i>database</i></code>
SSL supportNot tested
Ships with Flyway Command-lineNo
Maven Central coordinatesorg.apache.ignite:ignite-core
Supported versionsN/A
Default Java classorg.apache.ignite.IgniteJdbcThinDriver
Flyway Community implementationflyway-community-db-support

Java Usage

Ignite support is a separate dependency for Flyway and will need to be added to your Java project to access these features.

Maven

Open Source

xml

<dependency>
    <groupId>org.flywaydb</groupId>
    <artifactId>flyway-database-ignite</artifactId>
</dependency>

Gradle

Open Source

groovy
buildscript {
    dependencies {
        implementation "org.flywaydb:flyway-database-ignite"
    }
}