Flux can be embedded as a normal dependency into your own JVM-based application. All the functionality available via the Flux CLI can instead be accessed via a public API.

Table of contents

Adding Flux as a dependency

To add Flux as a dependency to your application, add the following to your Maven pom.xml file:

<dependency>
  <groupId>com.marklogic</groupId>
  <artifactId>flux-api</artifactId>
  <version>1.0.0</version>
</dependency>

Or if you are using Gradle, add the following to your build.gradle file:

dependencies {
  implementation "com.marklogic:flux-api:1.0.0"
}

Javadocs

Please see the Flux API Javadocs for a list of all available public classes and methods.

Using the Flux API

The com.marklogic.flux.api.Flux class is the entry point to the Flux API. This class has a static method associated with each Flux CLI command.

Each method in the Flux class returns a subclass of the com.marklogic.flux.api.Executor interface. Each instance of Executor has two methods for specifying a connection to MarkLogic:

  • connectionString(String) allows you to specify a connection to MarkLogic via a connection string, which requires the user of basic or digest authentication.
  • connection(Consumer<ConnectionOptions>) allows you to specify a Java lambda expression for configuring the necessary options on the given com.marklogic.flux.api.ConnectionOptions object.

Each subclass of Executor has from and to methods for specifying options that control where data is read from and control where data is written to. Similar to the connection method above, all from and to methods allow you to specify a Java lambda expression to configuring the options.

After configuring the necessary options for an Executor, you can use of the following methods to run the executor:

  • execute() runs the executor, resulting in data being read and written based on the options you configured. This is the typical method to invoke.
  • count() returns the number of records that will be read by the executor, but no data will be written. This method is is used when you first want to get a count of how much data will be processed.

Examples

The following program shows a simple example of importing files via the Flux API.

package org.example;

import com.marklogic.flux.api.Flux;

public class App {

    public static void main(String[] args) {
        Flux.importGenericFiles()
            .connectionString("user:password@localhost:8000")
            .from(options -> options
                .paths("path/to/data"))
            .to(options -> options
                .collections("imported-files", "example-data)
                .permissionsString("rest-reader,read,rest-writer,update"))
            .execute();
    }
}

Using the Flux API in Gradle

You can use the Flux API in a build.gradle Gradle file too. You must first add it as a dependency to your build file:

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath "com.marklogic:flux-api:1.0.0"
  }
}

You can then create a custom task that makes use of the Flux API in a similar fashion to using it in Java code:

import com.marklogic.flux.api.Flux
tasks.register("importFiles") {
  doLast {
    Flux.importGenericFiles()
      .from("path/to/files")
      .connectionString("flux-example-user:password@localhost:8004")
      .to({ it.permissionsString("flux-example-role,read,flux-example-role,update") })
      .execute()
  }
}

If you are running Gradle with Java 17 or higher, you will likely need to specify one or more --add-opens arguments when running Gradle. For example, if you run Gradle with --stacktrace and see the text “because module java.base does not export sun.nio.ch” in the exception, you can add the following to your gradle.properties file to allow access to the sun.nio.ch package:

org.gradle.jvmargs=--add-opens=java.base/sun.nio.ch=ALL-UNNAMED

The Gradle documentation provides more information on the org.gradle.jvmargs property along with other ways to customize the Gradle environment.

If you are using a plugin like ml-gradle that brings in its own version of the FasterXML Jackson APIs, you need to be sure that the version of Jackson is between 2.14.0 and 2.15.0 as required by the Apache Spark dependency of Flux. The following shows an example of excluding these dependencies from ml-gradle in a build.gradle file so that ml-gradle will use the Jackson APIs brought in via Flux:

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath "com.marklogic:flux-api:1.0.0"
    classpath("com.marklogic:ml-gradle:4.8.0") {
      exclude group: "com.fasterxml.jackson.databind"
      exclude group: "com.fasterxml.jackson.core"
      exclude group: "com.fasterxml.jackson.dataformat"
    }
  }
}