DevOps Engineer Interview Experience at Zomato – 2026
Zomato
AI-Reconstructed Composite
Reconstructed from candidate-reported Zomato interview structure (fast, often single-day-scheduled loop; technical round often blending project discussion, DSA, and API/rate-limiter design; system-design-heavy second round; culture-fit round with engineering manager) sourced from public candidate reports, which skew toward SDE roles. DevOps-specific round content is a plausible composite grounded in Zomato's known process pace and marketplace/quick-commerce domain rather than a single verified transcript.
Application Story
Applications for DevOps roles supporting Zomato's food delivery and Blinkit-adjacent quick-commerce infrastructure are typically submitted online. The process tends to move fast, matching what several candidates describe as Zomato's typical one-day-turnaround style — a recruiter screen, a technical round, and a system-design-heavy round often complete within the same week, with a final culture-fit round with the engineering manager closing out the loop.
Preparation Journey
Preparation should focus on infrastructure for two-sided marketplace platforms with sharp, predictable demand windows (lunch and dinner rush, and quick-commerce's even tighter delivery-time expectations), alongside standard Kubernetes, Terraform, and CI/CD fundamentals. Reviewing rate limiting and caching patterns specifically is also worthwhile, since the first technical round for SDE roles at Zomato reportedly touches API gateway design even for infrastructure-adjacent positions.
Resume Tips
Zomato's technical rounds move fast and can blend infrastructure questions with API-layer design (rate limiting, caching) even for DevOps-titled roles — don't over-narrow preparation to pure infrastructure topics and skip the request-path layer entirely.
Telephonic
This brief recruiter screen is notably faster-paced than most other companies' opening rounds, matching what several candidates describe as Zomato's rapid scheduling style. The recruiter asks about current infrastructure responsibilities, specifically whether the candidate has direct experience with high-throughput, low-latency systems given the quick-commerce vertical's tight delivery-time SLAs, and confirms availability to interview later that same week rather than scheduling weeks out.
Technical
This round opens with a project-based discussion, going through what infrastructure was personally owned versus supported, then moves into designing a rate limiter for an API gateway backed by Redis — a sliding-window counter using a Redis sorted set keyed by client ID, with old entries evicted lazily on each check rather than via a separate cleanup job, is the expected direction. Two DSA-style questions grounded in the same domain typically follow: one array problem on finding the maximum number of non-overlapping delivery time windows a single rider could fulfill (solved with a greedy approach sorting by end time), and a string problem involving grouping restaurant names by a normalized key (solved using a hash map keyed by sorted character counts). The round closes with basic SQL and NoSQL discussion and a short segment on network throttling.
System Design
Candidates are asked to design the infrastructure supporting order-to-delivery latency tracking for a quick-commerce vertical where delivery-time SLAs are much tighter than traditional food delivery. Instrumenting each stage of the order lifecycle (placed, accepted, picked up, delivered) with timestamped events flowing into a stream processor, computing rolling p95 latency per dark-store location rather than a single citywide average, is the strong approach — since a citywide average would hide a specific store or zone falling behind its SLA. A common follow-up probes how to alert on this without generating excessive noise during genuinely high-demand periods where some latency increase is expected and not itself a problem — a dynamic threshold based on the store's own recent rolling baseline rather than a single static SLA number applied uniformly regardless of current load addresses this well.
Questions Asked at Zomato in the DevOps Engineer Interview
Telephonic Round
This brief recruiter screen is notably faster-paced than most other companies' opening rounds, matching what several candidates describe as Zomato's rapid scheduling style. The recruiter asks about current infrastructure responsibilities, specifically whether the candidate has di …
Technical Round
This round opens with a project-based discussion, going through what infrastructure was personally owned versus supported, then moves into designing a rate limiter for an API gateway backed by Redis — a sliding-window counter using a Redis sorted set keyed by client ID, with old …
System Design Round
Candidates are asked to design the infrastructure supporting order-to-delivery latency tracking for a quick-commerce vertical where delivery-time SLAs are much tighter than traditional food delivery. Instrumenting each stage of the order lifecycle (placed, accepted, picked up, de …
Prepare for this Role
At a Glance
Concepts To Revise
Pipe
A pipe (|) connects the standard output of one command to the standard input of the next, creating a data processing chain. Pipes let you compose simple commands into powerful one-liners without temporary files. The kernel implements pipes as in-memory buffers between processes.
Pipeline
A CI/CD pipeline is an automated sequence of stages that takes source code from a Git commit through building, testing, scanning, and deploying to production — eliminating manual steps and ensuring every change follows the same verified path to release.
DevOps Engineer at Other Companies
Have your own story?
Share it and help the next candidate prepare.
Comments
Loading comments...