Skip to content

KubernetesDriverEndpoint

KubernetesDriverEndpoint is a DriverEndpoint (Apache Spark).

Intercepting Executor Lost Event

onDisconnected(
  rpcAddress: RpcAddress): Unit

onDisconnected is part of the RpcEndpoint (Apache Spark) abstraction.

onDisconnected disables the executor known by the RpcAddress (found in the Executors by RpcAddress Registry registry).

Back to top