Package org.apache.spark.status
Interface AppHistoryServerPlugin
public interface AppHistoryServerPlugin
An interface for creating history listeners(to replay event logs) defined in other modules like
 SQL, and setup the UI of the plugin to rebuild the history UI.
- 
Method SummaryModifier and TypeMethodDescriptionscala.collection.immutable.Seq<SparkListener>createListeners(SparkConf conf, org.apache.spark.status.ElementTrackingStore store) Creates listeners to replay the event logs.intThe position of a plugin tab relative to the other plugin tabs in the history UI.voidsetupUI(org.apache.spark.ui.SparkUI ui) Sets up UI of this plugin to rebuild the history UI.
- 
Method Details- 
createListenersscala.collection.immutable.Seq<SparkListener> createListeners(SparkConf conf, org.apache.spark.status.ElementTrackingStore store) Creates listeners to replay the event logs.- Parameters:
- conf- (undocumented)
- store- (undocumented)
- Returns:
- (undocumented)
 
- 
displayOrderint displayOrder()The position of a plugin tab relative to the other plugin tabs in the history UI.- Returns:
- (undocumented)
 
- 
setupUIvoid setupUI(org.apache.spark.ui.SparkUI ui) Sets up UI of this plugin to rebuild the history UI.- Parameters:
- ui- (undocumented)
 
 
-