October 17, 2021 7:00 PM PDT


This document summarizes the mock system design interview focused on building a job scheduler system capable of executing millions of machine learning jobs per day. The interview covered functional and non-functional requirements, system design, and discussions on scalability and architecture.

Requirements
Functional Requirements
Non-Functional Requirements
Requirement Clarification
System Design
System Design Diagram
Components
  1. Job Planner

    • Accepts new job definitions from clients.
    • Distributes jobs into tasks and writes records for jobs and tasks.
    • Example:
      • scheduleStartTime = 9 AM (epoch time)
      • jobInterval = 1 week
      • jobRecurringTime = 6 times (creates 6 records in the task table)
  2. Job Scanner

    • Periodically picks up tasks to run.
    • API:
      • Initial design: schedule(taskDescription, scheduledStartTime)
      • Revised design: schedule(taskDescription, scheduledStartTime, jobIntervals, jobRecurringTime)
Database Schema
Discussions During the Interview
Conclusion

The design of the job scheduler system demonstrates a clear understanding of the requirements and scalability challenges. All components should support multiple instances to ensure robustness and efficiency in handling a high volume of jobs.