Details
-
Documentation
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
-
None
Description
At SparkSession builder example,
SparkSession.builder() .master("local") .appName("Word Count") .config("spark.some.config.option", "some-value"). .getOrCreate()
should be
SparkSession.builder() .master("local") .appName("Word Count") .config("spark.some.config.option", "some-value") .getOrCreate()
There was one dot at the end of the third line
.config("spark.some.config.option", "some-value").