Swiggy Interview Questions 2026
Published July 22, 2026 · Updated July 22, 2026
10 real interview questions asked at Swiggy. Covers System Design, DSA / Arrays, Domain, Behavioral, Java / Collections. Reported by engineers who went through the Swiggy process.
10 questions
327 engineers asked
499 upvotes
System Design (4)
Swiggy
Hard
System Design round
KafkaRedisAWS
Design Swiggy's real-time order tracking system. A customer should see their delivery agent's location update every 5 seconds on a map.
Cover: location ingestion from agents, WebSocket vs SSE for pushing updates to clients, data store choices, and how you scale to 100k concurrent orders during peak hours.
↑ 63 upvotes · 62 engineers asked this · SDE2
Swiggy
Hard
System Design round
ElasticsearchRedisDistributed Systems
Design Swiggy's restaurant search and ranking system.
How do you index 200k restaurants? Discuss full-text search (Elasticsearch), geospatial filtering, personalised ranking signals (past orders, ratings, delivery time), and how to refresh the index when a restaurant updates its menu.
↑ 51 upvotes · 48 engineers asked this · SDE2
Swiggy
Hard
System Design round
RedisKafkaDistributed Systems
Design Swiggy's delivery partner assignment algorithm. When an order is placed, how do you assign the optimal nearby delivery partner within 2 minutes considering distance, current load, and restaurant prep time?
↑ 61 upvotes · 40 engineers asked this · SDE2
Swiggy
Hard
System Design round
KafkaRedisAWS
Design Swiggy's notification system. When an order status changes (Confirmed, Picked Up, Arriving), send push notification, SMS, and in-app notification reliably with at-least-once delivery. Cover fan-out and handling inactive devices.
↑ 53 upvotes · 33 engineers asked this · SDE2
DSA / Arrays (2)
Swiggy
Medium
Technical round
JavaPython
Given a list of delivery time windows for N restaurants, find the maximum number of restaurants whose windows overlap at any point in time.
Explain the sweep-line approach, time complexity, and how this maps to capacity planning for Swiggy's logistics team.
↑ 78 upvotes · 29 engineers asked this · SDE1
Swiggy
Medium
Technical round
JavaPython
Given delivery time estimates for N restaurants, find the restaurant with the minimum average delivery time across all its orders. Handle ties and explain your data structure choices.
↑ 41 upvotes · 24 engineers asked this · SDE1
Domain (2)
Swiggy
Medium
Technical round
RedisJavaPython
Implement a rate limiter for Swiggy's API gateway using the token bucket algorithm. Handle 1000 requests/second per user. Code the solution and explain how you'd deploy it across multiple API servers with Redis.
↑ 49 upvotes · 30 engineers asked this · SDE1
Swiggy
Medium
Technical round
PostgreSQLRedisJava
Design the data model for Swiggy's menu system. A restaurant has categories, items, add-ons, variants, and availability windows (breakfast/lunch/dinner). How do you model this in PostgreSQL and handle real-time menu updates?
↑ 48 upvotes · 28 engineers asked this · SDE2
Behavioral (1)
Swiggy
Medium
HR round
Tell me about a time you had to make a quick technical decision with limited information. How did you validate the decision afterwards? What would you do differently?
↑ 35 upvotes · 20 engineers asked this · SDE2
Java / Collections (1)
Swiggy
Medium
Technical round
2-5 yearsJava
You need a collection that maintains insertion order AND gives O(1) lookup by key. Which Java collection would you use, and why not a plain HashMap?
↑ 20 upvotes · 13 engineers asked this · SDE2
Practice these questions with AI feedback
Get instant grading on your answers, identify your weak areas, and generate a personalised 14-day study plan — all free.
Build my study plan →
Swiggy interview guides by role
Swiggy questions by technology
More companies
Frequently asked questions
Design Swiggy's real-time order tracking system. A customer should see their delivery agent's location update every 5 seconds on a map.
Design Swiggy's real-time order tracking system. A customer should see their delivery agent's location update every 5 seconds on a map.
Cover: location ingestion from agents, WebSocket vs SSE for pushing updates to clients, data store choices, and how you scale to 100k concurrent orders during peak hours.
Design Swiggy's restaurant search and ranking system.
Design Swiggy's restaurant search and ranking system.
How do you index 200k restaurants? Discuss full-text search (Elasticsearch), geospatial filtering, personalised ranking signals (past orders, ratings, delivery time), and how to refresh the index when a restaurant updates its menu.
Given a list of delivery time windows for N restaurants, find the maximum number of restaurants whose windows overlap at any point in time.
Given a list of delivery time windows for N restaurants, find the maximum number of restaurants whose windows overlap at any point in time.
Explain the sweep-line approach, time complexity, and how this maps to capacity planning for Swiggy's logistics team.
Design Swiggy's delivery partner assignment algorithm. When an order is placed, how do you assign the optimal nearby delivery partner within 2 minutes considering distance, current load, and restaurant prep time?
Design Swiggy's delivery partner assignment algorithm. When an order is placed, how do you assign the optimal nearby delivery partner within 2 minutes considering distance, current load, and restaurant prep time?
Implement a rate limiter for Swiggy's API gateway using the token bucket algorithm. Handle 1000 requests/second per user. Code the solution and explain how you'd deploy it across multiple API servers with Redis.
Implement a rate limiter for Swiggy's API gateway using the token bucket algorithm. Handle 1000 requests/second per user. Code the solution and explain how you'd deploy it across multiple API servers with Redis.