Hi @Meet Vanani ,
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this!
Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to "Accept " the answer.
Issue:
Databricks Cluster Error: - Run failed with error message Could not reach driver of cluster
Solution:
After ruling out quotas, network, and VM availability, we discovered the driver was crashing on startup due to a binary mismatch between cluster-installed NumPy/Pandas wheels and the Databricks runtime’s built-in C extensions. The quick fix was to uninstall any custom numpy/pandas at the cluster level and then reinstall the exact versions that ship with our runtime (e.g. numpy==1.23.5
and pandas==2.0.3
) via an init script. Once the mismatched wheels were removed, the driver spun up normally, the REPL attached successfully, and our notebooks ran without the “Could not reach driver” error.
Please click Accept Answer and kindly upvote it so that other people who faces similar issue may get benefitted from it.