mridulm commented on code in PR #40286: URL: https://github.com/apache/spark/pull/40286#discussion_r1125790750
########## core/src/main/scala/org/apache/spark/scheduler/DAGScheduler.scala: ########## @@ -232,6 +232,13 @@ private[spark] class DAGScheduler( sc.getConf.getInt("spark.stage.maxConsecutiveAttempts", DAGScheduler.DEFAULT_MAX_CONSECUTIVE_STAGE_ATTEMPTS) + /** + * Max stage attempts allowed before a stage is aborted. + */ + private[scheduler] val maxStageAttempts: Int = { + Math.max(maxConsecutiveStageAttempts, sc.getConf.get(config.STAGE_MAX_ATTEMPTS)) Review Comment: Modify this suitably to return an `Option` if using optin -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org