[Elasticsearch] learning notes - getting to know Elasticsearch
Video directions 👉
Station B dark horse micro service Super recommended!!
Getting to know Elasticsearch
1. Understand ES
Elastic search is a very powerful open source search engine with many powerful functions, which can help us quickly find the content we need from massive dataElastic search combines kibana, Logstash and Beats, that is ...
Posted by balsdorf on Wed, 17 Nov 2021 12:23:48 +0100
Spring Cloud Sleuth 2.0 overview instructions
Sleuth, Zipkin and Brave
Let's talk about the relationship among spring cloud, sleuth, Zipkin and brake.
First of all, you may have more contact with Spring Cloud Sleuth, which is the Spring framework family (why not call it the Spring Cloud framework family here? In fact, this is because Sleuth, like other components in the Spring framework, ...
Posted by bhavin12300 on Tue, 09 Nov 2021 21:09:27 +0100
Use of Spirng Cloud Config Server
In Spring Cloud, a framework of Spring Cloud Config was developed to build a configuration center, and configuration servers and multiple configuration warehouse implementations were provided.
Introducing maven dependencies
<dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud- ...
Posted by Jaquio on Mon, 08 Nov 2021 18:10:35 +0100
The first day of learning the Silicon Valley version of spring cloud
Miscellaneous knowledge
Parent project development steps
Module writing steps
Business class preparation
The writing steps are as follows
Dependency management knowledge
Maven uses the dependencyManagement element to provide a way to manage dependent version numbers. Usually you will see the dependency management element in the p ...
Posted by covert215 on Thu, 04 Nov 2021 00:13:16 +0100
Actual combat of Spring Cloud microservice -- Construction of nacos Service Registry (with source code)
As one of the basic functions of microservices, the registry plays an important role. Microservices divide individual services into services under different modules, and what about communication calls for services of different modules? This requires service registration and discovery. This article will use Alibaba's open source project nacos to ...
Posted by FirePhoenix on Wed, 03 Nov 2021 07:03:36 +0100
Learn about Semaphore and thread pool
1, First, understand what Semaphore and thread pool do respectively?
Semaphore is a concurrency tool class, which is used to control the number of threads that can be concurrent at the same time. It internally maintains a set of virtual licenses, and specifies the number of licenses through the constructor. Each time a thread performs an opera ...
Posted by dreamlove on Tue, 02 Nov 2021 06:13:28 +0100
Java learning record 06Spring Cloud Gateway gateway
Gateway gateway
The core of the Spring Cloud Gateway component is a series of filters that can forward (route) requests sent by clients to corresponding services.
Supplementary notes & benefits
Gateway replaces a solution from Netflix ZuulHide the IP / port information of the serviceProvide a unified API route management method (url mana ...
Posted by faizanno1 on Sun, 31 Oct 2021 21:38:27 +0100
SpringCloud microservice practice -- building an enterprise development framework: using Nacos distributed configuration center
With the development of business and the upgrading of micro service architecture, the number of services and the configuration of programs are increasing day by day (various micro services, various server addresses and various parameters). The traditional configuration file method and database method can not meet the requirements of developers ...
Posted by mtimdog on Sun, 31 Oct 2021 02:56:28 +0100
Seata study notes
Installation steps:
Download from the official website: Official website
Database preparation
Deployment tutorial Simply put, you need to build a seata database in the database, which stores some data that needs to be rolled back at that time sql script You also need to create an undo table in the database you need to roll back to roll b ...
Posted by Paingiver on Tue, 26 Oct 2021 12:03:06 +0200
NACOS dynamic configuration
1, Introduction to Nacos configuration center
Nacos provides two services, one is the Naming Service for service registration and discovery, and the other is the Config Service for configuration center and dynamic configuration. Their bottom layers are supported by the core module. The outer layer provides OpenAPI for clients, and provides Use ...
Posted by dkim777 on Mon, 25 Oct 2021 10:46:48 +0200