October 24, 2021 7:00 PM PDT


This document summarizes the design interview focused on the InstaCart Payment System. The interview assessed the candidate's ability to design a payment processing system, covering both functional and non-functional requirements, as well as discussions surrounding technical choices and system architecture.

Avoiding double payments

Interview Details
Requirements
Functional Requirements
Non-Functional Requirements
System Design
System Design Diagram
API Design
Steps for System Module Calls
  1. Customer places an order through the web application.
  2. Web application calls the payment service to withhold funds.
  3. Payment service stores credit information in the payment profile database.
  4. Payment service saves transaction details in the payment database.
  5. Web application calls the order service to place the order.
  6. Order processor scans completed orders and sends payment requests to the payment service.
Database Schema
Additional Design Considerations
Discussions During the Interview
Functional Requirement Discussion
SQL vs NoSQL
Fault Tolerance and Scaling
Audience Feedback
Conclusion

The interview highlighted the candidate's understanding of payment system design, including functional and non-functional requirements, database choices, and scaling considerations. The discussions provided insights into the complexities of building a robust payment processing system.