To recover executor pods

Executor pods

The following applications use executor and driver pods:

An executor pod name has the following format:

app_name-instance-exec-executor_ID

where

app_name is the application name

instance is the pod instance ID

executor_ID is a number that identifies the executor instance

Steps
 

Enter the following to recover an executor pod, where pod_namespace is the name of the pod’s namespace and app_name is the application name:

kubectl delete pod --namespace pod_namespace app-name-driver ↵


The driver pod is automatically redeployed, thereby recovering any associated errored executor pods.

End of steps