Reputation: 183
I want to do some clean-ups after a Spark job is finished, and the action I would do depends on whether the job is successful or not.
So how where can I get the result for the job?
I already tried the SparkListener
, it worked fine when the job is successful, but if the job fails, the listener seems not called.
Upvotes: 1
Views: 1301
Reputation: 877
You can use REST API of the Spark HistoryServer to check the state of the job.
Here you can find all information that you need:
https://spark.apache.org/docs/latest/monitoring.html
Upvotes: 1