Nacos: Accessing Nacos as Registry in Spring Cloud Project

Preface Through the previous article: Introduction to Nacos After a brief understanding of the development process and current situation of Nacos, we begin the first step of Nacos water test: using Nacos as registry Last weekend (7.6) Nacos released version V1.1.0, which supports grayscale configuration, address server mode, configuration file ...

Posted by super_man on Tue, 20 Aug 2019 23:45:38 -0700

Dubbo for the First Experience of RPC Framework

Dubbo for the First Experience of RPC Framework Version description: dubbo 2.7.2 Dubbo is an RPC framework of Ali Open Source, which was mentioned recently when learning micro services. So we have an introductory experience of Dubbo. Here we main ...

Posted by dbomb101 on Tue, 20 Aug 2019 21:10:53 -0700

Giraph Source Analysis - Statistics of the Number of Vertices Participating in each SuperStep

Author | Bai Song Objective: In scientific research, it is necessary to analyze the number of vertices involved in each iteration to further optimize the system. For example, in the last line of SSP's compute() method, the current vertex voteToHalt is changed to an InActive state. So after each iteration, all vertices are in the InActive state. ...

Posted by sampledformat on Mon, 19 Aug 2019 20:53:20 -0700

Simple use and configuration of saltstack

1. Preface saltstack is divided into master and slave, which can be used for cluster management 2. Environment Serr2:172.25.69.2 (main) Serr3:172.25.69.3 (from) Serr4:172.25.69.4 (from) 3. Environmental settings Main: Install saltstack-mas ...

Posted by ashbai on Sun, 18 Aug 2019 20:30:53 -0700

Summary of Work Questions for Weeks 2019-08-18

baiyan apache correlation Using apache to configure multiport bindings to implement a local microservice architecture Configuration file httpd.conf: Listen 80 Listen 9399 DocumentRoot "C:/Users/jiangbaiyan/PhpstormProjects/NicoRobin/public" <Directory "C:/Users/jiangbaiyan/PhpstormProjects/NicoRobin/public"> Options Indexes FollowSym ...

Posted by galvin on Sun, 18 Aug 2019 19:09:30 -0700

Tomcat Source Code Analysis--Tomcat Startup Process

When it comes to starting Tomcat, we all know that we need to run the tomcat/bin/startup.sh script every time, and what exactly is the content of the script? Let's have a look. Start script startup.sh script #!/bin/sh os400=false case "`uname`" in OS400*) os400=true;; esac # resolve links - $0 may be a softlink PRG="$0" while [ ...

Posted by Fritz on Fri, 16 Aug 2019 02:45:17 -0700

Spring Boot 2.x Fast Integrated Message Middleware Kafka

Welcome to pay attention to personal Wechat Public Number: Xiaoha learns Java, pushes dry articles in the Java field every day, and pays attention to free and no routine with 100G mass learning and interview resources yo!! Personal website: https:// ...

Posted by aynsoft on Thu, 15 Aug 2019 23:27:20 -0700

Automation operation and maintenance tool saltstack - Grains, pillar, job cache, jinja template details and nginx, keepalived service configuration

1. Configuration Management (continued) Now, on the basis of the previous blog post, I will continue to talk about configuration management. To supplement the knowledge of sls files: The core of Salt state system is SLS, or SaLt State file. _SLS r ...

Posted by Beavis2084 on Thu, 15 Aug 2019 05:02:16 -0700

Tomcat Source Code Analysis--Tomcat Class Loader

Before looking at tomcat class loading, let's review or consolidate java's default class loader. The landlord used to be ignorant about class loading, so he took this opportunity to review it well. The landlord opened the second edition of the magic book "Deep Understanding of Java Virtual Machine", p227, about the class loader. See: ...

Posted by Mark Nordstrom on Thu, 15 Aug 2019 00:58:09 -0700

SpringBoot uses CXF to integrate Web Services

1. Write in front Web Service is familiar and unfamiliar to me. I haven't seen him for nearly six or seven years. I don't have much specific introduction. What I want to know about Baidu Encyclopedia is very detailed. The reason why we suddenly studied Web Service is that we received a requirement to make an adaptation layer for XX project. The ...

Posted by rahnel on Wed, 14 Aug 2019 06:30:35 -0700