BigData / Apache StreamPark Interview questions
What deployment modes does StreamPark support for Flink jobs?
StreamPark covers essentially every way Flink itself can be deployed, exposing each as a selectable execution mode when a job is configured.
| Cluster | Modes offered |
| YARN | Application, Per-Job, Session |
| Kubernetes | Application, Session |
| Standalone | Remote (submit to an already-running cluster) |
This range matters because different modes suit different needs: Application mode isolates each job in its own JobManager, Session mode shares one JobManager across jobs to save resources, and Remote mode targets a cluster that already exists outside StreamPark's control.
More Related questions...