BigData / Apache StreamPark Interview questions
What is the difference between StreamPark Core and StreamPark Console?
They solve different halves of the same problem, and mixing them up is a common beginner confusion.
| StreamPark Core | StreamPark Console |
| A coding-time development framework | A runtime, web-based operations platform |
| Used by developers writing Flink/Spark code | Used by developers and operators running jobs |
| Provides RuntimeContext and connectors | Provides build, deploy, monitor, and alert features |
| Lives inside the job's own codebase | Runs as a separate service the job is submitted through |
In practice, a project can use Core's conventions and connectors, then be built, deployed, and watched entirely through Console — the two are meant to be used together, not as alternatives.
More Related questions...