DEV Community

Cover image for Spring Boot: Everything you need to know, and what nobody told you. Part III
Weder Sousa
Weder Sousa

Posted on

Spring Boot: Everything you need to know, and what nobody told you. Part III

21. But complex processes that require several integrated systems exchanging information, how to understand all this?
22. Reliability
23. Gateway
24. Microservices and their Classic Dilemmas
25. Data Management
26. Transactional Messaging
27. But what is in most of these Design Patterns mentioned above?
28. Observability with Spring Boot


21. But complex processes that require several integrated systems exchanging information, how to understand all this?

As can be seen in the image below, we have two types of architectures (monolithic and Micro Services)

Image description

Yes, here we have a programming paradigm using microservices, which in the end is nothing less than several SpringBoot projects communicating with each other.

Image description

Yes, and we can see what that same architecture would look like inside Service Registry, using an API Gateway:

Image description

On my github there is a project microServiceDemo that details how you create a microservice architecture using Eureka Server how to configure it, it's a simple project, but it helps you to understand parts of how to configure a maven project with modules, in addition to spring-cloud(Hoxton.SR12) settings, but at the date of this article it is already in V2022 .0.0, due to the version of Spring boot(2.3.3.RELEASE), but at the date of this article it is already at V3.0.1.

Another point to be analyzed in this project, because in the Order Project, we work with the @FeignClientopenfeign, which helps you communicate between microservices.

Another point is that in the Delivery project, we use the WebCLient to do the communication.

22. Reliability

Concept of circuit-breaker

23. Gateway

And in the Gateway project, to map calls to microservices.

<dependency>
     <groupId>org.springframework.cloud</groupId>
     <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
</dependency>
Enter fullscreen mode Exit fullscreen mode

24. Microservices and their Classic Dilemmas

I always like to quote Alberto Souza, on his github to a project pilares-design-codigo that I always use as a source to evolve, as a developer, and two of his examples he cites:

"Any indirection increases the difficulty of understanding the application as a whole, it needs to deserve to exist. That is, it needs to help distribute the intrinsic load throughout the system."

"You need to understand what you are using and always look at the negative side of each decision."

Here comes a very relevant point when we are working with microservices, the site https://microservices.io/, already starts with The Patterns, this means that when we read this word someone A lot of anger has already passed and created something to solve (That's what we do, we solve problems using programming).

Plus what's in the quotes above, here yes all procedures within microservices have to be analyzed the negative points, because here the trace, and the solutions are proportional to their directions, and the more there are, the more difficult it will be to understand the whole, more problems will arise during development, and beware of people who will defend their point of view and are good at rhetoric, but it is inversely proportional when they have to code, save this sentence below:

"Speak and easy show me the code"

And remember, if you give direction to something you believe in, then consider your point of view as done, because they will all be based on your ideas and actions and will help you to finalize the intended use case, because there is only one objective to deliver customer value, and here I mention one more pillar.

"The top priority is to work according to the use case. Beauty and beauty do not give bread or plenty. "

Back to Microservices Patterns, here I will detail 2(two) Data Management and Transactional Messaging, because in most cases some solutions will go through messaging (RabbitMQ, ActiveMQ, SQS, KAFKA).

25. Data Management

Database per Service

Shared database

API Composition

Saga

CQRS

Domain event

Event sourcing

26. Transactional Messaging

Transactional outbox

Transaction log tailing

Polling publisher


27. But what is in most of these Design Patterns mentioned above?

In the patterns mentioned above, we have some that use asynchronous processes, that is, they expect a producer(publish) and subscribe(consumer), which in this case can be another application or just a *listener(listener) *, which when receiving the command triggers closing the process, in addition to also like everything we do there may be failures and must have their retry or DQL queues (dead-letter queues), such as cloud services as mentioned above the AWS SQS.

There's no way around it, you'll have to know how this process works, I first uploaded a RabbitMQ with Docker (this one will help your growth a lot), then later I had to deal with Kafka and your style of working with messaging.

I'll be honest about the work but it looks very nice and good after it's done.

When I read the book Effective Kafka: A Hands-On Guide, by the Author Emil Koutanov, man it gave a show in this book, it seems that everything becomes simpler and more understandable.

Image description

Effective Kafka: A Hands-On Guide to Building Robust and Scalable Event-Driven Applications with Code Examples in Java

I'll put two images where it shows how a publish/subscribe(Producer/Consumer) works:

Image description

And how the CQRS architecture, defined in the Data Management standards, works

Image description


28. Observability with Spring Boot

Due to the great possibility of using microservices, the Galerinha do SRE (Site Reliability Engineering), which currently plays a fundamental role in tracking and control, as applications can be affected at any time with a large amount of access, a point of microservices stop and affect everything.

Spring has an observability team that has been working on adding observability support to Spring applications for some time now and each release is evolving.

But what is observability?

In our understanding, it is "how well you can understand the internals of your system by examining its outputs". We believe that the interconnection between metrics, logging and distributed tracing gives you the ability to reason about the state of your system to debug exceptions and latency in your applications. You can watch more about what we think about observability in this episode of Enlightning with Jonatan Ivanov.

Now it's time to add observability-related features!

In my github there is a project SpringBootActuatorPrometheus that I created for studies only with this question:

Metrics

For Micrometer with Prometheus metrics,
Tracking

For Context Propagation Tracing with Micrometer Tracing, we need to choose a tracer bridge (tracer is a library used to handle the lifecycle of a span).

logs

Since we have Micrometer Trace in the classpath, the logs are automatically correlated (that is, they contain a unique trace identifier). Now we need to upload the logs. For this demo, we sent them to Grafana Loki. We can achieve this by adding the com.github.loki4j:loki-logback-appender dependency.

I advise you to read 3 books on the subject:


01. Site Reliability Engineering: How Google Runs Production Systems (English Edition)

Image description

Site Reliability Engineering: How Google Runs Production Systems (English Edition)


02. The Site Reliability Workbook: Practical Ways to Implement SRE

Image description

The Site Reliability Workbook: Practical Ways to Implement SRE


03. Establishing SRE Foundations A Step-by-Step Guide to Introducing Site Reliability Engineering in Software Delivery Organizations

Image description

https://www.amazon.com/Establishing-Foundations-Step-Step-Organizations/dp/0137424604

This article is divided into 4 parts:

Spring Boot: Everything you need to know, and what nobody told you. #Part01

Spring Boot: Everything you need to know, and what nobody told you. #Part02

Spring Boot: Everything you need to know, and what nobody told you. #Part03

Spring Boot: Everything you need to know, and what nobody told you.#Part04

Top comments (0)