79666127

Date: 2025-06-14 20:14:51
Score: 0.5
Natty:
Report link

The error message is telling you what's wrong:

"failed to create containerd task: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "driver": executable file not found in $PATH: unknown"

The message is telling you that the driver pod's container is trying to run the command "driver" but it can't find the exec file in the container's path.

You mentioned that --deploy-mode cluster is being used. Spark is trying to launch the driver inside a K8s pod using the Docker image.

This error usually happens when the following occurs:

Double check the configuration files (i.e YAML files), the entrypoint is correctly set and the Dockerfile is correct with the CMD.

I have found another StackOverflow that looks similar to help resolve the issue, if not, I'd recommend:

Also giving us more information helps us help you, providing any logs from Docker or kubectl will give us more context/root cause of the issue.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John Crawley