November 4, 2024 6:15 PM PST


This document outlines the system design for GoPuff, focusing on the functional requirements, operational flow, and various components involved in the local delivery system. The design aims to support a high volume of daily active users and fulfill orders efficiently from nearby fulfillment centers.

Functional Requirements
Operational Flow
  1. Order Fulfillment Process:

    • Identify which warehouse can fulfill the order.
    • If the warehouse lacks inventory, find availability within a specified range.
    • Maintain inventory data including SKU, warehouse ID, total quantity, and reserved quantity.
  2. Inventory Availability:

    • Use a recommendation system to precompute preferences.
    • Filter available items based on inventory data.
Ordering System
Inventory Management
Warehouse Service
Order Processing Steps
  1. User adds items to the cart.
  2. Checkout process initiated:
    • Add payment instrument.
    • Process payment:
      • Place payment in a queue.
      • Update inventory to make the reservation permanent upon successful payment.
      • If payment fails, remove the reservation.
  3. Inventory status transitions:
    • Available -> Temp hold -> Ready to ship -> Shipped -> Received.
Order Table Structure
Payment Processing
Additional Considerations