BigData / Apache StreamPark Interview questions
What are the two core components of Apache StreamPark?
StreamPark is built around two complementary pieces that split "writing the job" from "running the job."
- StreamPark Core — a development framework. It standardizes project configuration, encourages a functional programming style, and gives developers a
RuntimeContextplus out-of-the-box connectors layered over Flink's DataStream and SQL APIs. - StreamPark Console — a low-code, browser-based operations platform. It handles project compilation, publishing, parameter configuration, job startup, savepoints, Flink SQL editing, flame graphs, and monitoring.
Core reduces boilerplate at write time; Console removes the need for command-line submission scripts at run time. Together they cover the job's full path from a blank project to a running, monitored application in production.
More Related questions...