A JVM SDK for Apache Airflow. You can use any JVM-compatible language to write workflow bundles, and have Airflow consume the result.
The SDK and execution-time logic is implemented in Kotlin. An example is bundled showing how the SDK can be used in Java.
./gradlew build
./gradlew dokkaGenerate
This uses Dokka to build documentation of the Java SDK. This generates both an HTML representation and Javadoc.
The SDK projects must first built and published:
./gradlew publishToMavenLocal -PskipSigning=true
After the build is successful, you should be able to see directories in ~/.m2/repository/org/apache/airflow/.
Now cd example into the example project, and
Package the example to ./example/build/bundle
# We're now in the 'example' directory, so gradlew is in parent. ../gradlew bundle
Put the DAG with stub tasks to somewhere Airflow can find.
Ensure the java command is available in the same environment the Airflow task worker is in.
Configure Airflow to route tasks in the java queue to be run with Java:
export AIRFLOW__SDK__COORDINATORS='{ "java": { "classpath": "airflow.sdk.coordinators.java.JavaCoordinator", "kwargs": {"jars_root": ["/opt/airflow/java-sdk/example/build/bundle"]} } }' export AIRFLOW__SDK__QUEUE_TO_COORDINATOR='{"java": "java"}'
Ensure the Connection and Variable needed by the example DAG are available:
export AIRFLOW_CONN_TEST_HTTP='{ "conn_type": "http", "login": "user", "password": "pass", "host": "example.com", "port": 1234, "extra": {"param1": "val1", "param2": "val2"} }' export AIRFLOW_VAR_MY_VARIABLE=123
The SDK is published to Maven Central via the ASF Nexus staging repository. The full release process follows the ASF Maven publishing guide.
Edit gradle.properties and set the version for this release:
projectVersion=1.0.0
Commit the change and push it to the release branch.
Before touching any remote repository, publish to your local Maven cache and inspect the generated POM:
rm -rf ~/.m2/repository/org/apache/airflow/ # Start clean. ./gradlew publishToMavenLocal -PskipSigning=true # The airflow-sdk runtime. less ~/.m2/repository/org/apache/airflow/airflow-sdk/*/airflow-sdk-*.pom # The bill of materials of airflow-sdk less ~/.m2/repository/org/apache/airflow/airflow-sdk-bom/*/*.pom # The annotation processor for the builder pattern. less ~/.m2/repository/org/apache/airflow/airflow-sdk-processor/*/airflow-sdk-*.pom # The Gradle plugin for bundling. less ~/.m2/repository/org/apache/airflow/airflow-sdk-gradle-plugin/*/airflow-sdk-*.pom # The Gradle plugin's registration. less ~/.m2/repository/org/apache/airflow/sdk/org.apache.airflow.sdk.gradle.plugin/*/*.pom
Check that the coordinates, description, license, SCM, and organization fields look correct.
To test the full publish flow without touching ASF infrastructure, override the repository URL to a local directory
rm -rf /tmp/local-maven-repo # Start clean. ./gradlew publish -PmavenUrl=file:///tmp/local-maven-repo -PskipSigning=true ls /tmp/local-maven-repo/org/apache/airflow/ # This should contain the same components in ~/.m2 as inspected in the previous step.
NOTE: Signing is not required since nothing goes to Maven Central. If you want to test signing, set the GPG private key and passphrase as described in the next section, and remove -PskipSigning=true from the above command.
Store the credentials in ~/.gradle/gradle.properties so they are not exposed in your shell history:
mavenUsername=your-asf-nexus-token-username mavenPassword=your-asf-nexus-token-password signing.password=your-gpg-key-passphrase
Then run the publish task.
./gradlew publish -P"signing.key=$(gpg --armor --export-secret-keys your-gpg-key-fingerprint)"
NOTE: The signing key is supplied through the command line since it contains newlines, which does not work well in a Gradle properties file.
NOTE: You can also use the following environment variables to provide the credentials instead: ASF_NEXUS_USERNAME, ASF_NEXUS_PASSWORD, SIGNING_KEY, and SIGNING_PASSWORD. This is especially useful on e.g. CI.
Verify all artifacts have been released correctly to the ASF Nexus server.
Check Updated by (should be your ID), Uploaded Date, and Last Modified.
The user implements a Java application containing task methods annotated (or registered) with the SDK. The application is packaged as a bundle and placed where Airflow can find it.
When the Airflow supervisor identifies that a task should run with Java, it launches the JVM application as a subprocess. The flow is:
JavaCoordinator.execute_task() (Python) scans jars_root, builds the classpath, and spawns java -cp <jars> <MainClass> --comm=<host>:<port> --logs=<host>:<port>.Server.kt connects to both sockets immediately on startup.StartupDetails MessagePack message; the JVM reads it, looks up the matching task by dag_id + task_id, and calls the user's task method.TaskState message and closes the socket. The JVM process then exits.Log messages produced by the SDK (not by user code) are forwarded over the --logs socket so the supervisor can append them to Airflow's log store.
The wire protocol is defined in task-sdk/src/airflow/sdk/execution_time/schema/schema.json. execution/Comm.kt implements the framing layer. Adding a new message type requires changes in both schema.json (Python side) and execution/Comm.kt + execution/Client.kt (JVM side).
See Architectural Design Records in the adr directory to learn more.
java-sdk/ ├── sdk/ # Core library: public API (org.apache.airflow.sdk) and internal │ # execution layer (org.apache.airflow.sdk.execution) ├── processor/ # Annotation processor that generates *Builder classes ├── plugin/ # Gradle plugin (org.apache.airflow.sdk) — bundle task, manifest │ # attribute injection, and verifyBundleMainClass ├── bom/ # Bill of Materials POM so consumers can import all SDK artifacts │ # at a consistent version ├── slf4j/ # SLF4J logging provider; routes SLF4J calls to the Airflow log store ├── jul/ # java.util.logging handler; routes JUL records to the Airflow log store ├── jpl/ # Java Platform Logging provider (System.Logger, JEP 264); routes JPL │ # calls to the Airflow log store ├── log4j2/ # Log4j 2 appender; routes Log4j 2 events to the Airflow log store ├── example/ # End-to-end example bundle (annotation + interface APIs, Java source) ├── adr/ # Architectural Decision Records for the Java SDK └── buildSrc/ # Shared Gradle convention plugins (Java version, lint, etc.)
The Python coordinator that launches the JVM subprocess lives outside this directory:
task-sdk/src/airflow/sdk/coordinators/java/ # JavaCoordinator (SubprocessCoordinator subclass) task-sdk/tests/coordinators/java/ # Python-side unit and integration tests
# Run all JVM tests ./gradlew test # Run a specific test class ./gradlew :sdk:test --tests "org.apache.airflow.sdk.execution.CommTest"
For the Python coordinator, use Breeze (never run pytest on the host directly):
breeze testing task-sdk-tests -- task_sdk/coordinators/java
End-to-end tests that exercise a real Airflow environment:
E2E_TEST_MODE=java_sdk uv run --project airflow-e2e-tests pytest \ tests/airflow_e2e_tests/java_sdk_tests/ -xvs
sdk/src/main/kotlin/ (the public API surface) free of internal implementation details; those belong in the execution/ sub-package.BuilderProcessor.kt) uses kapt. When adding a new annotation, define it in Builder.kt, handle it in BuilderProcessor.kt, and add a golden-output test in processor/src/test/kotlin/.SubprocessCoordinator. Do not reach into the JVM process from Python beyond what _build_execute_task_command provides../gradlew ktLintCheck spotlessCheck (or ktLintFormat spotlessApply) before submitting — the project enforces Kotlin and Java formatting.Adding a new Client method (e.g. a new Airflow API call):
schema.json if the message type is new.execution/Comm.kt or a new file.Client.kt which delegates to execution/Client.kt for the supervisor wire call.sdk/src/test/kotlin/.../ClientTest.kt mocking the socket layer.airflow-core/docs/authoring-and-scheduling/language-sdks/java.rst if the change is user-visible.Adding a new annotation:
Builder.kt.BuilderProcessor.kt — generate the appropriate code in the *Builder class.BuilderTest.kt with expected generated output.java.rst.Fixing a framing or protocol bug: focus on execution/Comm.kt and execution/Frame.kt. CommTest.kt covers encode/decode round-trips; add a regression test reproducing the bug before fixing it.
./gradlew build test (JVM) and the relevant pytest suite (Python coordinator).schema.json changed, verify both sides (JVM + Python) handle the new/changed fields.task-sdk/, add a newsfragment under airflow-core/newsfragments/.