Skip to content

mumar0223/microservices-demo

 
 

Important Notice:
This repository is the original work created by Mohd Umar.
All code, documentation, and media are protected under copyright law.
Copying, redistributing, or using this project without permission may result in legal action.
Using or cloning this repository for GKE, hackathons, competitions, or any other public submissions without authorization may lead to copyright violations and strict legal consequences.

🧠 AI Shopping Agent (Extension)

This project extends the Online Boutique demo with a new AI Shopping Agent microservice that enables natural language interactions for shopping.
Users can simply chat with the AI to manage their shopping experience end-to-end.

Features

  • 🛒 Cart Management – Add products, empty the cart, and view cart items through prompts.
  • 🔍 Smart Search – Search for products using natural language queries.
  • ⚖️ Product Comparison – Compare multiple items side by side.
  • 🎁 Gift Recommendations – Get product suggestions based on user-provided details (age, gender, interests).
  • 🤖 Automated Checkout – AI can complete checkout after user confirmation.
  • 🧠 Personalized Suggestions – Tailored recommendations during the shopping journey.

What's Different in Idea and Approach

Unlike typical shopping assistants that rely on simple keyword matching, this project introduces an original gift recommendation flow.
The AI first analyzes the entire user conversation to understand intent, then extracts details like age, gender, and interests of the person user like to buy gift for. Using this context, it recommends the most relevant and personalized gifts, making the experience smarter and more human-like.

Technologies

  • Google Kubernetes Engine (GKE Autopilot) – scalable microservice deployment.
  • Google Generative AI APIs – natural language understanding and recommendations.
  • Online Boutique Microservices – integrates with Cart, Catalog, and Checkout.
  • AlloyDB – stores and serves product catalog data.
  • MCP (Multi-Cluster Pods) – scales services across multiple clusters.
  • A2A (App-to-App Communication) – secure internal service connectivity.
  • CI/CD – Cloud Build and GitHub Actions for deployments.

Architecture

  1. User sends a prompt (e.g., “Add red shoes to my cart”).
  2. AI Shopping Agent interprets the request and converts it into service calls.
  3. The agent communicates with Cart, Catalog, and Checkout services inside GKE.
  4. AlloyDB provides product catalog data for search, compare, and recommendations.
  5. GKE Autopilot ensures scalability, with MCP and A2A supporting multi-cluster and secure communication.
  6. Response is returned to the User through the AI agent.

Project Structure & Custom Components

This section explains the custom components and structure added to extend the Online Boutique demo with the AI Shopping Assistant.

1. src/frontend/templates/shoppingmate.html

  • Contains the HTML, CSS, and JavaScript code for the core of the new microservice.
  • Handles interaction with Gemini, either through API calls via the Python backend or via a demo mode with a mock database and direct Gemini calls (depending on the version).
  • Includes functions to process user queries: prompts sent to Gemini are handled to return the required actions for execution.
  • The mock database is recommended only for rapid testing. For complete, production-like behavior, use the Python backend integrated with AlloyDB.

2. src/shoppingmate

  • Contains the Dockerfile and Python backend code for the AI-powered shopping assistant.
  • Implements core functionalities such as natural language processing, cart management, product search, recommendations, and auto-checkout.

3. handler.go

  • Custom handlers that enable the AI bot to interact with Online Boutique microservices.
  • Processes user prompts and converts them into the appropriate service API calls.

4. main.go

  • Adds routes to connect the custom handlers.
  • Allows the AI agent to fetch responses from the backend and interact with the microservices.

5. kustomize folder

  • Adds the shoppingmate component to the Kustomize configuration.
  • Integrates the AI microservice into the deployment manifests for GKE.

Notes

  • The frontend is made to work independently for testing purposes. This allows you to test and interact with the UI without needing the backend running.
  • The Python backend can also run alongside the frontend in the same deployment if needed, providing a more integrated experience for full functionality.

1. Page Reload on Operations

Please note that for certain actions like Add to Cart, Empty Cart, Checkout, and similar operations, the page will reload upon success. This behavior is necessary for the following reasons:

  • The pre-built demo does not automatically update values without a page reload.
  • These operations will not visually update in the demo without a reload, as it's designed for a more static view.

In a full implementation, you would typically use dynamic updates (like AJAX or state management) to reflect these changes without a full reload.

2. Session Usage

I have used session storage to keep track of:

  • Cart details (such as added products).
  • Messages from the Shopping Mate AI bot.

This allows data to persist across page refreshes or when navigating to new pages, preventing any loss of user information. The session storage ensures that the cart and bot messages remain intact, providing a smoother and more persistent user experience.

Demo Video

Video Title

Architecture of shopping mate frontend-only

Architecture of shopping mate frontend-only

Architecture of shopping mate frontend-and-backend

Architecture of shopping mate frontend-and-backend

Architecture of microservices with shopping mate added

Architecture of microservices with shopping mate added


Original Readme

Continuous Integration

Online Boutique is a cloud-first microservices demo application. The application is a web-based e-commerce app where users can browse items, add them to the cart, and purchase them.

Google uses this application to demonstrate how developers can modernize enterprise applications using Google Cloud products, including: Google Kubernetes Engine (GKE), Cloud Service Mesh (CSM), gRPC, Cloud Operations, Spanner, Memorystore, AlloyDB, and Gemini. This application works on any Kubernetes cluster.

If you’re using this demo, please ★Star this repository to show your interest!

Note to Googlers: Please fill out the form at go/microservices-demo.

Architecture

Online Boutique is composed of 11 microservices written in different languages that talk to each other over gRPC.

Architecture of microservices

Find Protocol Buffers Descriptions at the ./protos directory.

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.
cartservice C# Stores the items in the user's shopping cart in Redis and retrieves it.
productcatalogservice Go Provides the list of products from a JSON file and ability to search products and get individual products.
currencyservice Node.js Converts one money amount to another currency. Uses real values fetched from European Central Bank. It's the highest QPS service.
paymentservice Node.js Charges the given credit card info (mock) with the given amount and returns a transaction ID.
shippingservice Go Gives shipping cost estimates based on the shopping cart. Ships items to the given address (mock)
emailservice Python Sends users an order confirmation email (mock).
checkoutservice Go Retrieves user cart, prepares order and orchestrates the payment, shipping and the email notification.
recommendationservice Python Recommends other products based on what's given in the cart.
adservice Java Provides text ads based on given context words.
loadgenerator Python/Locust Continuously sends requests imitating realistic user shopping flows to the frontend.

Screenshots

Home Page Checkout Screen
Screenshot of store homepage Screenshot of checkout screen

Quickstart (GKE)

  1. Ensure you have the following requirements:

  2. Clone the latest major version.

    git clone --depth 1 --branch v0 https://github.com/GoogleCloudPlatform/microservices-demo.git
    cd microservices-demo/

    The --depth 1 argument skips downloading git history.

  3. Set the Google Cloud project and region and ensure the Google Kubernetes Engine API is enabled.

    export PROJECT_ID=<PROJECT_ID>
    export REGION=us-central1
    gcloud services enable container.googleapis.com \
      --project=${PROJECT_ID}

    Substitute <PROJECT_ID> with the ID of your Google Cloud project.

  4. Create a GKE cluster and get the credentials for it.

    gcloud container clusters create-auto online-boutique \
      --project=${PROJECT_ID} --region=${REGION}

    Creating the cluster may take a few minutes.

  5. Deploy Online Boutique to the cluster.

    kubectl apply -f ./release/kubernetes-manifests.yaml
  6. Wait for the pods to be ready.

    kubectl get pods

    After a few minutes, you should see the Pods in a Running state:

    NAME                                     READY   STATUS    RESTARTS   AGE
    adservice-76bdd69666-ckc5j               1/1     Running   0          2m58s
    cartservice-66d497c6b7-dp5jr             1/1     Running   0          2m59s
    checkoutservice-666c784bd6-4jd22         1/1     Running   0          3m1s
    currencyservice-5d5d496984-4jmd7         1/1     Running   0          2m59s
    emailservice-667457d9d6-75jcq            1/1     Running   0          3m2s
    frontend-6b8d69b9fb-wjqdg                1/1     Running   0          3m1s
    loadgenerator-665b5cd444-gwqdq           1/1     Running   0          3m
    paymentservice-68596d6dd6-bf6bv          1/1     Running   0          3m
    productcatalogservice-557d474574-888kr   1/1     Running   0          3m
    recommendationservice-69c56b74d4-7z8r5   1/1     Running   0          3m1s
    redis-cart-5f59546cdd-5jnqf              1/1     Running   0          2m58s
    shippingservice-6ccc89f8fd-v686r         1/1     Running   0          2m58s
    
  7. Access the web frontend in a browser using the frontend's external IP.

    kubectl get service frontend-external | awk '{print $4}'

    Visit http://EXTERNAL_IP in a web browser to access your instance of Online Boutique.

  8. Congrats! You've deployed the default Online Boutique. To deploy a different variation of Online Boutique (e.g., with Google Cloud Operations tracing, Istio, etc.), see Deploy Online Boutique variations with Kustomize.

  9. Once you are done with it, delete the GKE cluster.

    gcloud container clusters delete online-boutique \
      --project=${PROJECT_ID} --region=${REGION}

    Deleting the cluster may take a few minutes.

Additional deployment options

  • Terraform: See these instructions to learn how to deploy Online Boutique using Terraform.
  • Istio / Cloud Service Mesh: See these instructions to deploy Online Boutique alongside an Istio-backed service mesh.
  • Non-GKE clusters (Minikube, Kind, etc): See the Development guide to learn how you can deploy Online Boutique on non-GKE clusters.
  • AI assistant using Gemini: See these instructions to deploy a Gemini-powered AI assistant that suggests products to purchase based on an image.
  • And more: The /kustomize directory contains instructions for customizing the deployment of Online Boutique with other variations.

Documentation

  • Development to learn how to run and develop this app locally.

Demos featuring Online Boutique

About

Sample cloud-first application with 10 microservices showcasing Kubernetes, Istio, and gRPC.

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 25.1%
  • Go 25.0%
  • HTML 23.5%
  • C# 6.5%
  • Shell 5.3%
  • CSS 3.7%
  • Other 10.9%