Package org.apache.spark
Interface SparkExecutorInfo
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- SparkExecutorInfoImpl
Exposes information about Spark Executors.
 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- 
hostString host()
- 
portint port()
- 
cacheSizelong cacheSize()
- 
numRunningTasksint numRunningTasks()
- 
usedOnHeapStorageMemorylong usedOnHeapStorageMemory()
- 
usedOffHeapStorageMemorylong usedOffHeapStorageMemory()
- 
totalOnHeapStorageMemorylong totalOnHeapStorageMemory()
- 
totalOffHeapStorageMemorylong totalOffHeapStorageMemory()
 
-