Spark is an amazingly powerful big data engine that's written in Scala.
This document draws on the Spark source code, the Spark examples, and popular open source Spark libraries to outline coding conventions and best practices.
See the PySpark style guide if you're using the Python API.
Comprehensive Scala style guides already exist and this document focuses specifically on the style issues for Spark programmers. Reader beware:
Any style guide written in English is either so brief that it’s ambiguous, or so long that no one reads it.
- Scala Style Guides
- Variables
- Columns
- Chained Method Calls
- Spark SQL
- Writing Functions
- null
- JAR Files
- Documentation
- Testing
- Open Source
- Best Practices
There is an official Scala style guide and a Databricks Scala style guide. The founders of Databricks created Spark, so you should follow the Databricks scala-style-guide.
You can create an amazing open source project like Spark and haters still gonna hate!
Scalafmt is the best Scala code formatter. Stick with the default style settings as much as possible. Here are some customizations that work well for Spark projects (add these to the .scalafmt.conf
file):
align = more
maxColumn = 150
docstrings = JavaDoc
Scala code is annoying to format manually and your team should have an automated solution.
Variables should use camelCase. Variables that point to DataFrames, Datasets, and RDDs should be suffixed to make your code readable:
- Variables pointing to DataFrames should be suffixed with
DF
(following conventions in the Spark Programming Guide)
peopleDF.createOrReplaceTempView("people")
- Variables pointing to Datasets should be suffixed with
DS
val stringsDS = sqlDF.map {
case Row(key: Int, value: String) => s"Key: $key, Value: $value"
}
- Variables pointing to RDDs should be suffixed with
RDD
val peopleRDD = spark.sparkContext.textFile("examples/src/main/resources/people.txt")
Suffixing types is less important in version controlled codebases that allow for IDE-grade type support. This is more important when working in Databricks notebooks without type hints.
Use the variable col
for Column
arguments.
def min(col: Column)
Use col1
and col2
for methods that take two Column
arguments.
def corr(col1: Column, col2: Column)
Use cols
for methods that take an arbitrary number of Column
arguments.
def array(cols: Column*)
Use colName
for methods that take a String
argument that refers to the name of a Column
.
def sqrt(colName: String): Column
Use colName1
and colName2
for methods that take multiple column name arguments.
The org.apache.spark.sql.functions
do not use consistent variable names, which is annoying.
Collections should use plural variable names.
var animals = List("dog", "cat", "goose")
// DON'T DO THIS
var animalList = List("dog", "cat", "goose")
Singular nouns should be used for single objects.
val myCarColor = "red"
Spark methods are often deeply chained and should be broken up on multiple lines.
jdbcDF.write
.format("jdbc")
.option("url", "jdbc:postgresql:dbserver")
.option("dbtable", "schema.tablename")
.option("user", "username")
.option("password", "password")
.save()
Here's an example of a well formatted extract:
val extractDF = spark.read.parquet("someS3Path")
.select("name", "Date of Birth")
.transform(someCustomTransformation())
.withColumnRenamed("Date of Birth", "date_of_birth")
.filter(col("date_of_birth") > "1999-01-02")
If you're using a text editor, you can write multiline strings like this:
val coolDF = spark.sql(
"""
|select
| `first_name`,
| `last_name`,
| `hair_color`
|from people
|""".stripMargin)
Managing the pipes is tedious in notebooks that don't offer IDE-grade text editing support. In notebooks, it's better to write multiline SQL code like this:
val coolDF = spark.sql("""
select
`first_name`,
`last_name`,
`hair_color`
from people
""")
Columns have name, type, nullable, and metadata properties.
Columns that contain boolean values should use predicate names like is_nice_person
or has_red_hair
. Use snake_case
for column names, so it's easier to write SQL code.
You can write (col("is_summer") && col("is_europe"))
instead of (col("is_summer") === true && col("is_europe") === true)
. The predicate column names make the concise syntax readable.
Columns should be typed properly. Don't overuse StringType
in your schema.
Columns should only be nullable if null
values are allowed. Code written for nullable columns should always address null
values gracefully.
Use acronyms when needed to keep column names short. Define any acronyms used at the top of the data file, so other programmers can follow along.
Use the following shorthand notation for columns that perform comparisons.
gt
: greater thanlt
: less thanleq
: less than or equal togeq
: greater than or equal toeq
: equal tobetween
Here are some example column names:
player_age_gt_20
player_age_gt_15_leq_30
player_age_between_13_19
player_age_eq_45
Custom transformations shouldn't overwrite an existing field in a schema during a transformation. Add a new column to a DataFrame instead of mutating the data in an existing column. DataFrames are technically immutable, but overwriting a column feels like a mutation ;)
Suppose you and would like to coalesce the name
and nickname
columns in a DataFrame, here's the sample data.
+-----+--------+
| name|nickname|
+-----+--------+
| joe| null|
| null| crazy|
|frank| bull|
+-----+--------+
Don't run df.withColumn("name", coalesce($"name", $"nickname"))
and overwrite the name
field and create a DataFrame like this:
+-----+--------+
| name|nickname|
+-----+--------+
| joe| null|
|crazy| crazy|
|frank| bull|
+-----+--------+
It's better to preserve column immutability by creating a new column, so column immutability is preserved.
+-----+--------+---------+
| name|nickname|name_meow|
+-----+--------+---------+
| joe| null| joe|
| null| crazy| crazy|
|frank| bull| frank|
+-----+--------+---------+
Here's an example of a custom SQL function that returns child
when the age is less than 13, teenager
when the age is between 13 and 18, and adult
when the age is above 18.
import org.apache.spark.sql.Column
def lifeStage(col: Column): Column = {
when(col < 13, "child")
.when(col >= 13 && col <= 18, "teenager")
.when(col > 18, "adult")
}
The lifeStage()
function will return null
when col
is null
. All built-in Spark functions gracefully handle the null
case, so we don't need to write explicit null
logic in the lifeStage()
function.
Custom SQL functions can also be optimized by the Spark compiler, so this is a good way to write code. Read this blog post for a full discussion on custom SQL functions.
You can write User Defined Functions (UDFs) when you need to write code that leverages advanced Scala programming features or Java libraries.
Here's an example of a UDF that downcases and removes the whitespace of a string:
def betterLowerRemoveAllWhitespace(s: String): Option[String] = {
val str = Option(s).getOrElse(return None)
Some(str.toLowerCase().replaceAll("\\s", ""))
}
val betterLowerRemoveAllWhitespaceUDF = udf[Option[String], String](betterLowerRemoveAllWhitespace)
The betterLowerRemoveAllWhitespace()
function explicitly handles null
input, so the function won't error out with a NullPointerException
. You should always write UDFs that handle null
input gracefully.
In this case, a custom SQL function can provide the same functionality, but with less code:
def bestLowerRemoveAllWhitespace()(col: Column): Column = {
lower(regexp_replace(col, "\\s+", ""))
}
UDFs are a black box from the Spark compiler's perspective and should be avoided whenever possible.
Most logic can be coded as a custom SQL function. Only revert to UDFs when the native Spark API isn't sufficient.
See this blog post for more information about UDFs.
Catalyst expressions (aka Spark native functions) are implemented like the functions in org.apache.spark.sql.functions
.
This blog post explains how to write Spark native functions. This design pattern is used in projects like bebe and itachi.
Catalyst expressions can be optimized by Spark and are great for advanced users that want to build advanced functionality.
Use multiple parameter lists when defining custom transformations, so they can be chained with the Dataset#transform
method. The Databricks Scala style guide says to "Avoid using multiple parameter lists. They complicate operator overloading, and can confuse programmers less familiar with Scala", but this suggestion should be ignored when writing custom DataFrame transformations.
You need to use multiple parameter lists to write awesome code like this:
def withCat(name: String)(df: DataFrame): DataFrame = {
df.withColumn("cats", lit(s"$name meow"))
}
The withCat()
custom transformation can be used as follows:
val niceDF = df.transform(withCat("puffy"))
-
with
precedes transformations that add columns:-
withCoolCat()
adds the columncool_cat
to a DataFrame -
withIsNicePerson()
adds the columnis_nice_person
to a DataFrame.
-
-
filter
precedes transformations that remove rows:-
filterNegativeGrowthRate()
removes the data rows where thegrowth_rate
column is negative -
filterInvalidZipCodes()
removes the data with a malformedzip_code
-
-
enrich
precedes transformations that clobber columns. Clobbing columns should be avoided when possible, soenrich
transformations should only be used in rare circumstances. -
explode
precedes transformations that add rows to a DataFrame by "exploding" a row into multiple rows.
Schema dependent DataFrame transformations make assumptions about the underlying DataFrame schema. Schema dependent DataFrame transformations should explicitly validate DataFrame dependencies to clarify intentions of the code and provide readable error messages.
The following withFullName()
DataFrame transformation assumes the underlying DataFrame has first_name
and last_name
columns.
def withFullName()(df: DataFrame): DataFrame = {
df.withColumn(
"full_name",
concat_ws(" ", col("first_name"), col("last_name"))
)
}
You should use spark-daria to validate the schema requirements of a DataFrame transformation.
def withFullName()(df: DataFrame): DataFrame = {
validatePresenceOfColumns(df, Seq("first_name", "last_name"))
df.withColumn(
"full_name",
concat_ws(" ", col("first_name"), col("last_name"))
)
}
Notice how the refactored function makes it clear that this function requires first_name
and last_name
columns to run properly.
See this blog post for a detailed description on validating DataFrame dependencies.
You can also refactor the custom transformation to remove the column name dependency:
def withFullName(firstColName: String, lastColName: String)(df: DataFrame): DataFrame = {
validatePresenceOfColumns(df, Seq(firstColName, lastColName))
df.withColumn(
"full_name",
concat_ws(" ", col(firstColName), col(lastColName))
)
}
Schema independent DataFrame transformations do not depend on the underlying DataFrame schema, as discussed in this blog post.
def withAgePlusOne(
ageColName: String,
resultColName: String
)(df: DataFrame): DataFrame = {
df.withColumn(resultColName, col(ageColName) + 1)
}
The withAgePlusOne
allows users to pass in column names, so the function can be applied to DataFrames with different schemas.
Schema independent DataFrame transformations also allow for column validations, so they output readable error messages.
def withAgePlusOne(
ageColName: String,
resultColName: String
)(df: DataFrame): DataFrame = {
validatePresenceOfColumns(df, Seq(ageColName, resultColName))
df.withColumn(resultColName, col(ageColName) + 1)
}
Schema dependent transformations should be used for functions that rely on a large number of columns or functions that are only expected to be run on a certain schema (e.g. a data lake with a schema that doesn't change).
Schema independent transformations should be run for functions that will be run on DataFrames with different schemas
null
should be used in DataFrames for values that are unknown, missing, or irrelevant.
Spark core functions frequently return null
and your code can also add null
to DataFrames (by returning None
or explicitly returning null
).
Let's revisit the withFullName
function from earlier:
def withFullName()(df: DataFrame): DataFrame = {
df.withColumn(
"full_name",
concat_ws(" ", col("first_name"), col("last_name"))
)
}
withFullName
returns null
if either the first_name
or last_name
column is null
. Let's take a look at an example:
ADD EXAMPLE
The nullable property of a column should be set to false
if the column should not take null
values.
In general, it's better to keep all null
references out of UDFs and use Option[T]
instead. Option
is a bit slower and explicit null
references may be required for performance sensitive code. Start with Option
and only use explicit null
references if Option
becomes a performance bottleneck. Or better yet, avoid using UDFs completely so you don't have to either None
or null
in your code.
ADD discussion
null
is used extensively in test suites when constructing DataFrames.
ADD DISUSSION
JAR files package Spark projects, so the code can be executed in runtimes like EMR or Databricks.
This section discusses complexities of managing JAR files for Spark projects:
- fat / thin JAR files
- Cross compiling Scala versions
- Supporting multiple Spark versions
You can build thin JAR files with sbt package
or fat JAR files with sbt assembly
.
Fat JAR files include code for project dependencies. Fat JAR files are usually more useful for Spark projects. Suppose your project has the following dependencies:
- Scala
- Spark
- Scalatest
- spark-daria
You won't want to included Scala, Spark, or Scalatest in your JAR file. Scala and Spark will already be installed on your Spark runtime and you don't need Scalatest to run production code. Here's how you should add these dependencies to your build.sbt
file to only include spark-daria
and your application code in the fat JAR file.
libraryDependencies += "org.apache.spark" %% "spark-sql" % "3.1.0" % "provided"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
libraryDependencies += "com.github.mrpowers" %% "spark-daria" % "0.38.2"
spark-sql
isn't included in the sbt assembly
generated JAR cause it's a provided dependency and scalatest
won't be included because it'ss a test dependency.
Read this post for more information about building Spark JAR files. This post on shading dependencies describes a powerful JAR building technique that helps avoid dependency conflicts.
Different versions of Spark support different versions of Scala.
- Spark 2.3 only supports Scala 2.11
- Spark 2.4 supports Scala 2.11 and Scala 2.12
- Spark 3.0 only supports Scala 2.12
Spark versions that support multiple versions of Scala (e.g. Spark 2.4) can be cross compiled, meaning JAR files for both Scala 2.11 and Scala 2.12 are generated.
Cross compiling is a good idea so you get out ahead of any Scala changes that are breaking for your projects. If you built your Scala 2.4 projects with both Scala 2.11 and Scala 2.12, then you were already halfway towards upgrading to Spark 3.0. Folks that didn't cross compile had to upgrade both their Scala & Spark verions when migrating to Spark 3.
See here for a detailed description of the Spark 3 migration process that'll certainly be repeated as Spark starts supporting Scala 2.13.
You can create a build matrix and build JAR files for different Scala / Spark version combinations. This gets complicated quickly and should almost always be avoided.
Here are the four JAR files you could release for a given release if you'd like to support Spark 2.3.4, 2.4.5, and 3.1.1:
2.3.4 | 2.4.5 | 3.1.1 | |
---|---|---|---|
2.11 | X | X | |
2.12 | X | X |
You could output these JAR files for version 0.6.0 of your project:
- your-project_2.11-2.3.4_0.6.0.jar
- your-project_2.11-2.4.5_0.6.0.jar
- your-project_2.12-2.4.5_0.6.0.jar
- your-project_2.12-3.1.1_0.6.0.jar
Releasing projects in this manner gets complicated quickly. Big Spark projects like Delta don't even try to get so fancy, look at the Delta releases:
Delta told users "you need to upgrade to Spark 3 to use version 0.8.0 of Delta" rather that descending into the madness of supporting all the different Spark versions.
Maintaining Spark projects is costly and teams should proactively make decisions that minimize the future maintenance burden of the project.
JAR files built for a specific Spark version should be named like this:
spark-testing-base_2.11-2.1.0_0.6.0.jar
Generically:
spark-testing-base_scalaVersion-sparkVersion_projectVersion.jar
If you're using sbt assembly, you can use the following line of code to build a JAR file using the correct naming conventions.
assemblyJarName in assembly := s"${name.value}_${scalaBinaryVersion.value}-${sparkVersion.value}_${version.value}.jar"
If you're using sbt package
, you can add this code to your build.sbt
file to generate a JAR file that follows the naming conventions.
artifactName := { (sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
artifact.name + "_" + sv.binary + "-" + sparkVersion.value + "_" + module.revision + "." + artifact.extension
}
JAR files built for multiple Spark version should be named like this:
spark-testing-base_2.11-0.6.0.jar
Generically:
spark-testing-base_scalaVersion-projectVersion.jar
If you're using sbt assembly, you can use the following line of code to build a JAR file using the correct naming conventions.
assemblyJarName in assembly := s"${name.value}_${scalaBinaryVersion.value}-${version.value}.jar"
If you're using sbt package
, you can add this code to your build.sbt
file to generate a JAR file that follows the naming conventions.
artifactName := { (sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
artifact.name + "_" + sv.binary + "-" + module.revision + "." + artifact.extension
}
Create a table in the project README that indicates all the Spark versions supported by each project version.
The following documentation guidelines generally copy the documentation in the Spark source code. For example, here's how the rpad
method is defined in the Spark source code.
/**
* Right-pad the string column with pad to a length of len. If the string column is longer
* than len, the return value is shortened to len characters.
*
* @group string_funcs
* @since 1.5.0
*/
def rpad(str: Column, len: Int, pad: String): Column = withExpr {
StringRPad(str.expr, lit(len).expr, lit(pad).expr)
}
Here's an example of the Column#equalTo()
method that contains an example code snippet.
/**
* Equality test.
* {{{
* // Scala:
* df.filter( df("colA") === df("colB") )
*
* // Java
* import static org.apache.spark.sql.functions.*;
* df.filter( col("colA").equalTo(col("colB")) );
* }}}
*
* @group expr_ops
* @since 1.3.0
*/
def equalTo(other: Any): Column = this === other
The @since
annotation should be used to document when features are added to the API.
The @note
annotation should be used to detail important information about a function, like the following example.
/**
* Aggregate function: returns the level of grouping, equals to
*
* {{{
* (grouping(c1) <<; (n-1)) + (grouping(c2) <<; (n-2)) + ... + grouping(cn)
* }}}
*
* @note The list of columns should match with grouping columns exactly, or empty (means all the
* grouping columns).
*
* @group agg_funcs
* @since 2.0.0
*/
def grouping_id(cols: Column*): Column = Column(GroupingID(cols.map(_.expr)))
Column functions should be annotated with the following groups, consistent with the Spark functions that return Column objects.
@groupname udf_funcs UDF functions
@groupname agg_funcs Aggregate functions
@groupname datetime_funcs Date time functions
@groupname sort_funcs Sorting functions
@groupname normal_funcs Non-aggregate functions
@groupname math_funcs Math functions
@groupname misc_funcs Misc functions
@groupname window_funcs Window functions
@groupname string_funcs String functions
@groupname collection_funcs Collection functions
@groupname Ungrouped Support functions for DataFrames
Here's an example of a well-documented Column function in the spark-daria project.
/**
* Removes all whitespace in a string
*
* @group string_funcs
* @since 2.0.0
*/
def removeAllWhitespace(col: Column): Column = {
regexp_replace(col, "\\s+", "")
}
Custom transformations can add/remove rows and columns from a DataFrame. DataFrame transformation documentation should specify how the custom transformation is modifying the DataFrame and list the name of columns added to the DataFrame as appropriate.
Use the spark-fast-tests library for writing DataFrame / Dataset / RDD tests with Spark.
Read this blog post for a gentle introduction to testing Spark code, this blog post on how to design easily testable Spark code, and this blog post on how to cut the run time of a Spark test suite.
Here is an example of a test for the and
instance method defined in the functions class as follows:
class FunctionsSpec extends FunSpec with DataFrameComparer {
import spark.implicits._
describe("and") {
it ("returns true if both columns are true") {
// some code
}
}
}
You should write generic open source code whenever possible. Open source code is easily reusable (especially when it's uploaded to Maven) and forces you to design code without business logic.
The org.apache.spark.sql.functions
class provides some great examples of open source functions.
The Dataset
and Column
classes provide great examples of code that facilitates DataFrame transformations.
spark-daria is a good example of a Spark open source library that provides core extensions, like these Column extensions.
- Limit project dependencies and inspect transitive dependencies closely. Scala dependency hell is painful.
- Cross compile projects with multiple Scala versions, when appropriate, to make upgrading easier (e.g. it was good to cross compile with Scala 2.11 and Scala 2.12 for Spark 2.4 projects).
- Avoid advanced Scala features
- Write code that's easy to copy and paste in notebooks
- Organize code into column functions and custom transformations whenever possible
- Write code in version controlled projects, so you can take advantage of text editor features (and not pay for an expensive cluster when developing)
- Constantly bump SBT versions (it updates frequently)
- Carefully inspect the contents of your JAR files
- Use package privacy to limit the surface of the public interface
Read Beautiful Spark for more information about Spark project best practices.