Interface SparkStageInfo

All Superinterfaces:
Serializable
All Known Implementing Classes:
SparkStageInfoImpl

public interface SparkStageInfo extends Serializable
Exposes information about Spark Stages. This interface is not designed to be implemented outside of Spark. We may add additional methods which may break binary compatibility with outside implementations.
  • Method Details

    • stageId

      int stageId()
    • currentAttemptId

      int currentAttemptId()
    • submissionTime

      long submissionTime()
    • name

      String name()
    • numTasks

      int numTasks()
    • numActiveTasks

      int numActiveTasks()
    • numCompletedTasks

      int numCompletedTasks()
    • numFailedTasks

      int numFailedTasks()