Server
Connects this JVM process to the Airflow coordinator and dispatches task execution requests to the registered Bundle.
The typical entry point is:
public static void main(String[] args) {
Server.create(args).serve(new MyBundleBuilder().build());
}Content copied to clipboard
The process exits when the coordinator closes the connection (normally after one task-instance execution).
Functions
Link copied to clipboard
Suspending entry point: connects to the coordinator and serves task-execution requests from the given bundle.