Inventory Service
The system of record for stock. Reserves and releases inventory, serves stock-level queries, and publishes events when stock is reserved or unavailable.
Overview
The Inventory Service is the heart of the Inventory System. It receives Reserve InventoryReserve InventoryCommandv1.0.0Command to reserve stock for the items in a checked-out cart.
Ownerordering-platformSchemaMapView docs during checkout and replies with Inventory ReservedInventory ReservedEventv1.0.0Published when stock has been successfully reserved for an order.
Ownerfulfilment-platformSchemaMapView docs or Inventory UnavailableInventory UnavailableEventv1.0.0Published when stock could not be reserved for an order.
Ownerfulfilment-platformSchemaMapView docs. It also handles Release InventoryRelease InventoryCommandv1.0.0Command to release a previously held inventory reservation.
Ownerfulfilment-platformSchemaMapView docs and serves Get Stock LevelGet Stock LevelQueryv1.0.0Query to fetch the current available stock level for a product.
Ownerfulfilment-platformSchemaMapView docs reads, all backed by the Inventory DatabaseInventory DatabaseContainerv1.0.0PostgreSQL database that is the system of record for stock levels and reservations.MapView docs.
Responsibilities
| Area | Description |
|---|---|
| Reservations | Handles Reserve InventoryReserve InventoryCommandv1.0.0Command to reserve stock for the items in a checked-out cart. Ownerordering-platformSchemaMapView docs and Release InventoryRelease InventoryCommandv1.0.0Command to release a previously held inventory reservation. Ownerfulfilment-platformSchemaMapView docs. |
| Lookups | Serves Get Stock LevelGet Stock LevelQueryv1.0.0Query to fetch the current available stock level for a product.
Ownerfulfilment-platformSchemaMapView docs from the Inventory DatabaseInventory DatabaseContainerv1.0.0 |
| Event publishing | Emits Inventory ReservedInventory ReservedEventv1.0.0Published when stock has been successfully reserved for an order. Ownerfulfilment-platformSchemaMapView docs and Inventory UnavailableInventory UnavailableEventv1.0.0Published when stock could not be reserved for an order. Ownerfulfilment-platformSchemaMapView docs. |