DEV Community

Cover image for Databricks 26NG Full Interview Experience Review (Phone Screen to Onsite)
interviewshow-cs
interviewshow-cs

Posted on

Databricks 26NG Full Interview Experience Review (Phone Screen to Onsite)

Just received the final feedback from Databricks. Overall, the process was fast-paced and well organized. The interviewers were friendly, discussions went deep, and the recruiter response time was among the fastest I have experienced at large tech companies. The biggest takeaway: Databricks places significantly more emphasis on distributed systems and concurrency compared with many traditional software companies.

Interview Process Overview

The full process was:

  • Technical Phone Screen
  • HR Scheduling for Onsite
  • One-day Virtual Onsite: 2 Coding Rounds + Behavioral + System Programming

The entire timeline was around three weeks. After each round, feedback usually came the same day or the following day.

Technical Phone Screen

Weighted Graph Shortest Path (BFS / Dijkstra)

The question focused on finding the optimal path in a weighted graph. After implementing the standard priority queue-based Dijkstra solution, the interviewer followed up:

"What if there are multiple transportation methods, such as walking, buses, and driving, where each option has different cost and time?"

I explained that the edge weight could be modeled as a multi-dimensional vector instead of a single value. The problem then becomes a multi-objective optimization problem where we search for Pareto optimal solutions. The interviewer accepted the approach and the round ended successfully.

Onsite Interview Rounds

Coding Round 1: Circular House Robber

This was a classic House Robber problem with an additional circular constraint. The solution was to split it into two linear cases:

  • Do not rob the first house
  • Do not rob the last house

Then return the maximum result from both scenarios. The discussion covered edge cases and complexity analysis. The follow-up question asked how the state transition would change if houses had additional dependencies.

Coding Round 2: Interval Removal + Streaming Scenario

The first part involved removing intervals and handling different overlapping cases. Then the interviewer extended the problem into a streaming scenario where deletion intervals continuously arrive.

After clarifying the requirements, I proposed maintaining the current interval collection and discussed different implementation trade-offs:

  • Simple list-based approach for smaller datasets
  • Segment tree or advanced interval structures for better scalability

This round lasted around 35 minutes and focused heavily on engineering judgment.

Behavioral Interview

The behavioral round focused on:

  • Deep dive into resume projects
  • Handling conflicts
  • Most impactful project experience

For conflict resolution, I shared an example where we used A/B testing data to make decisions instead of relying on opinions. For the most impactful project discussion, I mentioned that if rebuilding it, I would introduce monitoring and alerting earlier.

The interviewer appreciated the focus on engineering maturity and operational awareness.

System Programming Round (Databricks-Specific)

This was the most distinctive round and closely matched Databricks' engineering culture.

The problem involved designing a CacheFile class:

  • Retrieve files remotely
  • Return data based on offset and length
  • Support multiple clients

The discussion focused on:

  • Multiple clients requesting the same file simultaneously
  • Cache eviction strategy
  • Prefetching under network latency

The solutions discussed included:

  • Per-file locking for concurrency control
  • LRU cache eviction
  • Background prefetching
  • Priority queues for scheduling

The interviewer agreed with the design direction. The round ended before completing full implementation, but the overall approach was considered solid.

Preparation Advice

  • Coding questions are mostly around Medium difficulty. Focus on writing clean code and handling follow-up questions.
  • Prepare 3-4 strong behavioral stories with measurable impact, decision-making process, and lessons learned.
  • System Programming is where candidates can differentiate themselves. Practice thread-safe data structures, caching systems, and distributed system fundamentals.
  • Reading implementations from projects like Spark and Delta Lake can help understand Databricks' engineering mindset.

Final Thoughts

Overall, Databricks has a very engineering-focused interview process. The System Programming round especially reflects their focus on distributed systems, storage, concurrency, and large-scale data infrastructure.

If your background is not heavily focused on concurrency or distributed systems, spending two extra weeks specifically preparing these areas can make a significant difference.

Good luck with your Databricks interview preparation!


If you are preparing for Databricks or other infrastructure-focused software engineering roles, you can find more interview preparation resources, system programming materials, and real interview experiences at:

InterviewShow

Top comments (0)