May 29, 2022 7:00 PM PDT


This document summarizes a design interview focused on creating an escalation and notification system. The interview covered functional and non-functional requirements, system design, and various technical discussions regarding the architecture and workflow of the proposed system.

Requirements
Functional Requirements
Non-Functional Requirements
System Design
External APIs
Design Considerations
Workflow
  1. Create a ticket and fetch metadata service.
  2. Assign tasks and resolve to the next escalation point.
  3. Use a queue to manage tasks, with workers reading from the queue and verifying against the metadata service.
  4. If a worker receives a task it does not own, it can return the task to the queue or push it to the appropriate worker.
  5. Zookeeper can be utilized for sharding.
  6. Implement disaster recovery services to manage unprocessed tasks if a worker goes down.
Message Handling
Feedback Summary
Interviewer Feedback
Audience Feedback
Key Questions Raised
Conclusion

The interview highlighted various aspects of designing an escalation and notification system, including functional and non-functional requirements, system architecture, and the importance of robust error handling and scalability. The feedback provided insights into areas for improvement in both design clarity and technical implementation.