> For the complete documentation index, see [llms.txt](https://ccapeng.gitbook.io/context/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ccapeng.gitbook.io/context/topic-spark.md).

# Spark

* [What is Spark](https://spark.apache.org/)
  * A unified analytics engine for large-scale data processing.
* What is Sparkcontext?
  * It's spark application container.
    * It takes configuration to start with spark working environment.
    * In [Apache Flink](https://flink.apache.org/), it is "Environment".
    * It's similar the Springboot. You need to have something like the following to start with.

      ```
        SpringApplication.run(DemoApplication.class, args);
      ```
