Is it possible to log on a specific path β which will be provided as an input argument β in Apache Spark when working in local mode?
val conf = new SparkConf(). setAppName("SparkProgrammingGuide"). setMaster(master). set("spark.eventLog.enabled", "true"). set("spark.eventLog.dir", "file:///home/USER") val sc = new SparkContext(conf)
source share