ApplicationCacheOperations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
package org.apache.spark.deploy.history trait ApplicationCacheOperations { // only required methods that have no implementation // the others follow def getAppUI(appId: String, attemptId: Option[String]): Option[LoadedAppUI] def attachSparkUI( appId: String, attemptId: Option[String], ui: SparkUI, completed: Boolean): Unit def detachSparkUI(appId: String, attemptId: Option[String], ui: SparkUI): Unit } |
Note
|
ApplicationCacheOperations is a private[history] contract.
|
Method | Description |
---|---|
|
SparkUI (the UI of a Spark application) Used exclusively when |
|
|
|
Note
|
HistoryServer is the one and only known implementation of ApplicationCacheOperations contract in Apache Spark. |