Stateful Functions applications can be packaged as either standalone applications or Flink jobs that can be submitted to a cluster.
The recommended deployment mode for Stateful Functions applications is to build a Docker image. This way, user code does not need to package any Apache Flink components. The provided base image allows teams to package their applications with all the necessary runtime dependencies quickly.
Below is an example Dockerfile for building a Stateful Functions image with both an embedded module and a remote module for an application called statefun-example
.
FROM ververica/flink-statefun:2.0.0
You can follow the status of Docker Hub contribution here.
If you prefer to package your job to submit to an existing Flink cluster, simply include statefun-flink-distribution
as a dependency to your application.
It includes all of Stateful Functions’ runtime dependencies and configures the application’s main entry-point.
The following configurations are strictly required for running StateFun application.