tree: 312664aaa1b16f0f67be78c319ca48bfd0b75d70 [path history] [tgz]
  1. interpreter/
  2. scala-2.12/
  3. scala-2.13/
  4. spark-scala-parent/
  5. spark-shims/
  6. spark3-shims/
  7. pom.xml
  8. README.md
spark/README.md

Spark Interpreter

Spark interpreter is the first and most important interpreter of Zeppelin. It supports multiple versions of Spark and multiple versions of Scala.

Module structure of Spark interpreter

  • interpreter
    • This module is the entry module of Spark interpreter. All the interpreters are defined here. SparkInterpreter is the most important one, SparkContext/SparkSession is created here, other interpreters (PySparkInterpreter,IPySparkInterpreter, SparkRInterpreter and etc) are all depends on SparkInterpreter.
      Due to incompatibility between Scala versions, there are several scala-x modules for each supported Scala version. Due to incompatibility between Spark versions, there are several spark-shims modules for each supported Spark version.
  • spark-scala-parent
    • Parent module for each Scala module
  • scala-2.12
    • Scala module for Scala 2.12
  • scala-2.13
    • Scala module for Scala 2.13
  • spark-shims
    • Parent module for each Spark module
  • spark3-shims
    • Shims module for Spark3