Reputation: 159
I was going through the metric/monitoring page for spark.
What I understand
Spark writes events to event logs to as configured in spark.eventLog.enabled true
and spark.eventLog.dir hdfs://path
.
These are accessible in 3 ways
What I dont understand
spark.eventLog.dir
in SparkListener?Upvotes: 0
Views: 241
Reputation: 18013
Base- and derived metrics exist 1) during a Job and 2) may be persisted to HDFS for subsequent consumption, use by e.g. History Server.
DAGScheduler
– the main part of the execution engine in Spark. It does not consume from the spark.eventLog.dir; this may have not even been set by the spark-submit
, etc.Upvotes: 1