Member since
11-22-2017
2
Posts
0
Kudos Received
0
Solutions
05-06-2019
08:57 AM
Hi, The following code change will work SparkConf configuration = new SparkConf() .setAppName("Your Application Name").setMaster("local"); val sc = new SparkContext(conf); Instead of "local" you can use it as "yarn" Thanks Arun
... View more