Interface SparkExecutorInfo

All Superinterfaces:
Serializable
All Known Implementing Classes:
SparkExecutorInfoImpl

public interface SparkExecutorInfo extends Serializable
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

    • host

      String host()
    • port

      int port()
    • cacheSize

      long cacheSize()
    • numRunningTasks

      int numRunningTasks()
    • usedOnHeapStorageMemory

      long usedOnHeapStorageMemory()
    • usedOffHeapStorageMemory

      long usedOffHeapStorageMemory()
    • totalOnHeapStorageMemory

      long totalOnHeapStorageMemory()
    • totalOffHeapStorageMemory

      long totalOffHeapStorageMemory()