UIRoot is the contract of the root containers for application UI information.
package org.apache.spark.status.api.v1
trait UIRoot {
// only required methods that have no implementation
// the others follow
def withSparkUI[T](appId: String, attemptId: Option[String])(fn: SparkUI => T): T
def getApplicationInfoList: Iterator[ApplicationInfo]
def getApplicationInfo(appId: String): Option[ApplicationInfo]
def securityManager: SecurityManager
}|
Note
|
UIRoot is a private[spark] contract.
|
| Method | Description |
|---|---|
|
|
|
|
|
|
|
Used exclusively when |