A practical store sample, 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. For communication between independent services, We use asynchronous messaging with using RabbitMQ, and sometimes we use synchronous communication for real-time communications with using REST and gRPC calls.
π‘ This application is not business oriented and my focus is mostly on technical part, I just want to implement a sample with using different technologies, software architecture design, principles and all the thing we need for creating a microservices app.
π This Application is in-progress
and I will add new features and thecnologies over time.
- β
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 Centeric Architecture
based on CRUD in Catalogs Read Service - β
Using
Event Sourcing
inAudit Based
services like Orders Service - β
Using
CQRS Pattern
andMediator Pattern
on top of Go-MediatR library - β Using RESTFul api with Echo framework and using swagger with swaggo/swag library
- β Using gRpc for internal service communication
- β Using go-playground/validator for validating input data in the REST and gRpc
- β
Using
Postgres
andEventStoreDB
for write databases as relational DB andMongoDB
andElasric Search
for read databases - β
Using
OpenTelemetry
for collectionMetrics
andDistributed Tracing
- β
Using docker and
docker-compose
for deployment
- π§ Add
Dependecny Injections
with using uber-go/fx - π§ Using
Domain Driven Design
in some of services like Catalogs Write Service - π§ Using
Helm
andKubernetes
for deployment - π§ Add
Identity Management
andOAuth
- βοΈ
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
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 adding or changing 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
, andmaximize 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 for decompose my features to very small parts that makes our application:
- maximize performance, scalability and simplicity.
- adding new feature to this mechanism is very easy without any breaking change in other 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 on one command or query (or a slice) and avoid any breaking changes on other parts
- it gives us better separation of concerns and cross cutting concern (with help of MediatR behavior pipelines) in our code instead of a big service class for doing a lot of things.
With 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 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 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.