Skip to content

mehdihadeli/go-food-delivery-microservices

Repository files navigation

πŸ• Go Food Delivery Microservices

GitHub Workflow Status Go Version Commitizen friendly

Gitpod

Go Food Delivery Microservices is a fictional food delivery microservices, built with Golang and different software architecture and technologies like Microservices Architecture, Vertical Slice Architecture , CQRS Pattern, Domain Driven Design (DDD), Event Sourcing, Event Driven Architecture and Dependency Injection. For communication between independent services, We use asynchronous messaging using RabbitMQ, and sometimes we use synchronous communication for real-time communications with using REST and gRPC calls.

You can use this project as a template to build your Backend project in the Go language on top of this project.

πŸ’‘ This application is not business-oriented and my focus is mostly on the technical part, I just want to implement a sample using different technologies, software architecture design, principles, and all the things we need for creating a microservices app.

πŸš€ This Application is in progress and I will add new features and technologies over time.

For your simplest Golang projects, you can use my go-vertical-slice-template project:

For more advanced projects, with two microservices and modular monolith architecture, check the C# version:

Features

  • βœ… Using Vertical Slice Architecture as a high-level architecture
  • βœ… Using Event Driven Architecture on top of RabbitMQ Message Broker with a custom Event Bus
  • βœ… Using Data-Centric Architecture based on CRUD in Catalogs Read Service
  • βœ… Using Event Sourcing in Audit Based services like Orders Service
  • βœ… Using CQRS Pattern and Mediator Patternon top of Go-MediatR library
  • βœ… Using Dependency Injection and Inversion of Controlon top of uber-go/fx library
  • βœ… Using RESTFul api with Echo framework and using swagger with swaggo/swag library
  • βœ… Using gRpc for internal service communication
  • βœ… Using go-playground/validator and go-ozzo/ozzo-validation for validating input data in the REST and gRpc
  • βœ… Using Postgres and EventStoreDB to write databases with fully supported transactions(ACID)
  • βœ… Using MongoDB and Elastic Search for read databases (NOSQL)
  • βœ… Using OpenTelemetry for collection Distributed Tracing using Jaeger and Zipkin
  • βœ… Using OpenTelemetry for collection Metrics with using Prometheus and Grafana
  • βœ… Using Unit Test for testing small units with mocking dependent classes and using Mockery for mocking dependencies
  • βœ… Using End2End Test and Integration Test for testing features with all of their real dependencies using docker containers (cleanup tests) and testcontainers-go library
  • βœ… Using Zap and structured logging
  • βœ… Using Viper for configuration management
  • βœ… Using docker and docker-compose for deployment
  • 🚧 Using Domain Driven Design in some of the services like Catalogs Write Service and Orders Service
  • 🚧 Using Helm and Kubernetes for deployment
  • 🚧 Using Outbox Pattern for all microservices for Guaranteed Delivery or At-least-once Delivery
  • 🚧 Using Inbox Pattern for handling Idempotency in reciver side and Exactly-once Delivery

Technologies - Libraries

  • βœ”οΈ labstack/echo - High performance, minimalist Go web framework
  • βœ”οΈ uber-go/zap - Blazing fast, structured, leveled logging in Go.
  • βœ”οΈ emperror/errors - Drop-in replacement for the standard library errors package and github.com/pkg/errors
  • βœ”οΈ open-telemetry/opentelemetry-go - OpenTelemetry Go API and SDK
  • βœ”οΈ open-telemetry/opentelemetry-go-contrib - Collection of extensions for OpenTelemetry-Go.
  • βœ”οΈ rabbitmq/amqp091-go - An AMQP 0-9-1 Go client maintained by the RabbitMQ team. Originally by @streadway: streadway/amqp
  • βœ”οΈ stretchr/testify - A toolkit with common assertions and mocks that plays nicely with the standard library
  • βœ”οΈ mehdihadeli/go-mediatr - Mediator pattern implementation in Golang and helpful in creating CQRS based applications.
  • βœ”οΈ grpc-ecosystem/go-grpc-middleware - Golang gRPC Middlewares: interceptor chaining, auth, logging, retries and more
  • βœ”οΈ grpc/grpc-go - The Go language implementation of gRPC. HTTP/2 based RPC
  • βœ”οΈ elastic/go-elasticsearch - The official Go client for Elasticsearch
  • βœ”οΈ avast/retry-go - Simple golang library for retry mechanism
  • βœ”οΈ ahmetb/go-linq - .NET LINQ capabilities in Go
  • βœ”οΈ EventStore/EventStore-Client-Go - Go Client for Event Store version 20 and above.
  • βœ”οΈ olivere/elastic/v7 - Deprecated: Use the official Elasticsearch client for Go at
  • βœ”οΈ swaggo/swag - Automatically generate RESTful API documentation with Swagger 2.0 for Go.
  • βœ”οΈ prometheus/client_golang - Prometheus instrumentation library for Go applications
  • βœ”οΈ mongodb/mongo-go-driver - The Go driver for MongoDB
  • βœ”οΈ go-redis/redis - Type-safe Redis client for Golang
  • βœ”οΈ go-gorm/gorm - The fantastic ORM library for Golang, aims to be developer friendly
  • βœ”οΈ go-playground/validator - Go Struct and Field validation, including Cross Field, Cross Struct, Map, Slice and Array diving
  • βœ”οΈ go-ozzo/ozzo-validation - Validate data of different types include, provide a rich set of validation rules right out of box.
  • βœ”οΈ spf13/viper - Go configuration with fangs
  • βœ”οΈ caarlos0/env - A simple and zero-dependencies library to parse environment variables into structs.
  • βœ”οΈ joho/godotenv - A Go port of Ruby's dotenv library (Loads environment variables from .env files)
  • βœ”οΈ mcuadros/go-defaults - Go structures with default values using tags
  • βœ”οΈ uber-go/fx - A dependency injection based application framework for Go.
  • βœ”οΈ testcontainers/testcontainers-go - Testcontainers for Go is a Go package that makes it simple to create and clean up container-based dependencies for automated integration/smoke tests.

Project Layout and Structure

Each microservices are based on these project structures:

System Architecture

Application Structure

In this project I used vertical slice architecture or Restructuring to a Vertical Slice Architecture also I used feature folder structure in this project.

  • We treat each request as a distinct use case or slice, encapsulating and grouping all concerns from front-end to back.
  • When We add or change a feature in an application in n-tire architecture, we are typically touching many different "layers" in an application. we are changing the user interface, adding fields to models, modifying validation, and so on. Instead of coupling across a layer, we couple vertically along a slice and each change affects only one slice.
  • We Minimize coupling between slices, and maximize coupling in a slice.
  • With this approach, each of our vertical slices can decide for itself how to best fulfill the request. New features only add code, we're not changing shared code and worrying about side effects. For implementing vertical slice architecture using cqrs pattern is a good match.

Also here I used CQRS to decompose my features into very small parts that make our application:

  • maximize performance, scalability, and simplicity.
  • adding new features to this mechanism is very easy without any breaking changes in another part of our codes. New features only add code, we're not changing shared code and worrying about side effects.
  • easy to maintain and any changes only affect one command or query (or a slice) and avoid any breaking changes on other parts
  • it gives us a better separation of concerns and cross-cutting concerns (with the help of MediatR behavior pipelines) in our code instead of a big service class for doing a lot of things.

By using CQRS, our code will be more aligned with SOLID principles, especially with:

  • Single Responsibility rule - because logic responsible for a given operation is enclosed in its own type.
  • Open-Closed rule - because to add a new operation you don’t need to edit any of the existing types, instead you need to add a new file with a new type representing that operation.

Here instead of some Technical Splitting for example a folder or layer for our services, controllers, and data models which increase dependencies between our technical splitting and also jump between layers or folders, We cut each business functionality into some vertical slices, and inner each of these slices we have Technical Folders Structure specific to that feature (command, handlers, infrastructure, repository, controllers, data models, ...).

Usually, when we work on a given functionality we need some technical things for example:

  • API endpoint (Controller)
  • Request Input (Dto)
  • Request Output (Dto)
  • Some class to handle Request, For example, Command and Command Handler or Query and Query Handler
  • Data Model

Now we could have all of these things beside each other and it decrease jumping and dependencies between some layers or folders.

Keeping such a split works great with CQRS. It segregates our operations and slices the application code vertically instead of horizontally. In Our CQRS pattern each command/query handler is a separate slice. This is where you can reduce coupling between layers. Each handler can be a separated code unit, even copy/pasted. Thanks to that, we can tune down the specific method to not follow general conventions (e.g. use custom SQL query or even different storage). In a traditional layered architecture, when we change the core generic mechanism in one layer, it can impact all methods.

High Level Structure

TODO

Formatting

In this app, I use Conventional Commit and for enforcing its rule I use conventional-changelog/commitlint and typicode/husky with a pre-commit hook. To read more about its setup see commitlint docs and this article and this article.

For applying golangci-lint in IDE level I use intellij-plugin-golangci-lint plugin.

For formatting, I used mvdan/gofumpt, goimports-reviser, golines and golangci-lint in my GoLand and for each package, there is a guide for how to set it up in your IDE, for example. here is the configuration for goimports-reviser.

Also, you can control this formatting with husky automatically before any commit by installing husky in your dev environment:

  1. Install Tools:
make install-tools
  1. Install NPM:
npm init
  1. Install CommitLint:
npm install --save-dev @commitlint/config-conventional @commitlint/cli
  1. Create the commitlint.config.js file with this content:
module.exports = { extends: '@commitlint/config-conventional']};
  1. Install Husky:
npm install husky --save-dev
  1. Add prepare command for installing and activating husky hooks that we will add in the next steps, in the package.json file:
npm pkg set scripts.prepare="husky install"
  1. Create the Husky folder:
mkdir .husky
  1. Adding hooks for linting and formatting before commit:
npx husky add .husky/pre-commit "make format && git add -A ."
npx husky add .husky/pre-commit "make lint && git add -A ."
  1. Adding CommitLint to the husky before commit:
npx husky add .husky/commit-msg 'npx --no -- commitlint --edit ${1}'
  1. Activate and installing all husky hooks with this command:
npm run prepare

Live Reloading In Development

For live reloading in dev mode I use air library. for a guide about using these tools, you can read this article.

For running each microservice in live reload mode, inner each service folder type the bellow command after installing air:

air

Contribution

The application is in development status. You are feel free to submit a pull request or create the issue according to Contribution Guid.

License

The project is under MIT license.

References