Java/Scala library for easily authoring Flyte tasks and workflows.
Current development status:
- MVP features are developed
- Missing user documentation
- Project being tested, and collecting feedback
- No guarantees of API stability
To learn more about Flyte refer to:
It requires Java 1.8 and Docker
mvn clean verify
# Inspect dependency tree
mvn dependency:tree
# Inspect tooling dependency tree
mvn dependency:resolve-plugins
You can build und run examples yourself.
Create .env.local
with:
FLYTE_PLATFORM_URL=flyte.local:81
FLYTE_STAGING_LOCATION=gs://yourbucket
FLYTE_PLATFORM_INSECURE=True
Package and run:
$ mvn package
$ scripts/jflyte register workflows \
-d=development \
-p=flytesnacks \
-v=$(git describe --always) \
-cp=flytekit-examples/target/lib
<dependency>
<groupId>org.flyte</groupId>
<artifactId>flytekit-java</artifactId>
<version>0.3.15</version>
</dependency>
Scala 2.12 and Scala 2.13 are supported.
libraryDependencies ++= Seq(
"org.flyte" % "flytekit-java" % "0.3.15",
"org.flyte" %% "flytekit-scala" % "0.3.15"
)
Run mvn spotless:apply
before committing.
Also use git commit --signoff "Commit message"
to comply with DCO.