I'm reading through the Flink docs regarding Appli...
# random
i
I'm reading through the Flink docs regarding Application Mode and HA. Is this statement saying that it's not possible to have multi-job application mode with HA or that you can have multiple jobs as long as they're started using
executeAsync()
? > The Application Mode allows for multi-
execute()
applications but High-Availability is not supported in these cases. High-Availability in Application Mode is only supported for single-
execute()
applications. > Additionally, when any of multiple running jobs in Application Mode (submitted for example using
executeAsync()
) gets cancelled, all jobs will be stopped and the JobManager will shut down. Regular job completions (by the sources shutting down) are supported. Source: https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/overview/#application-mode
flink 1
b
Hi it means that once HA is enabled, the application must contain only one job(i.e. one executeAsync() or one execute() ).