This application was forked from microservices-demo, used to demonstrate how to build micro servics with go-micro.
Online Boutique is a cloud-native microservices demo application. Online Boutique consists of a 11-tier microservices application. The application is a web-based e-commerce app where users can browse items, add them to the cart, and purchase them.
Home Page | Checkout Screen |
---|---|
Online Boutique is composed of 11 microservices written in different languages that talk to each other over gRPC. See the Development Principles doc for more information.
Service | Language | Description |
---|---|---|
frontend | Go | Exposes an HTTP server to serve the website. Does not require signup/login and generates session IDs for all users automatically. |
cart | Go | Stores the items in the user's shopping cart in Redis and retrieves it. |
productcatalog | Go | Provides the list of products from a JSON file and ability to search products and get individual products. |
currency | Go | Converts one money amount to another currency. Uses real values fetched from European Central Bank. It's the highest QPS service. |
payment | Go | Charges the given credit card info (mock) with the given amount and returns a transaction ID. |
shipping | Go | Gives shipping cost estimates based on the shopping cart. Ships items to the given address (mock) |
Go | Sends users an order confirmation email (mock). | |
checkout | Go | Retrieves user cart, prepares order and orchestrates the payment, shipping and the email notification. |
recommendation | Go | Recommends other products based on what's given in the cart. |
ad | Go | Provides text ads based on given context words. |
loadgenerator | Python+Locust | Continuously sends requests imitating realistic user shopping flows to the frontend. |
- Kubernetes/GKE: The app is designed to run on Kubernetes (both locally on "Docker for Desktop", as well as on the cloud with GKE).
- gRPC: Microservices use a high volume of gRPC calls to communicate to each other.
- Istio: Application works on Istio service mesh.
- OpenTelemetry Tracing: Most services are instrumented using OpenTelemetry trace interceptors for gRPC/HTTP.
- Skaffold: Application is deployed to Kubernetes with a single command using Skaffold.
- Synthetic Load Generation: The application demo comes with a background job that creates realistic usage patterns on the website using Locust load generator.
If you would like to contribute features or fixes to this app, see the Development Guide on how to build this demo locally.