January 2018
Intermediate to advanced
470 pages
11h 9m
English
Let's create a Spark session by defining the number of computing cores, the SQL warehouse, and the application name as follows:
val spark = SparkSession .builder .master("local[*]") .config("spark.sql.warehouse.dir", "C:/data/") .appName(s"LDA") .getOrCreate()
Read now
Unlock full access